Skip to content

Commit 0282d79

Browse files
committed
Updated documentation and version number
1 parent c4fe422 commit 0282d79

3 files changed

Lines changed: 10 additions & 2 deletions

File tree

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff 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

7378
Changelog
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.

amazon/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
"""Amazon Product Advertising API wrapper for Python"""
22

3-
__version__ = '3.1.0'
3+
__version__ = '3.2.0'
44
__author__ = 'Sergio Abad'

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setuptools.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',

0 commit comments

Comments
 (0)