Metadata-Version: 2.1
Name: pymws
Version: 0.1.8
Summary: Python client for Amazon Marketplace Web Services (MWS)
Home-page: https://github.com/fulfilio/pymws
Author: Fulfil.IO Inc.
Author-email: help@fulfil.io
License: MIT license
Keywords: pymws
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 2.7
Requires-Python: >=2.7
Requires-Dist: Click (>=7.0)
Requires-Dist: lxml
Requires-Dist: requests
Requires-Dist: future
Requires-Dist: six
Requires-Dist: unicodecsv

=================
Python MWS Client
=================


.. image:: https://img.shields.io/pypi/v/pymws.svg
        :target: https://pypi.python.org/pypi/pymws

.. image:: https://github.com/fulfilio/pymws/workflows/CI%20(pip)/badge.svg
        :target: https://github.com/fulfilio/pymws/actions

.. image:: https://readthedocs.org/projects/pymws/badge/?version=latest
        :target: https://pymws.readthedocs.io/en/latest/?badge=latest
        :alt: Documentation Status

.. image:: https://pyup.io/repos/github/fulfilio/pymws/shield.svg
     :target: https://pyup.io/repos/github/fulfilio/pymws/
     :alt: Updates



Python client for Amazon Marketplace Web Services (MWS)


* Free software: MIT license
* Documentation: https://pymws.readthedocs.io.


Installation
------------

.. code-block::

    pip install pymws

Usage
-----

Import the package

.. code-block:: python

    from pymws import MWS

Create a client instance

.. code-block:: python

  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.

.. code-block:: python

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


=======
History
=======

0.1.0 (2020-08-08)
------------------

* First release on PyPI.


