From 7de3ab061f9d1867b1395bfa820e29c19e5cba3a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20Rodr=C3=ADguez=20Guimer=C3=A1ns?= Date: Thu, 7 Jan 2016 12:58:27 +0100 Subject: [PATCH 1/3] Implement missing methods for the GetLowestPricedOffersForASIN and GetLowestPricedOffersForSKU Product APIs. --- mws/mws.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/mws/mws.py b/mws/mws.py index 517e038..7c48cdd 100644 --- a/mws/mws.py +++ b/mws/mws.py @@ -510,6 +510,22 @@ def get_lowest_offer_listings_for_asin(self, marketplaceid, asins, condition="An data.update(self.enumerate_param('ASINList.ASIN.', asins)) return self.make_request(data) + def get_lowest_priced_offers_for_sku(self, marketplaceid, sku, condition="New", excludeme="False"): + data = dict(Action='GetLowestPricedOffersForSKU', + MarketplaceId=marketplaceid, + SellerSKU=sku, + ItemCondition=condition, + ExcludeMe=excludeme) + return self.make_request(data) + + def get_lowest_priced_offers_for_asin(self, marketplaceid, asin, condition="New", excludeme="False"): + data = dict(Action='GetLowestPricedOffersForASIN', + MarketplaceId=marketplaceid, + ASIN=asin, + ItemCondition=condition, + ExcludeMe=excludeme) + return self.make_request(data) + def get_product_categories_for_sku(self, marketplaceid, sku): data = dict(Action='GetProductCategoriesForSKU', MarketplaceId=marketplaceid, From 56d05e9867ddc38a667fc66110389223d6027b21 Mon Sep 17 00:00:00 2001 From: Adam Feldman Date: Fri, 13 May 2016 13:15:18 -0500 Subject: [PATCH 2/3] Fix link to docs --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3f67060..2a43419 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ This is still an ongoing project. If you would like to contribute, see below :). Its based on the [amazon-mws-python](http://code.google.com/p/amazon-mws-python). -Checkout the documentation [here](https://python-amazon-mws.readthedocs.org/latest/). +Checkout the documentation [here](https://python-amazon-mws.readthedocs.io/en/latest/). You can read the official Amazon MWS documentation [here](https://developer.amazonservices.com/). # To-Do From c0aa9e81264888eee1317920cc91aef162434988 Mon Sep 17 00:00:00 2001 From: Paulo Alvarado Date: Tue, 8 May 2018 08:31:11 -0400 Subject: [PATCH 3/3] Added notice to README --- README.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 2a43419..1a7769d 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,7 @@ # ** DISCLAIMER ** -This API is in constant development. Do not rely on it too much until its in stable release. -All except for the last two APIs ( InboundShipment and OutboundShipment ) are complete. -Help towards completing this last two APIs would be greatly appreciated. -I will mark this as stable 1.0 once all tests have been completed. +THIS API IS NO LONGER MAINTAINED. + +PLEASE HEAD TO https://github.com/python-amazon-mws/python-amazon-mws # Python Amazon MWS