Jungle Scout Python Client
This is a Python client with both synchronous and asynchronous interfaces for interacting with the Jungle Scout API.
Important
See the Jungle Scout API reference for more information about the available endpoints and their parameters. Information about the Jungle Scout API is also available in a Postman collection.
Quickstart
Install the Jungle Scout Python client.
pip install junglescout-client
Import the client and create an instance.
from junglescout import ClientSync
from junglescout.models.parameters import (
Marketplace,
)
API_KEY_NAME = "API_KEY_NAME"
API_KEY = "API_KEY"
client = ClientSync(api_key_name=API_KEY_NAME, api_key=API_KEY, marketplace=Marketplace.US)
Make a request to the API.
keywords_by_asin = client.keywords_by_asin(
asin=["B0CP9Z56SW", "B0154ASID6"],
)
Documentation
The Getting Started section provides a quick overview of how to install and use the Jungle Scout Python client. See the Examples section for more code examples of common use cases. The API Reference section provides detailed information about the available endpoints and their parameters.