We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc3f765 commit a81cbd8Copy full SHA for a81cbd8
1 file changed
examples/scrape_example.py
@@ -4,12 +4,12 @@
4
5
from brightdata import bdclient
6
7
-client = bdclient(auto_create_zones=False) #can also be taken from .env file
+client = bdclient(api_token="your-api-token") #can also be taken from .env file
8
9
URL = (["https://www.amazon.com/dp/B079QHML21",
10
"https://www.ebay.com/itm/365771796300",
11
"https://www.walmart.com/ip/Apple-MacBook-Air-13-3-inch-Laptop-Space-Gray-M1-Chip-8GB-RAM-256GB-storage/609040889"])
12
13
results = client.scrape(url=URL, max_workers=5)
14
15
-client.download_content(results)
+client.download_content(results)
0 commit comments