File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ Features
1515* Object oriented interface for simple usage.
1616* Get information about a product through its ASIN or URL.
1717* Get item variations or search for products on Amazon.
18+ * Get browse nodes information.
1819* Get multiple results at once without the 10 items limitation from Amazon.
1920* Configurable throttling to avoid requests exceptions.
2021* Support for [ all available countries] ( https://github.com/sergioteula/python-amazon-paapi/blob/master/amazon/paapi.py#L31 ) .
@@ -58,6 +59,10 @@ Usage guide
5859 product = amazon.search_products(item_count=25, keywords='speaker')
5960 print(product[14].url)
6061
62+ ** Get browse node information:**
63+
64+ node = amazon.get_browsenodes(browse_nodes=browsenodes_list)
65+
6166** Get the ASIN from a URL:**
6267
6368 from amazon.tools import get_asin
@@ -72,6 +77,9 @@ Throttling value must be `greater than 0` or `False` to disable it. This value t
7277
7378Changelog
7479-------------
80+ Version 3.2.0
81+ - Added new method for getting browse nodes information.
82+
7583 Version 3.1.0
7684 - Added paapi5-python-sdk and removed amightygirl.paapi5-python-sdk.
7785 - Improved throttling and now possible to disable it.
Original file line number Diff line number Diff line change 11"""Amazon Product Advertising API wrapper for Python"""
22
3- __version__ = '3.1 .0'
3+ __version__ = '3.2 .0'
44__author__ = 'Sergio Abad'
Original file line number Diff line number Diff line change 55
66setuptools .setup (
77 name = 'python-amazon-paapi' ,
8- version = '3.1 .0' ,
8+ version = '3.2 .0' ,
99 author = 'Sergio Abad' ,
1010 author_email = 'sergio.abad@bytelix.com' ,
1111 description = 'Amazon Product Advertising API 5.0 wrapper for Python' ,
You can’t perform that action at this time.
0 commit comments