python feedparser与雅虎天气rss

时间:2010-05-20 00:04:19

标签: python feedparser

我正在尝试使用feedparser从yahoos weather rss获取一些数据。它看起来像feed解析器剥离了yweather命名空间数据:

http://weather.yahooapis.com/forecastrss?w=24260013&u=c

<yweather:condition  text="Fair" code="34"  temp="23"  date="Wed, 19 May 2010 5:55 pm EDT" />

看起来像feedparser完全忽略了这一点。有没有得到它?

2 个答案:

答案 0 :(得分:0)

以下是使用lxml

获取数据的一种方法
import urllib2
import lxml.etree

url = "http://weather.yahooapis.com/forecastrss?w=24260013&u=c"
doc = lxml.etree.parse( urllib2.urlopen(url) ).getroot()
conditions = doc.xpath('*/*/yweather:condition',
                       namespaces={'yweather': 'http://xml.weather.yahoo.com/ns/rss/1.0'})
try:
    condition=conditions[0]
except IndexError:
    print('yweather:condition not found')
print(condition.items())
# [('text', 'Fair'), ('code', '33'), ('temp', '16'), ('date', 'Wed, 19 May 2010 9:55 pm EDT')]

using xpath with namespaces部分可能特别有帮助。

答案 1 :(得分:0)

为了完整性,feedparser DOES也支持这一点。一般语法是名称空间前缀下划线标记名称(例如,yweather_condition)。

在给出的Yahoo天气示例中,可以做到:

import feedparser
d=feedparser.parse('http://weather.yahooapis.com/forecastrss?w=24260013&u=c')
print (d['items'][0]['yweather_condition'])

产量

{'date': u'Mon, 18 Jul 2011 7:53 pm EDT', 'text': u'Fair', 'code': u'34', 'temp': u'27'}

文档位于http://www.feedparser.org/docs/namespace-handling.html