Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Python library for Amazon MWS

Is there a Python library for interacting with Amazon MWS? I found Ruby, Perl, PHP, C#, and Java versions, but not Python.

like image 287
hoju Avatar asked Oct 05 '10 08:10

hoju


People also ask

Is Amazon MWS deprecated?

Amazon Marketplace Web Service (MWS) will no longer be available after December 31, 2023. In 2020 we announced the launch of Selling Partner API (SP-API), a modernized suite of REST APIs using standards that today's developers expect, which includes all the functionality available in Amazon MWS plus many new APIs.

Is Amazon MWS API free?

Note: Amazon MWS is available free of charge to anyone who has a non-individual Amazon seller account. Eligible accounts include: Amazon Webstore accounts, Checkout-by-Amazon accounts, and Amazon Product Ads accounts.

What is Amazon MWS Scratchpad?

Amazon MWS Scratchpad is an application that enables you to easily submit query requests using any Amazon MWS API section. You can indicate the API section, the operation, and any required and optional parameters from the Amazon MWS Scratchpad user interface.

How do I access my MWS API?

Go to the User Permissions page in Seller Central and log into your Amazon selling account as the primary user. Under Amazon MWS Developer Access Keys click the Visit Developer Credentials button. The Developer Central page appears. Apply for access here.


3 Answers

didn't find one so developed my own basic version: http://code.google.com/p/amazon-mws-python/

like image 196
hoju Avatar answered Sep 30 '22 02:09

hoju


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.

like image 32
Sudhir Jonathan Avatar answered Sep 30 '22 02:09

Sudhir Jonathan


More up-to-date and feature complete version is here. As I understand it's based on Richard's original version.

like image 20
Roman Bataev Avatar answered Sep 30 '22 04:09

Roman Bataev