View Single Post
Posts: 47 | Thanked: 22 times | Joined on Apr 2010
#286
Here's a little python script I use to get the verse of the day from BibleGateway

Code:
import feedparser
try:
	feed_in = feedparser.parse('http://www.biblegateway.com/votd/get/?format=atom')
	try:
		feed = str(feed_in.entries[0].title)
		print feed
	except:
		print 'No Content'
except:
	print 'Not Connected'
You need the feedparser module which can be gotten from Here