使用Python和BeautifulSoup从XML文件创建字典

时间:2016-12-28 16:02:27

标签: python xml iterate

请原谅我对Python的初学者知识。我需要使用BeautifulSoup迭代XML文件中的某个元素。

我试图从天气网站创建的XML文件中获取信息,现在我正在保存这样的XML;

def aber_forcast():
    url = "http://api.met.no/weatherapi/locationforecast/1.9/?lat=52.41616;lon=-4.064598"
    response = requests.get(url)
    xml_text=response.text
    soup= bs4.BeautifulSoup(xml_text, "xml") 
    f = open('file.xml', "w")
    f.write(soup.prettify())
    f.close()
    return (soup)

我正在尝试计算元素'符号ID'的出现次数。我需要创建一个符号id的图表以及它在整个XML中出现的次数。我可以使用;将所有symbol_id组合成一个列表;

with open ('file.xml') as file:
    soup = bs4.BeautifulSoup(file, "xml")
    symbol_id = soup.find_all("symbol")   
    print(symbol_id)

有' Cloud'' Rain'等等,以及与之相关的相关ID号,通过stackoverflow查看,我假设它类似下面的代码,我将需要创建相关数字和ID的字典然后计算迭代次数。

def parseLog(file):
    file = sys.argv[1]
    handler = open(file).read()
    soup = Soup(handler)
    for sym in soup.findAll('symbol'):
        msg_attrs = dict(sym.attrs)
        f_user = sym.find('symbol id').user
        f_user_dict = dict(f_user.attrs)
        print ((f_user_dict[u'symbols'], sym.find('number').decodeContents()) 

任何帮助或建议都会非常抱歉,如果这个问题没有多大意义我仍然对这一切感到陌生。

2 个答案:

答案 0 :(得分:1)

不完全确定你在寻找什么,但通过计算id的出现的列表的简单迭代看起来像这样。

#get data
url = "http://api.met.no/weatherapi/locationforecast/1.9/?lat=52.41616;lon=-4.064598"
response = requests.get(url)
xml_text=response.text
soup= bs4.BeautifulSoup(xml_text, "xml") 
symbol_id = soup.find_all("symbol")

# create dictionary
d = {}
for item in symbol_id:
    d[item['id']] = d.get(item['id'], 0) + 1

print(d)

{'Cloud': 15,
 'Drizzle': 9,
 'DrizzleSun': 6,
 'LightCloud': 2,
 'LightRainSun': 2,
 'PartlyCloud': 13,
 'Rain': 1,
 'Sun': 18}

您也可以使用Counter

在一行中执行此操作
from collections import Counter
Counter([x['id'] for x in soup.find_all("symbol")])

答案 1 :(得分:0)

您可以使用xmltodict https://github.com/martinblech/xmltodict

xmltodict.parse("""
<?xml version="1.0" ?>
<person>
<name>john</name>
<age>20</age>
</person>""")
# {u'person': {u'age': u'20', u'name': u'john'}}`