Great script to test feedparser
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 |
#!/usr/bin/python # # from http://www.pythonforbeginners.com/feedparser/using-feedparser-in-python # installed feedparser with `pip`, after installing pip with apt-get # import feedparser import time from subprocess import check_output # ------ # uptime # ------ uptime = check_output(['uptime']) print "\n" print '-------------------------------------------------------------' print uptime.strip() print '-------------------------------------------------------------' print "\n" # -------------------- # tribune (feedparser) # -------------------- d = feedparser.parse('http://chicagotribune.feedsportal.com/c/34253/f/622872/index.rss') # print all posts count = 1 blockcount = 1 for post in d.entries: if count % 5 == 1: print "\n" + time.strftime("%a, %b %d %I:%M %p") + ' ((( TRIBUNE - ' + str(blockcount) + ' )))' print "-----------------------------------------\n" blockcount += 1 print post.title + "\n" count += 1 |