Skip to content

Commit a4d8755

Browse files
committed
misc(feat): readme
Signed-off-by: 0xnu <f@finbarrs.eu>
1 parent b319a77 commit a4d8755

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

LONG_DESCRIPTION.rst

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -36,14 +36,14 @@ Execute this command `amazon_scraper --help` in the terminal.
3636

3737
.. code-block:: text
3838
39-
usage: amazon_scraper [-h] [--locale LOCALE] [--keywords KEYWORDS] [--url URL] [--proxy_api_key PROXY_API_KEY] [--pages PAGES] [-r]
39+
usage: amazon_scraper [-h] [--locale LOCALE] [--keywords KEYWORDS] [--url URL] [--api-key PROXY_API_KEY] [--pages PAGES] [-r]
4040
4141
optional arguments:
4242
-h, --help show this help message and exit
4343
--locale LOCALE Amazon locale (e.g., "com", "co.uk", "de", etc.)
4444
--keywords KEYWORDS Search keywords
4545
--url URL Amazon URL
46-
--proxy_api_key Scraper API Key
46+
--api-key Scraper API Key
4747
--pages PAGES Number of pages to scrape
4848
-r, --review Scrape reviews
4949
@@ -54,19 +54,19 @@ Usage Example
5454
.. code-block:: python
5555
5656
# Specify locale, keywords, API key, and number of pages to scrape:
57-
amazon_scraper --locale com --keywords "laptop" --proxy_api_key "your_api_key" --pages 10
57+
amazon_scraper --locale com --keywords "laptop" --api-key "your_api_key" --pages 10
5858
5959
## Specify only keywords and API key (will default to "co.uk" locale and 20 pages):
60-
amazon_scraper --keywords "iphone" --proxy_api_key "your_api_key"
60+
amazon_scraper --keywords "iphone" --api-key "your_api_key"
6161
6262
## Specify a direct Amazon URL and API key (will default to "co.uk" locale and 20 pages):
63-
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"
63+
amazon_scraper --url "https://www.amazon.de/s?k=iphone&crid=1OHYY6U6OGCK5&sprefix=ipho%2Caps%2C335&ref=nb_sb_noss_2" --api-key "your_api_key"
6464
6565
## Specify locale and Amazon URL (will default to 20 pages):
66-
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"
66+
amazon_scraper --locale de --url "https://www.amazon.de/s?k=iphone&crid=1OHYY6U6OGCK5&sprefix=ipho%2Caps%2C335&ref=nb_sb_noss_2" --api-key "your_api_key"
6767
6868
## Specify review to scrape product(s) reviews:
69-
amazon_scraper --keywords "watches" --proxy_api_key "your_api_key --review
69+
amazon_scraper --keywords "watches" --api-key "your_api_key" --review
7070
7171
7272
Create Scraper API Account

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.0.8
1+
1.0.9

amazon_scraper/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
VERSION = "1.0.8"
1+
VERSION = "1.0.9"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from setuptools import setup, find_packages
55

66
NAME = "amazon_scrape"
7-
VERSION = "1.0.8"
7+
VERSION = "1.0.9"
88
REQUIRES = ["beautifulsoup4", "requests"]
99

1010
# read the contents of your README file

0 commit comments

Comments
 (0)