xml模塊

  xml是實現不一樣語言或程序之間進行數據交換的協議,跟json差很少,但json使用起來更簡單,至今不少公司系統的接口還主要是xml。node

  xml格式如xml_test文件,經過<>節點來區別數據結構。json

<data>
    <country name="Liechtenstein">
        <rank updated="yes">2</rank>
        <year updated="yes">2009</year>
        <gdppc>141100</gdppc>
        <neighbor direction="E" name="Austria" />
        <neighbor direction="W" name="Switzerland" />
    </country>
    <country name="Singapore">
        <rank updated="yes">5</rank>
        <year updated="yes">2012</year>
        <gdppc>59900</gdppc>
        <neighbor direction="N" name="Malaysia" />
    </country>
    <country name="Panama">
        <rank updated="yes">69</rank>
        <year updated="yes">2012</year>
        <gdppc>13600</gdppc>
        <neighbor direction="W" name="Costa Rica" />
        <neighbor direction="E" name="Colombia" />
    </country>
</data>
xml文檔讀取遍歷
import xml.etree.ElementTree as ET

tree = ET.parse("xml_test")  # 打開文件
root = tree.getroot()  #
print(root)
# 輸出:<Element 'data' at 0x1019b2a48>
print(root.tag)
# 輸出:data


#遍歷xml文檔
for child in root:
    # print(child.tag, child.attrib)
    print('-------',child.tag,child.attrib)
    for i in child:
        print(i.tag,i.text)
"""
輸出:------- country {'name': 'Liechtenstein'}
     rank 2
     year 2008
     gdppc 141100
     neighbor None
     neighbor None
"""

#只遍歷year 節點
for node in root.iter('year'):
    print(node.tag,node.text)
"""
輸出:year 2008
     year 2011
     year 2011
"""
xml增刪改
import xml.etree.ElementTree as ET

tree = ET.parse("xml_test")
root = tree.getroot()   # f.seek(0)

# 修改
for node in root.iter('year'):
    new_year = int(node.text) + 1
    node.text = str(new_year)
    node.set("updated","yes")  # 添加屬性

tree.write("xml_test")

# 刪除node
for country in root.findall('country'):
    rank = int(country.find('rank').text)
    if rank > 50:
        root.remove(country)

tree.write('output.xml')
xml自動建立
import xml.etree.ElementTree as ET

root = ET.Element("namelist")  # root
name = ET.SubElement(root,"name",attrib={"enrolled":"yes"})  # 在root下建立name節點,內容爲"enrolled":"yes"
age = ET.SubElement(name,"age",attrib={"checked":"no"})
sex = ET.SubElement(name,"sex")
sex.text = 'male'  # 性別

name2 = ET.SubElement(root,"name",attrib={"enrolled":"no"})
age = ET.SubElement(name2,"age")
age.text = '19'

et = ET.ElementTree(root) #生成文檔對象

et.write("test.xml", encoding="utf-8",xml_declaration=True)  # 寫入文檔

ET.dump(root) #打印生成的格式
相關文章
相關標籤/搜索