Metadata-Version: 2.1
Name: amazon-scrape
Version: 0.0.5
Summary: Scrape Amazon product data such as Product Name, Product Images, Rating Count, and Price.
Home-page: https://finbarrs.eu
Author: Finbarrs Oketunji
Author-email: f@finbarrs.eu
License: MIT
Project-URL: Bug Tracker, https://github.com/0xnu/amazonproducts/issues
Project-URL: Changes, https://github.com/0xnu/amazonproducts/blob/main/CHANGELOG.md
Project-URL: Documentation, https://github.com/0xnu/amazonproducts/blob/main/README.md
Project-URL: Source Code, https://github.com/0xnu/amazonproducts
Description: Amazon Products Scraper
        =======================
        
        .. image:: https://badge.fury.io/py/amazon-scrape.svg
            :target: https://badge.fury.io/py/amazon-scrape
            :alt: amazon-scrape Python Package Version
        
        Scrape Amazon product data such as Product Name, Product Images, Rating Count, and Price.
        
        Requirements
        ------------
        
        Python 2.7 and later.
        
        
        Setup
        -----
        
        You can install this package by using the pip tool and installing:
        
        .. code-block:: bash
        
        	$ pip install amazon-scrape
        
        Or:
        
        .. code-block:: bash
        
        	$ easy_install amazon-scrape
        
        
        Scraper Help
        ------------
        
        Execute this command `amazon_scraper --help` in the terminal.
        
        .. code-block:: text
        
            usage: amazon_scraper [-h] [--locale LOCALE] [--keywords KEYWORDS] [--url URL] [--proxy_api_key PROXY_API_KEY] [--pages PAGES]
        
            optional arguments:
            -h, --help            show this help message and exit
            --locale LOCALE       Amazon locale (e.g., "com", "co.uk", "de", etc.)
            --keywords KEYWORDS   Search keywords
            --url URL             Amazon URL
            --proxy_api_key PROXY_API_KEY
                                    API Key
            --pages PAGES         Number of pages to scrape
        
        
        Usage Example
        -------------
        
        .. code-block:: python
        
            ## Specify locale, keywords, API key, and number of pages to scrape
            amazon_scraper --locale com --keywords "laptop" --proxy_api_key "your_api_key" --pages 10
        
            ## Specify only keywords and API key (will default to "co.uk" locale and 20 pages):
            amazon_scraper --keywords "iphone" --proxy_api_key "your_api_key"
        
            ## Specify a direct Amazon URL and API key (will default to "co.uk" locale and 20 pages):
            amazon_scraper --url "https://www.amazon.de/s?k=iphone&crid=1OHYY6U6OGCK5&sprefix=ipho%2Caps%2C335&ref=nb_sb_noss_2" --proxy_api_key "your_api_key"
        
            ## Specify locale and Amazon URL (will default to 20 pages):
            amazon_scraper --locale de --url "https://www.amazon.de/s?k=iphone&crid=1OHYY6U6OGCK5&sprefix=ipho%2Caps%2C335&ref=nb_sb_noss_2" --proxy_api_key "your_api_key"
        
        
        Create Scraper API Account
        --------------------------
        
        Sign up for a Scraper API `user account`_.
        
        .. _user account: https://www.scraperapi.com/?fp_ref=finbarrs11
        
        
        License
        -------
        
        This project is licensed under the `MIT License`_.  
        
        .. _MIT License: https://github.com/0xnu/amazonproducts/blob/main/LICENSE
        
        
        Copyright
        ---------
        
        Copyright |copy| 2023 `Finbarrs Oketunji`_. All Rights Reserved.
        
        .. |copy| unicode:: 0xA9 .. copyright sign
        .. _Finbarrs Oketunji: https://finbarrs.eu
        
Keywords: amazon,products,ecommerce,price,reviews,ratings
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*
Description-Content-Type: text/x-rst
