@@ -14,7 +14,8 @@ Features
1414
1515* Object oriented interface for simple usage.
1616* Get information about a product through its ASIN or URL.
17- * Get multiple products at once without the 10 products limitation from Amazon.
17+ * Get item variations or search for products on Amazon.
18+ * Get multiple results at once without the 10 items limitation from Amazon.
1819* Configurable throttling to avoid requests exceptions.
1920* Support for all available countries.
2021* Reorganized product information [ structure] ( https://github.com/sergioteula/python-amazon-paapi/blob/master/PRODUCT.md ) for simple use.
@@ -47,13 +48,33 @@ Use URL insted of ASIN:
4748
4849 product = amazon.get_product('https://www.amazon.com/dp/B01N5IB20Q')
4950
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+
5061Get the ASIN from a URL:
5162
52- from amazon.paapi import get_asin
63+ from amazon.tools import get_asin
5364 asin = get_asin('https://www.amazon.com/dp/B01N5IB20Q')
5465
5566Changelog
5667-------------
68+ Version 3.0.0
69+ - Added search_products and get_variations methods.
70+ - Removed Amazon API requests limit for all methods.
71+ - Created AmazonException for better exception handling.
72+ - Added asynchronous requests compatibility.
73+ - Added parent_ASIN to product instance.
74+ - Cleaned code for more consistent style.
75+ - Updated docstrings for all methods.
76+ - Updated project structure.
77+
5778 Version 2.1.1
5879 - Added get_product for single requests.
5980
@@ -85,3 +106,7 @@ Changelog
85106
86107 Version 0.1.0
87108 -First release.
109+
110+ License
111+ -------------
112+ Copyright © 2020 Sergio Abad. See [ license] ( https://github.com/sergioteula/python-amazon-paapi/blob/master/LICENSE ) for details.
0 commit comments