Skip to content

Instantly share code, notes, and snippets.

@pagenoare
Created December 20, 2010 21:05
Show Gist options
  • Save pagenoare/748983 to your computer and use it in GitHub Desktop.
Save pagenoare/748983 to your computer and use it in GitHub Desktop.
now-playing in py
import feedparser
user = 'pagenoare'
d = feedparser.parse('http://ws.audioscrobbler.com/1.0/user/%s/recenttracks.rss' % user)
title = d.entries[0].title.encode('utf-8')
print title
lolipop $ python np.py
Led Zeppelin – The Battle of Evermore
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment