{"id":15406814,"url":"https://github.com/dannyben/gondl","last_synced_at":"2025-04-18T03:14:01.706Z","repository":{"id":21710892,"uuid":"25032396","full_name":"DannyBen/gondl","owner":"DannyBen","description":"Command line console for Quandl","archived":false,"fork":false,"pushed_at":"2015-12-05T10:59:35.000Z","size":23,"stargazers_count":6,"open_issues_count":0,"forks_count":2,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-29T06:21:32.406Z","etag":null,"topics":["cli","go","quandl","quandl-api"],"latest_commit_sha":null,"homepage":null,"language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/DannyBen.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2014-10-10T11:19:13.000Z","updated_at":"2023-07-03T18:03:39.000Z","dependencies_parsed_at":"2022-08-17T18:40:46.287Z","dependency_job_id":null,"html_url":"https://github.com/DannyBen/gondl","commit_stats":null,"previous_names":[],"tags_count":7,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DannyBen%2Fgondl","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DannyBen%2Fgondl/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DannyBen%2Fgondl/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DannyBen%2Fgondl/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/DannyBen","download_url":"https://codeload.github.com/DannyBen/gondl/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":249418987,"owners_count":21268540,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cli","go","quandl","quandl-api"],"created_at":"2024-10-01T16:25:30.831Z","updated_at":"2025-04-18T03:14:01.673Z","avatar_url":"https://github.com/DannyBen.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"Gondl - Command line console for Quandl\n=======================================\n\n\u003c!-- [![Build Status](https://travis-ci.org/DannyBen/gondl.svg?branch=master)](https://travis-ci.org/DannyBen/gondl) --\u003e\n\nGondl provides command line access to the \n[Quandl API](https://www.quandl.com/help/api).\n\nIt was developed in Go.\n\n## Features\n\n* Get data for a symbol\n* Get a list of symbols in a data source\n* Search the entire Quandl database\n* Shows/saves JSON, CSV or XML\n* Built in local file cache\n\n\n## Download Windows Binary\n\n[Download the latest build of gondl.exe](https://github.com/DannyBen/gondl/releases)\n\n\n## Build from Source (All Platforms)\n\nTo build from source on Windows, Linux or Mac - \n[Install Go](https://golang.org/doc/install), then:\n\n\t$ go get github.com/DannyBen/gondl\n\t$ cd $GOPATH/src/github.com/DannyBen/gondl\n\t$ go build\n\n## Examples\n\nGet data for Apple stock:\n\n\tgondl get WIKI/AAPL\n\nGet 3 rows of data as JSON, and use an API Key:\n\n\tgondl get WIKI/AAPL -r3 -fjson -kYOUR_KEY\n\nSave data as XML to a file:\n\n\tgondl get WIKI/CSCO -fxml -oOutFile.txt --rows 10\n\nGet a list of symbols in a source:\n\n\tgondl list WIKI --page 1 --per_page 10\n\nGet search results:\n\n\tgondl search \"crude oil\" --page 1 --per_page 10\n\n\n## Usage:\n\n    gondl --help | -h  \n    gondl --version | -v  \n    gondl --config [options]  \n    gondl --make-config  \n    gondl get \u003csymbol\u003e [options]  \n    gondl list \u003csource\u003e [options]  \n    gondl search \u003cquery\u003e [options]  \n\n## Standalone Options:  \n\n    -h, --help                Show this help.  \n    -v, --version             Show version details.  \n        --config              Show config files location and info.  \n        --make-config         Create a default gondl.json file.  \n\n## Global Options:  \n\n    -k, --apikey \u003ckey\u003e        Send this api key with the request  \n    -f, --format \u003cformat\u003e     Output as csv, json or xml (default: csv)  \n    -o, --out \u003cfile\u003e          Save to file  \n    -u, --url                 Show the request URL  \n    -d, --debug               Show all registered arguments  \n    -D, --cachedir \u003cdir\u003e      Set cache directory (default: ./cache)  \n    -C, --cache \u003cmins\u003e        Set cache life to \u003cmins\u003e minutes  \n                              0 to disable (default: 240)  \n\n## Get Options:  \n\n    -c, --column \u003cn\u003e          Request data column \u003cn\u003e only  \n    -r, --rows \u003cn\u003e            Request \u003cn\u003e rows  \n    -t, --trim_start \u003cdate\u003e   Start data at \u003cdate\u003e, format yyyy-mm-dd  \n    -T, --trim_end \u003cdate\u003e     End data at \u003cdate\u003e, format yyyy-mm-dd  \n    -s, --sort_order \u003corder\u003e  Set sort order to asc or desc  \n    -x, --exclude_headers     Exclude CSV headers  \n        --exclude_data        Get meta data only (JSON/XML format)  \n        --collapse \u003cf\u003e        Set frequency to one of: none | daily |  \n                              weekly | monthly | quarterly | annual   \n        --transformation \u003ct\u003e  Enable data calculation. Set to one of:  \n                              diff | rdiff | cumul | normalize  \n\n## Search/List Options:  \n\n    -p, --page \u003cn\u003e            Start at page \u003cn\u003e (default: 1)  \n    -P, --per_page \u003cn\u003e        Show \u003cn\u003e results per page (default: 300)  \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdannyben%2Fgondl","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdannyben%2Fgondl","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdannyben%2Fgondl/lists"}