We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a92479a commit e7a5ea2Copy full SHA for e7a5ea2
1 file changed
README.md
@@ -48,9 +48,19 @@ Use URL insted of ASIN:
48
49
product = amazon.get_product('https://www.amazon.com/dp/B01N5IB20Q')
50
51
+Get product variations:
52
+
53
+ product = amazon.get_variations('B01N5IB20Q')
54
+ print(product[0].title)
55
56
+Search product:
57
58
+ product = amazon.search_products(item_count=25, keywords='speaker')
59
+ print(product[14].url)
60
61
Get the ASIN from a URL:
62
- from amazon.paapi import get_asin
63
+ from amazon.tools import get_asin
64
asin = get_asin('https://www.amazon.com/dp/B01N5IB20Q')
65
66
Changelog
0 commit comments