The Selling Partner API Python SDK enables you to easily connect to and work with Amazon SP-API.
Project description
Python SDK for Selling Partner API
Click on the image to watch the video.
The Selling Partner API SDK for Python enables you to easily connect your Python application to Amazon's REST-based Selling Partner API.
Getting started
Credentials
Before you can use the SDK, you need to be registered as a Selling Partner API developer. If you haven't done that yet, please follow the instructions in the SP-API Registration Overview. You also need to register your application to get valid credentials to call SP-API. If you haven't done that yet, please follow the instructions in Registering your Application. If you are already registered successfully, you can find instructions on how to view your credentials in Viewing your Application Information and Credentials.
Minimum requirements
To run the SDK you need Python version 3.9 or higher.
Install the SDK
- Find the latest version number here.
- Add the dependency to your project
Using pip:
pip install amzn-sp-api
Add to your project requirements.txt
Add the following line to the requirements.txt file if needed:
amzn-sp-api >= "1.0.0"
Use the SDK
In order to call one of the APIs included in the Selling Partner API, you need to:
- Configure credentials (Note: Use your individual credentials for
clientId,clientSecretandrefreshToken). You can also configure the region and the authorization scope at this level. - Initialize the SPAPI Client using the configuration created in the previous step
- Create an instance for a specific API using the API client created
- Call an API operation
For example, refer to the following sample code for connecting to Sellers API.
from spapi import SellersApi, SPAPIConfig, SPAPIClient, ApiException
from spapi.models.sellers_v1 import GetMarketplaceParticipationsResponse
if __name__ == "__main__":
# Credentials configuration
config = SPAPIConfig(
client_id="",
client_secret="",
refresh_token="",
region="NA",
scope = None
)
# Create the API Client with configuration
client = SPAPIClient(config)
sellers_api = SellersApi(client.api_client)
response = None
try:
response = sellers_api.get_marketplace_participations()
except ApiException as e:
print(f"API Exception occurred: {str(e)}")
if response is not None:
print("Sellers API Response:")
get_marketplace_participations_response = GetMarketplaceParticipationsResponse(response.payload)
for marketplaceParticipation in get_marketplace_participations_response.payload:
print(marketplaceParticipation.marketplace.id)
Note: Code can be found under python/sample-app folder
Giving Feedback
We need your help in making this SDK great. Please participate in the community and contribute to this effort by submitting issues, participating in discussion forums and submitting pull requests through the following channels:
Submit issues - this is the preferred channel to interact with our team Articulate your feature request or upvote existing ones on our Issues page
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file amzn_sp_api-1.7.0.tar.gz.
File metadata
- Download URL: amzn_sp_api-1.7.0.tar.gz
- Upload date:
- Size: 956.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.25
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a90523ff8e909d3e437ecb8bb0ee57f1ee11817bb4da503a180fdc3ad09c51fb
|
|
| MD5 |
448e6a06cca69cc0b58ee9efa4c8f10d
|
|
| BLAKE2b-256 |
bc5597f67fdc696f6c732bcc3dad5d1f0301c2451f2725fbfc166f0f5c5e1efb
|
File details
Details for the file amzn_sp_api-1.7.0-py3-none-any.whl.
File metadata
- Download URL: amzn_sp_api-1.7.0-py3-none-any.whl
- Upload date:
- Size: 3.2 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.25
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
df0db578b820c57af8feb6b5d1c88c2d56f0ec39fb88826c4fa96f46dc2c76fd
|
|
| MD5 |
c134f62612ac189620518d60f6ee533b
|
|
| BLAKE2b-256 |
2f38df1c88cf0fe7aa947a74371db7770a7e5f850c59027d44b9311c4540de9e
|