Question

How can I download all posts from a feed such as http://feeds2.feedburner.com/meinscheissleben with Python?

Was it helpful?

Solution

Try feedparser and read the docs.

   import feedparser
>>> url = 'http://feeds2.feedburner.com/meinscheissleben '
>>> d = feedparser.parse(url)

len(d['entries']) # nr of entries
d['entries'][0] # pick one
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top