Skip to content

Instantly share code, notes, and snippets.

@omz
Created November 7, 2012 20:54
Show Gist options
  • Save omz/4034379 to your computer and use it in GitHub Desktop.
Save omz/4034379 to your computer and use it in GitHub Desktop.
Top Apps
# Shows a list of the 10 top paid apps on the App Store.
print 'Loading...'
import feedparser
import console
print 'Fetching Feed...'
feed = feedparser.parse('http://itunes.apple.com/us/rss/toppaidapplications/limit=10/xml')
entries = feed['entries']
i = 1
console.clear()
print 'Top Paid Apps (US)\n'
for entry in entries:
print str(i) + '. ' + entry['title']
i += 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment