-
Notifications
You must be signed in to change notification settings - Fork 160
Open
Description
I'm running this code in my PyCharm
`import amazonscraper
results = amazonscraper.search("coffee", max_product_nb=2)
for result in results:
print("{}".format(result.title))
print(" - ASIN : {}".format(result.asin))
print(" - {} out of 5 stars, {} customer reviews".format(result.rating, result.review_nb))
print(" - {}".format(result.url))
print(" - Image : {}".format(result.img))
print()
print("Number of results : %d" % (len(results)))`
and the output comes like this
`C:\Users\bordi\PycharmProjects\amazon\venv\Scripts\python.exe C:/Users/bordi/PycharmProjects/amazon/Scrapper.py
Number of results : 0
Process finished with exit code 0`
Please help me with this problem
Metadata
Metadata
Assignees
Labels
No labels