diff --git a/README.md b/README.md index 3f67060..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 @@ -15,7 +14,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 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,