Skip to content

Instantly share code, notes, and snippets.

@yinyanghu
Created July 5, 2013 16:54
Show Gist options
  • Save yinyanghu/5935827 to your computer and use it in GitHub Desktop.
Save yinyanghu/5935827 to your computer and use it in GitHub Desktop.
Google Reader OPML File Analyser, opml2snow in snownews for linux
import listparser as lp
d = lp.parse('subscriptions.xml')
n = len(d.feeds)
print("Total Feeds =", n)
for i in range(0, n):
print(d.feeds[i].url)
#print(d.feeds[100].url)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment