BeautifulSoup操作xml⽂件
BeautifulSoup操作html的介绍较为常见,可参考,常见的对xml的操作可以使⽤进⾏操作,这⾥并不是介绍BeautifulSoup操作xml,对⾃⼰在⼀次实践中遇到的问题进⾏记录。
问题:操作XML后,其中有多个结点,这⾥姑且以Id结点为例,需要替换⼀个其中⼀个Id结点,该Id结点可以通过⽗节点区分其他结点,因为ElementTree中可以使⽤iter()进⾏遍历,可以很⽅边的到Id结点,但是我不知道如何寻其⽗节点,最后想使⽤BeautifulSoup(),如果⼤家有什么⽅法,还望不吝赐教
<?xml version='1.0' encoding='UTF-8'?>
<nvd xmlns="namesapce test">
<data>
<xtrn>
<Id>2019</Id>
</xtrn>
<country name="Liechtenstein">
<rank>1</rank>
<Id>2008</Id>
<gdppc>141100</gdppc>
<tag>temp</tag>
<neighbor name="Austria" direction="E"/>
<neighbor name="Switzerland" direction="W"/>
</country>
<country name="中国">
<rank>68</rank>
<Id>2011</Id>
<gdppc>13600</gdppc>
<neighbor name="赵三" direction="西边"/>
<neighbor name="李四" direction="东北"/>
<temp information="bs4">bs4study</temp>
</country>
</data>
</nvd>
BeautifulSoup⽂档中介绍解析xml⽂件的⽅法如下:
BeautifulSoup(markup, "xml")
Beautiful Soup将复杂HTML⽂档转换成⼀个复杂的树形结构,每个节点都是Python对象,所有对象可以归纳为4
种: Tag , NavigableString , BeautifulSoup , Comment.
1.Tag结点
Tag 对象与XML或HTML原⽣⽂档中的tag相同:
#-*-encoding:utf-8-*-
from bs4 import BeautifulSoup
soup = BeautifulSoup(open("l"),'xml')
#打印⽂件对象信息
# print(soup)
#打印tag结点
print(soup.tag)
print(type(soup.tag))
在原⽂件中查确实有“tag”结点,因此这⾥使⽤结点的时候可以直接使⽤⽂件对象.标签的形式进⾏索引。
那⽂件对象两个最重要的属性就是name和attributes,对于⼤多数对于xml实际操作中,均是对标签的属性和name进⾏操作。
#-*-encoding:utf-8-*-
from bs4 import BeautifulSoup
soup = BeautifulSoup(open("l"),'xml')
print("temp(tag):",p)
print("temp(tag)name:",p.name)
print("temp(tag)attribute:",p.attrs)
#可以通过键值的形式查
print("temp(tag)attribute:",p['information'])
注意tag标签的属性可以被添加,删除或修改. 再说⼀次, tag的属性操作⽅法与字典⼀样
1.1 attibute
#替换属性值
for index in soup.find_all("temp"):
print type(index.attrs)
if index.attrs.has_key("information"):
index.attrs.update({"information":"8520"})
如果查temp标签,想要替换其attribute属性,由于index.attrs为字典,可以通过键值的形式进⾏操作
1.2 name
字符串常被包含在tag内.Beautiful Soup⽤ NavigableString 类来包装tag中的字符串,tag中包含的字符串不能编辑,但是可以被替换成其它的字符串,⽤ ⽅法:
xml中有三个Id标签,但是只想替换其⽗节点为xtrn的结点的name值,使⽤replace_with
for index in soup.find_all('Id'):
#替换name值,只能使⽤replace_with
if index.parent.name == "xtrn":
)
place_with("2020")python处理xml文件
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论