Created
November 7, 2012 20:54
-
-
Save omz/4034379 to your computer and use it in GitHub Desktop.
Top Apps
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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