Background: I have been using Python 2.7.13 with Boto 2.48.0 to get information from the Amazon API about my Amazon store inventory and orders, for the past year.
Issue: When using the Boto 2.48 documentation page (http://boto.cloudhackers.com/en/latest/ref/mws.html) The message upgrade to Boto version 3 appears. When I check the documentation on boto3 (https://boto3.readthedocs.io/en/latest/) I see a lot of functionality for AWS, but only see a few commands for the Amazon market place, and it does not include the commands I usually use.
An example something I currently do in Boto2, and would would need to do in Boto3, is using mws.get_matching_product_for_id() to find the Model and ASIN of a specific UPC.
Question: Has MWS support been deprecated in version 3? Does it have a new name? Is there some other new way to access this information in Boto3?
Thank you