Python library for Amazon MWS
Is there a Python library for inter开发者_运维知识库acting with Amazon MWS? I found Ruby, Perl, PHP, C#, and Java versions, but not Python.
didn't find one so developed my own basic version: http://code.google.com/p/amazon-mws-python/
Try boto... I don't think they have MWS yet, but they might add it soon.
UPDATE: Sorry, I mean try making a request to the boto team. Boto seems the be the fullest python library for AWS right now, so it makes sense for them to add it.
More up-to-date and feature complete version is here. As I understand it's based on Richard's original version.
A few can be installed through pip
. As of today :
$ pip search mws|grep Amazon
fio_amazon_mws - Amazon MWS Integration
python-amazon-mws - A python interface for Amazon MWS
openlabs_amazon_mws - Amazon MWS Integration
amazon-mws - A python interface for Amazon MWS
Looks like amazon-mws
is hoju's, and python-amazon-mws
the one quoted by Roman.
The two others are tryton
modules, not sure how/if they can be used standalone. openlabs_amazon_mws
is actually trytond-amazon-mws
, and fio_amazon_mws
seems to be a fork. They both require python-amazon-mws
anyway.
For python, there's mws library.
pip install mws
Currently these many features are available in MWS python library,
- List item Feeds
- List item Inventory
- List item InboundShipments
- List item Reports
- List item Orders
- List item Products
- List item Recommendations
- List item Sellers
- List item Finances
精彩评论