我正在使用 feedparser 从 Atom/xml 提要文件中解析数据。该文件的链接是:
https://alerts.weather.gov/cap/oh.php?x=0
这是国家气象局发布的用于提供天气警报信息的提要。此提要使用通用警报协议 (CAP) 警报消息。我正在尝试解析以下内容:
<summary>...AIR QUALITY ADVISORY IN EFFECT UNTIL MIDNIGHT EDT TONIGHT... The Miami Valley Regional Planning Commission and the Regional Air Pollution Control Agency have issued an Air Pollution and Air Quality Advisory for Montgomery, Miami, Greene, Clark, Preble and Darke counties in the Miami Valley Region, until midnight EDT tonight.</summary>
<cap:event>Air Quality Alert</cap:event>
<cap:effective>2020-06-08T15:15:00-04:00</cap:effective>
<cap:expires>2020-06-09T19:30:00-04:00</cap:expires>
<cap:status>Actual</cap:status>
<cap:msgType>Alert</cap:msgType>
<cap:category>Met</cap:category>
<cap:urgency>Unknown</cap:urgency>
<cap:severity>Unknown</cap:severity>
<cap:certainty>Unknown</cap:certainty>
<cap:areaDesc>Clark; Darke; Greene; Miami; Montgomery; Preble</cap:areaDesc>
我可以解析出摘要,但我无法解析出标签,例如使用 feedparser。这就是我在 Raspberry Pi 项目中所需要的。我尝试了许多不同的方法,例如:
d = feedparser.parse('http://alerts.weather.gov/cap/ms.php?x=0')
print (d.entries[0].['cap_event'])
print (d.entries[0]['cap:event'])
当我尝试打印 (d.entries[0].['cap_event']) 时,出现以下错误:
%运行 feedparser2.py 文件“/home/n8mdp/MyPythonApps/feedparser2.py”,第 13 行打印 (d['entries'][0].['cap:event']) ^ SyntaxError: invalid syntax
如果我使用 print (d.entries[0]['cap_event'],它会得到以下错误: Traceback (most recent call last): File "/home/n8mdp/MyPythonApps/feedparser2.py", line 13, in print (d['entries'][0]['cap:event']) 文件“/home/n8mdp/.thonny/Python36/lib/python3.6/site-packages/feedparser.py”,第 356 行,在getitem return dict.getitem (self, key) KeyError : 'cap:event'
在 Ubuntu 18.04.4 LTS 中使用 Thonny 2.1.16。Feedparser 已安装。
有没有人对我如何在 python 中使用 feedparser 解析这些标签有很好的建议?
提前致谢!