python 解析url上的xml_python – 使用ElementTree XML API解析URL XML

下面是我的示例代码,在后台我用wget下载statsxml.jsp,然后解析xml.我现在的问题是我需要解析多个XML URL,正如您在下面的代码中看到的那样,我使用的是单个文件.怎么做到这一点?

import xml.etree.cElementTree as ET

tree = ET.ElementTree(file='statsxml.jsp')

root = tree.getroot()

root.tag, root.attrib

print "root subelements: ", root.getchildren()

root.getchildren()[0][1]

root.getchildren()[0][4].getchildren()

for component in tree.iterfind('Component name'):

print component.attrib['name']

解决方法:

您可以使用urllib2以相同的方式下载和解析文件.对于例如前几行将更改为:

import xml.etree.cElementTree as ET

import urllib2

for i in range(3):

tree = ET.ElementTree(file=urllib2.urlopen('http://www.trion%i.com:6060/stat.xml' % i ))

root = tree.getroot()

root.tag, root.attrib

# Rest of your code goes here....

标签:python,xml,xml-parsing,elementtree

来源: https://codeday.me/bug/20190825/1717371.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值