Created
July 5, 2013 16:54
-
-
Save yinyanghu/5935827 to your computer and use it in GitHub Desktop.
Google Reader OPML File Analyser, opml2snow in snownews for linux
This file contains hidden or 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
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