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
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: