document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. #!python
  2. import feedparser
  3.  
  4. fp = feedparser.parse(u\'http://sfbay.craigslist.org/search/zip?format=rss\')
  5. print "\\n".join(["{0}: {1}".format(e.title, e.link) for e in fp.entries])
');