lionheart / bottlenose

A Python wrapper for the Amazon Product Advertising API.
Apache License 2.0
577 stars 112 forks source link

Adding code templates for users #25

Closed stephnr closed 7 years ago

stephnr commented 10 years ago

This is a continuation from a previous post. #24

The goal is to create sample templates that users can download for accessing the Amazon API.

In addition, I believe we could streamline the process of data retrieval by creating methods that return json formatted data (or XML formatted). <-- perhaps have that as an option.

Examples:

import bottlenose

response = amazon.ItemLookup(ItemId="1449372422", ResponseGroup="Images")

images = bottlenose.parseImages(response)

for image in images:
    print image.URL
stephnr commented 10 years ago

Any progress on this feature?