alefiori82 / amazon-paapi5

Amazon Product Advertising API 5.0 wrapper for Python
MIT License
26 stars 4 forks source link

Error in the README.md #19

Open glebret opened 5 months ago

glebret commented 5 months ago

The Example : products = amazon.search_items(keywords='harry potter') print(product['data'][0].image_large) print(product['data'][1].prices.price)

Doesn't work

This works : products = amazon.search_items(keywords='harry potter') print(products['data'][0].image_large) print(products['data'][1].prices.price)