Python feedparser get xml attributes

mknjhill

New Member
I posted a question about parsing an XML with elementTree but I was advised to use feedParser instead as it is supposed to be better suited to my feed.I am struggling though, I can't get information on how to extract the info I want.Here is my XML:\[code\]<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" xmlns:media="http://search.yahoo.com/mrss/" xmlns:rte="http://www.rte.ie/schemas/vod"> <id>10038711/</id> <updated>2013-01-24T22:52:43+00:00</updated> <title type="text">Reeling in the Years</title> <logo>http://www.rte.ie/iptv/images/logo.gif</logo> <link rel="self" type="application/atom+xml" href="http://feeds.rasset.ie/rteavgen/player/playlist?type=iptv&showId=10038711" /> <category term="feed"/> <author> <name>RTE</name> <uri>http://www.rte.ie</uri> </author> <entry> <id>10038711</id> <published>2012-07-04T12:00:00+01:00</published> <updated>2013-01-06T12:31:25+00:00</updated> <title type="text">Reeling in the Years</title> <content type="text">National and international events with popular music from the year 1989.First Broadcast: 08/11/1999</content> <category term="WEB Exclusive" rte:type="channel"/> <category term="Classics 1980" rte:type="genre"/> <category term="rte player" rte:type="source"/> <category term="" rte:type="transmision_details"/> <category term="False" rte:type="copyprotectionoptout"/> <category term="long" rte:type="form"/> <category term="3275" rte:type="progid"/> <link rel="site" type="text/html" href="http://www.rte.ie/tv50/"/> <link rel="self" type="application/atom+xml" href="http://feeds.rasset.ie/rteavgen/player/playlist/?itemId=10038711&type=iptv&format=xml" /> <link rel="alternate" type="text/html" href="http://www.rte.ie/player/#v=10038711"/> <rte:valid start="2012-07-23T15:56:04+01:00" end="2017-08-01T15:56:04+01:00"/> <rte:duration ms="842205" formatted="0:10"/> <rte:statistics views="19"/> <rte:bri id="na"/> <rte:channel id="13"/> <rte:item id="10038711"/> <media:title type="plain">Reeling in the Years</media:title> <media:description type="plain">National and international events with popular music from the year 1989. First Broadcast: 08/11/1999</media:description> <media:thumbnail url="http://img.rasset.ie/00062efc200.jpg" height="288" width="512" time="00:00:00+00:00"/> <media:teaserimgref1x1 url="" time="00:00:00+00:00"/> <media:rating scheme="http://www.rte.ie/schemes/vod">NA</media:rating> <media:copyright>RT
 
Back
Top