How can I parse this site (http://www.tvspielfilm.de/tv-programm/rss/heute2015.xml) with python to get for example the tv programm for today on SAT at 20:15? I've tried the Python library lxml.etree, but I failed:
#!/usr/bin/python
import lxml.etree as ET
import urllib2
response = urllib2.urlopen('http://www.tvspielfilm.de/tv-programm/rss/heute2015.xml')
xml = response.read()
root = ET.fromstring(xml)
for item in root.findall('SAT'):
title = item.find('title').text
print title