sergio_teula
sergio_teula

Reputation: 101

How to use Amazon Product Advertising API 5 with Python?

Amazon has updated its API to version 5 recently, so previous versions will stop working on January 2020. If you're still using the previous API version, it better to upgrade soon to avoid future disasters. But how can we use this new API version?

Upvotes: 4

Views: 7106

Answers (2)

Tuval Rotem
Tuval Rotem

Reputation: 101

You can use the SDK published by amazon: https://webservices.amazon.com/paapi5/documentation/with-sdk.html#python

install with pip:

pip install amightygirl.paapi5-python-sdk

https://pypi.org/project/amightygirl.paapi5-python-sdk/

Upvotes: 5

sergio_teula
sergio_teula

Reputation: 101

I've made a Python module that allows using the new Amazon Product Advertising API 5 in a very easy way. You can install it with PIP and start working with it inmediatelly. It's still under development, so you can expect changes and new functionalities in the future.

https://github.com/sergioteula/python-amazon-paapi5

Upvotes: 4

Related Questions