0

我正在努力学习 Python。我唯一的经验是 Applescripting,学习起来并不容易……反正到目前为止。

我正在尝试解析一个 xml 天气站点,到目前为止我有我需要的数据,但我不知道如何将它放入列表中以进一步处理它。任何人都可以帮忙吗?

from BeautifulSoup import BeautifulSoup
import xml.etree.cElementTree as ET
from xml.etree.cElementTree import parse
import urllib2

url = "http://www.weatheroffice.gc.ca/rss/city/ab-52_e.xml"
response = urllib2.urlopen(url)
local_file = open("\Temp\weather.xml", "w")
local_file.write(response.read())
local_file.close()

invalid_tags = ['b', 'br'] 

tree = parse("\Temp\weather.xml")

stuff = tree.findall("channel/item/description")

item = stuff[1]

parsewx = BeautifulSoup(stuff[1].text)

for tag in invalid_tags: 
for match in parsewx.findAll(tag): 
    match.replaceWithChildren()

print parsewx 
4

1 回答 1

0

由于 XML 是结构化数据,BeautifulSoup 返回标签。该文档包含有关如何在该树中搜索导航的大量信息。

于 2012-04-19T19:57:19.527 回答