My Python code can't parse "description" from RSS feed, when I run following script, it shows multiple lines of blanks, how could I parse it correctly?
import feedparser
import unidecode
rss_url = "http://my.blogspot.com/feeds/posts/default?alt=rss"
feed = feedparser.parse( rss_url )
for key in feed["entries"]:
print unidecode.unidecode(key["description"])
RSS description section:
<description><iframe src="https://domain.com/embed/NTXFZhHw/01-10-1080p.mp4" scrolling="no" frameborder="0" width="700" height="430" allowfullscreen="true" webkitallowfullscreen="true" mozallowfullscreen="true"></iframe> </description>