Skip to content
This repository has been archived by the owner on Dec 21, 2023. It is now read-only.
/ pymws Public archive

Python client for Amazon MWS to interact with seller central.

License

Notifications You must be signed in to change notification settings

fulfilio/pymws

Repository files navigation

Python MWS Client

image

image

Documentation Status

Updates

Python client for Amazon Marketplace Web Services (MWS)

Installation

pip install pymws

Usage

Import the package

from pymws import MWS

Create a client instance

client = MWS(
    marketplace="US", merchant_id="1234",
    access_key_id="key", secret_key="secret",
    auth_token="token"
)

Once you have a client with valid credentials, you can now call operations.

start_date = datetime(2020, 1, 20, 10, 30)
client.orders.list_orders(CreatedAfter=start_date)