pombreda / feedparser

Automatically exported from code.google.com/p/feedparser
Other
0 stars 0 forks source link

Unable to parse VODO Media RSS file #231

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. Try to parse http://vodo.net/feeds/mrss
2. I notice that uses Media RSS: http://en.wikipedia.org/wiki/Media_RSS
3. Unable to find how to parse

I do not know if it is a bug or a feature request.

Original issue reported on code.google.com by facconi on 18 Nov 2010 at 10:06

GoogleCodeExporter commented 9 years ago
Using the latest version of the code (from Subversion not the feedparser.org 
website) this works:

>>> import feedparser
>>> f = feedparser.parse('http://vodo.net/feeds/mrss')
>>> f.bozo
1
>>> len(f.entries)
56

Marking as fixed but comment here if that doesn't work.

Original comment by adewale on 1 Dec 2010 at 12:18