Skip to content

Commit b319a77

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

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,14 @@ python setup.py install --user
3030
Execute this command `amazon_scraper --help` in the terminal.
3131

3232
```text
33-
usage: amazon_scraper [-h] [--locale LOCALE] [--keywords KEYWORDS] [--url URL] [--proxy_api_key PROXY_API_KEY] [--pages PAGES] [-r]
33+
usage: amazon_scraper [-h] [--locale LOCALE] [--keywords KEYWORDS] [--url URL] [--api-key PROXY_API_KEY] [--pages PAGES] [-r]
3434
3535
optional arguments:
3636
-h, --help show this help message and exit
3737
--locale LOCALE Amazon locale (e.g., "com", "co.uk", "de", etc.)
3838
--keywords KEYWORDS Search keywords
3939
--url URL Amazon URL
40-
--proxy_api_key Scraper API Key
40+
--api-key Scraper API Key
4141
--pages PAGES Number of pages to scrape
4242
-r, --review Scrape reviews
4343
```
@@ -46,19 +46,19 @@ optional arguments:
4646

4747
```python
4848
# Specify locale, keywords, API key, and number of pages to scrape:
49-
amazon_scraper --locale com --keywords "laptop" --proxy_api_key "your_api_key" --pages 10
49+
amazon_scraper --locale com --keywords "laptop" --api-key "your_api_key" --pages 10
5050

5151
## Specify only keywords and API key (will default to "co.uk" locale and 20 pages):
52-
amazon_scraper --keywords "iphone" --proxy_api_key "your_api_key"
52+
amazon_scraper --keywords "iphone" --api-key "your_api_key"
5353

5454
## Specify a direct Amazon URL and API key (will default to "co.uk" locale and 20 pages):
55-
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"
55+
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"
5656

5757
## Specify locale and Amazon URL (will default to 20 pages):
58-
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"
58+
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"
5959

6060
## Specify review to scrape product(s) reviews:
61-
amazon_scraper --keywords "watches" --proxy_api_key "your_api_key --review
61+
amazon_scraper --keywords "watches" --api-key "your_api_key --review
6262
```
6363

6464
## Create Scraper API Account

0 commit comments

Comments
 (0)