We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5e5dd1d commit 1c898c3Copy full SHA for 1c898c3
1 file changed
README.md
@@ -33,18 +33,18 @@ Basic usage:
33
34
from amazon.paapi import AmazonAPI
35
amazon = AmazonAPI(KEY, SECRET, TAG, COUNTRY)
36
- product = amazon.get_product('B01N5IB20Q')
+ product = amazon.get_products('B01N5IB20Q')
37
print(product.title)
38
39
Get multiple product information:
40
41
- product = amazon.get_product('B01N5IB20Q,B01F9G43WU')
+ product = amazon.get_products('B01N5IB20Q,B01F9G43WU')
42
print(product[0].images.large)
43
print(product[1].prices.price.value)
44
45
Use URL insted of ASIN:
46
47
- product = amazon.get_product('https://www.amazon.com/dp/B01N5IB20Q')
+ product = amazon.get_products('https://www.amazon.com/dp/B01N5IB20Q')
48
49
Get the ASIN from a URL:
50
0 commit comments