wrds-download

TUI/CLI tool for browsing and downloading WRDS data
Log | Files | Refs | README

commit b5e24ecc5c20f8f1561b695cbad912b10b84a651
parent a67c81dbd8a2bdf6b4caf94cdbc8689d771629ac
Author: Erik Loualiche <[email protected]>
Date:   Fri, 20 Feb 2026 14:27:47 -0600

Merge pull request #4 from LouLouLibs/chore/update-module-path

Update module path to louloulibs/wrds-download
Diffstat:
MREADME.md | 6+++---
Mcmd/download.go | 4++--
Mcmd/tui.go | 4++--
Mgo.mod | 2+-
Minternal/export/export.go | 2+-
Minternal/tui/app.go | 6+++---
Mmain.go | 2+-
7 files changed, 13 insertions(+), 13 deletions(-)

diff --git a/README.md b/README.md @@ -16,7 +16,7 @@ A terminal tool for browsing and downloading data from the [WRDS](https://wrds-w ### Pre-built binaries (recommended) -Download the latest release from the [Releases page](https://github.com/eloualiche/wrds-download/releases): +Download the latest release from the [Releases page](https://github.com/louloulibs/wrds-download/releases): | Platform | Binary | |---|---| @@ -27,7 +27,7 @@ Download the latest release from the [Releases page](https://github.com/eloualic ```sh # macOS example -curl -L https://github.com/eloualiche/wrds-download/releases/latest/download/wrds-dl-darwin-arm64 \ +curl -L https://github.com/louloulibs/wrds-download/releases/latest/download/wrds-dl-darwin-arm64 \ -o /usr/local/bin/wrds-dl chmod +x /usr/local/bin/wrds-dl ``` @@ -37,7 +37,7 @@ chmod +x /usr/local/bin/wrds-dl Requires Go 1.25+. No CGo or C compiler needed. ```sh -git clone https://github.com/eloualiche/wrds-download +git clone https://github.com/louloulibs/wrds-download cd wrds-download CGO_ENABLED=0 go build -ldflags="-s -w" -o wrds-dl . mv wrds-dl /usr/local/bin/ diff --git a/cmd/download.go b/cmd/download.go @@ -5,8 +5,8 @@ import ( "os" "strings" - "github.com/eloualiche/wrds-download/internal/config" - "github.com/eloualiche/wrds-download/internal/export" + "github.com/louloulibs/wrds-download/internal/config" + "github.com/louloulibs/wrds-download/internal/export" "github.com/spf13/cobra" ) diff --git a/cmd/tui.go b/cmd/tui.go @@ -5,8 +5,8 @@ import ( "os" tea "github.com/charmbracelet/bubbletea" - "github.com/eloualiche/wrds-download/internal/config" - "github.com/eloualiche/wrds-download/internal/tui" + "github.com/louloulibs/wrds-download/internal/config" + "github.com/louloulibs/wrds-download/internal/tui" "github.com/spf13/cobra" ) diff --git a/go.mod b/go.mod @@ -1,4 +1,4 @@ -module github.com/eloualiche/wrds-download +module github.com/louloulibs/wrds-download go 1.25.0 diff --git a/internal/export/export.go b/internal/export/export.go @@ -15,7 +15,7 @@ import ( "github.com/parquet-go/parquet-go" "github.com/parquet-go/parquet-go/compress/zstd" - "github.com/eloualiche/wrds-download/internal/db" + "github.com/louloulibs/wrds-download/internal/db" ) // Options controls the export behaviour. diff --git a/internal/tui/app.go b/internal/tui/app.go @@ -12,9 +12,9 @@ import ( "github.com/charmbracelet/bubbles/textinput" tea "github.com/charmbracelet/bubbletea" "github.com/charmbracelet/lipgloss" - "github.com/eloualiche/wrds-download/internal/config" - "github.com/eloualiche/wrds-download/internal/db" - "github.com/eloualiche/wrds-download/internal/export" + "github.com/louloulibs/wrds-download/internal/config" + "github.com/louloulibs/wrds-download/internal/db" + "github.com/louloulibs/wrds-download/internal/export" ) // pane identifies which panel is focused. diff --git a/main.go b/main.go @@ -1,6 +1,6 @@ package main -import "github.com/eloualiche/wrds-download/cmd" +import "github.com/louloulibs/wrds-download/cmd" func main() { cmd.Execute()