Skip to content

Instantly share code, notes, and snippets.

@huitseeker
Created January 28, 2011 20:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save huitseeker/800899 to your computer and use it in GitHub Desktop.
Save huitseeker/800899 to your computer and use it in GitHub Desktop.
Amazon AWS search for books less than 150 pages in the operating systems category
import ecs
ecs.setLicenseKey('FILLLICENSEKEYHERE')
ecs.setSecretAccessKey('FILLSACCESSKEYHERE')
ecs.setLocale('us')
# O.S. books : node 3756
ecssearch = ecs.ItemSearch('', SearchIndex='Books',
ResponseGroup='Medium',BrowseNode='3756')
for i in range (1,100):
try:
if (int(ecssearch[i].NumberOfPages) < 150):
print ecssearch[i].Title," - ",ecssearch[i].Author
except AttributeError:
print ""
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment