Metadata-Version: 2.4
Name: shopify-catalog-exporter
Version: 0.1.0
Summary: Scrape any Shopify store's sitemap and export products to a Shopify import-ready CSV.
Author-email: Muhammad Zohaib <alizuhaib828@gmail.com>
License: MIT License
        
        Copyright (c) 2026 Muhammad Zohaib
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
Project-URL: Homepage, https://github.com/MuhammedZohaib/shopify-catalog-exporter
Project-URL: Repository, https://github.com/MuhammedZohaib/shopify-catalog-exporter
Keywords: shopify,csv,scraper,sitemap,ecommerce
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: License :: OSI Approved :: MIT License
Classifier: Intended Audience :: Developers
Classifier: Topic :: Internet :: WWW/HTTP :: Indexing/Search
Classifier: Environment :: Console
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Provides-Extra: requests
Requires-Dist: requests>=2.28; extra == "requests"
Dynamic: license-file

# shopify-catalog-exporter

Scrape any public Shopify store via its sitemap and export all products to a
Shopify Admin-compatible import CSV — no API key required.

## Install

```bash
pip install shopify-catalog-exporter
# or for faster HTTP:
pip install "shopify-catalog-exporter[requests]"
```

## Usage

```bash
shopify-catalog-export someshop.myshopify.com
shopify-catalog-export someshop.myshopify.com --output products.csv --verbose
shopify-catalog-export someshop.myshopify.com --max-products 50 --delay-ms 200
```

## Options

| Flag | Default | Description |
|---|---|---|
| `--output` | `products.csv` | Output CSV path |
| `--template` | auto | Custom CSV template path |
| `--timeout` | `10` | HTTP timeout in seconds |
| `--retries` | `2` | Retries on failure |
| `--delay-ms` | `150` | Delay between requests (ms) |
| `--max-products` | none | Cap number of products |
| `--verbose` | off | Print progress details |
