码迷,mamicode.com
首页 > 编程语言 > 详细

【python小随笔】python 解析xml数据的新手大坑>>抓取多重标签,遍历各标签的数据

时间:2020-01-11 15:15:33      阅读:95      评论:0      收藏:0      [点我收藏+]

标签:ini   match   随笔   文档   针对   ESS   pytho   node   success   

xml文档:
<GetMatchingProductResult ASIN="B071LF9R6G" status="Success">...</GetMatchingProductResult>
<GetMatchingProductResult ASIN="B0714BP3H4" status="Success">...</GetMatchingProductResult>
<GetMatchingProductResult ASIN="B0756FL8R7" status="Success">...</GetMatchingProductResult>
<ResponseMetadata>

# 使用minidom解析器打开XML文档
DOMTree = xml.dom.minidom.parse("./test.xml")
collection = DOMTree.documentElement

# collection是针对整个文件的文档,GetMatchingProductResults 获取的是三个名字相同的标签,不同标签的数据对象
GetMatchingProductResults = collection.getElementsByTagName(GetMatchingProductResult)

# GetMatching 是针对每个标签对象GetMatching作为xml对象进行对应取值
for GetMatching in GetMatchingProductResults:
    asin = GetMatching.getElementsByTagName(ASIN)[0].childNodes[0].data
    print(asin)

【python小随笔】python 解析xml数据的新手大坑>>抓取多重标签,遍历各标签的数据

标签:ini   match   随笔   文档   针对   ESS   pytho   node   success   

原文地址:https://www.cnblogs.com/wanghong1994/p/12179825.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!