Forget about proxies, servers, and IP addresses. Just get the data you need.
Google and eCommerce HTML Scraper Send a request with up to 1,000 URLs and receive the raw, unblocked HTML files.
- Create a new account at: https://app.scrapezone.com
- Copy your scrape username and password.
- Start getting the data you need.
from scrapezone_client import ScrapezoneClient
from decouple import config
username = config('SCRAPEZONE_USERNAME')
password = config('SCRAPEZONE_PASSWORD')
scrapezoneClient = ScrapezoneClient(username, password)
results = scrapezoneClient.scrape(
{'scraper_name': 'amazon_product_display', 'query': [
'https://amazon.com/dp/B01LSUQSB0',
'https://amazon.com/dp/B084K5HNCB'
]})
print(results)
Full documentation can be found Here.