{"id":20533200,"url":"https://github.com/kishaningithub/shopify-csv-download","last_synced_at":"2025-04-14T06:36:41.244Z","repository":{"id":52433111,"uuid":"155029729","full_name":"kishaningithub/shopify-csv-download","owner":"kishaningithub","description":"Download a shopify site in a csv format that the shopify importer understands","archived":false,"fork":false,"pushed_at":"2024-01-22T17:30:48.000Z","size":74,"stargazers_count":58,"open_issues_count":1,"forks_count":10,"subscribers_count":6,"default_branch":"main","last_synced_at":"2025-03-27T20:14:22.089Z","etag":null,"topics":["go","golang","hacktoberfest"],"latest_commit_sha":null,"homepage":"","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/kishaningithub.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-10-28T02:55:29.000Z","updated_at":"2025-03-16T15:01:12.000Z","dependencies_parsed_at":"2024-06-20T04:19:37.748Z","dependency_job_id":"16688269-f439-4a6d-9ced-534bbbeb205c","html_url":"https://github.com/kishaningithub/shopify-csv-download","commit_stats":null,"previous_names":[],"tags_count":18,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kishaningithub%2Fshopify-csv-download","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kishaningithub%2Fshopify-csv-download/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kishaningithub%2Fshopify-csv-download/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kishaningithub%2Fshopify-csv-download/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kishaningithub","download_url":"https://codeload.github.com/kishaningithub/shopify-csv-download/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248834252,"owners_count":21168994,"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":["go","golang","hacktoberfest"],"created_at":"2024-11-16T00:19:22.014Z","updated_at":"2025-04-14T06:36:41.172Z","avatar_url":"https://github.com/kishaningithub.png","language":"Go","funding_links":["https://www.paypal.me/kishansh/15"],"categories":[],"sub_categories":[],"readme":"# shopify csv download\n\n[![Build Status](https://github.com/kishaningithub/shopify-csv-download/actions/workflows/build.yml/badge.svg)](https://github.com/kishaningithub/shopify-csv-download/actions/workflows/build.yml)\n[![Go Doc](https://godoc.org/github.com/kishaningithub/shopify-csv-download?status.svg)](https://godoc.org/github.com/kishaningithub/shopify-csv-download)\n[![Go Report Card](https://goreportcard.com/badge/github.com/kishaningithub/shopify-csv-download)](https://goreportcard.com/report/github.com/kishaningithub/shopify-csv-download)\n[![standard-readme compliant](https://img.shields.io/badge/standard--readme-OK-green.svg?style=flat-square)](https://github.com/RichardLitt/standard-readme)\n[![Latest release](https://img.shields.io/github/release/kishaningithub/shopify-csv-download.svg)](https://github.com/kishaningithub/shopify-csv-download/releases)\n[![Buy me a lunch](https://img.shields.io/badge/🍱-Buy%20me%20a%20lunch-blue.svg)](https://www.paypal.me/kishansh/15)\n\nDownload a shopify site in a csv format that the [shopify importer understands](https://help.shopify.com/en/manual/products/import-export/using-csv#product-csv-file-format)\n\n## Table of Contents\n\n- [shopify csv download](#shopify-csv-download)\n  - [Table of Contents](#table-of-contents)\n  - [Install](#install)\n    - [Using Homebrew](#using-homebrew)\n    - [Using Binary](#using-binary)\n  - [Usage](#usage)\n    - [CLI](#CLI)\n    - [Library](#Library)\n  - [Maintainers](#maintainers)\n  - [Contribute](#contribute)\n  - [License](#license)\n\n## Install\n\n### Using Homebrew\n\n```bash\nbrew install kishaningithub/tap/shopify-csv-download\n```\n\n### Using Binary\n\n```bash\n# All unix environments with curl\ncurl -sfL https://raw.githubusercontent.com/kishaningithub/shopify-csv-download/master/install.sh | sudo sh -s -- -b /usr/local/bin\n\n# In alpine linux (as it does not come with curl by default)\nwget -O - -q https://raw.githubusercontent.com/kishaningithub/shopify-csv-download/master/install.sh | sudo sh -s -- -b /usr/local/bin\n```\n\n## Usage\n\n### CLI\n\nRetrieving all publicly exposed products\n\n```bash\nshopify-csv-download https://shopify-site.com \u003e shopify-site-products.csv\n```\n\n### Library\n\n```go\npackage main\n\nimport (\n\t\"log\"\n\t\"net/url\"\n\t\"os\"\n\n\t\"github.com/kishaningithub/shopify-csv-download/pkg/products\"\n)\n\nfunc main() {\n\tsiteUrl, err := url.Parse(\"https://shopify-site.com\")\n\tif err != nil {\n\t\tlog.Println(err)\n\t\treturn\n\t}\n\terr = products.SaveAsImportableCSV(*siteUrl, os.Stdout)\n\tif err != nil {\n\t\tlog.Println(err)\n\t\treturn\n\t}\n}\n```\n\n## Maintainers\n\n[@kishaningithub](https://github.com/kishaningithub)\n\n## Contribute\n\nPRs accepted.\n\nSmall note: If editing the README, please conform to the [standard-readme](https://github.com/RichardLitt/standard-readme) specification.\n\n## License\n\nMIT © 2021 Kishan B\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkishaningithub%2Fshopify-csv-download","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkishaningithub%2Fshopify-csv-download","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkishaningithub%2Fshopify-csv-download/lists"}