I am trying to parse an RSS feed using feedparser.
I am getting the title like this:
import feedparser
url = 'http://chem.aalto.fi/en/current/events/rss.xml'
feed = feedparser.parse(url)
for entry in feed.entries:
title = entry.title
print title
Typically this works without problems, but I encountered a strange case. In this particular feed, the titles look like this:
<title>06.11.2015: Some title text</title>
As expected, I sometimes get:
06.11.2015: Some title text
... but sometimes also this for the same item:
11/06/15: Some title text
Has anybody experienced a similar problem? It seems to be completely random.