ฉันจะแยกวิเคราะห์ XML ใน Python อย่างไร


1003

ฉันมีหลายแถวในฐานข้อมูลที่มี XML และฉันพยายามเขียนสคริปต์ Python เพื่อนับอินสแตนซ์ของแอตทริบิวต์โหนดเฉพาะ

ต้นไม้ของฉันดูเหมือนว่า:

<foo>
   <bar>
      <type foobar="1"/>
      <type foobar="2"/>
   </bar>
</foo>

ฉันจะเข้าถึงคุณลักษณะ"1"และ"2"ใน XML โดยใช้ Python ได้อย่างไร


คำตอบ:


780

ElementTreeผมขอแนะนำให้ มีการใช้งานที่เข้ากันได้อื่น ๆ ของ API เดียวกันเช่นlxmlและcElementTreeในห้องสมุดมาตรฐาน Python เอง; แต่ในบริบทนี้สิ่งที่พวกเขาเพิ่มส่วนใหญ่คือความเร็วที่มากกว่า - ความง่ายในการเขียนโปรแกรมขึ้นอยู่กับ API ซึ่งElementTreeกำหนด

ขั้นแรกให้สร้างอินสแตนซ์องค์ประกอบrootจาก XML เช่นด้วยฟังก์ชั่นXMLหรือแยกไฟล์ด้วยสิ่งต่อไปนี้

import xml.etree.ElementTree as ET
root = ET.parse('thefile.xml').getroot()

หรือวิธีการอื่น ๆ ElementTreeอีกมากมายที่แสดงให้เห็น จากนั้นทำสิ่งที่ชอบ:

for type_tag in root.findall('bar/type'):
    value = type_tag.get('foobar')
    print(value)

และรูปแบบโค้ดที่คล้ายกันมักจะค่อนข้างเรียบง่าย


41
ดูเหมือนว่าคุณจะไม่สนใจ xml.etree.cElementTree ซึ่งมาพร้อมกับ Python และในบางแง่มุมก็เร็วกว่า lxml ("iterparse ของ lxml ของ" ช้ากว่าหนึ่งใน cET "- อีเมลจากผู้เขียน lxml เล็กน้อย)
John Machin

7
ElementTree ใช้งานได้และรวมอยู่ใน Python มีการสนับสนุน XPath ที่ จำกัด และคุณไม่สามารถข้ามไปที่พาเรนต์ขององค์ประกอบซึ่งอาจทำให้การพัฒนาช้าลง (โดยเฉพาะถ้าคุณไม่ทราบสิ่งนี้) ดูแบบสอบถามหลาม xml รับผู้ปกครองเพื่อดูรายละเอียด
ซามูเอล

11
lxmlเพิ่มมากกว่าความเร็ว มันให้การเข้าถึงข้อมูลเช่นโหนดหลักหมายเลขบรรทัดในแหล่ง XML และอื่น ๆ ที่สามารถเป็นประโยชน์อย่างมากในหลายสถานการณ์
Saheel Godhane

13
ดูเหมือนว่า ElementTree จะมีปัญหาช่องโหว่นี่เป็นข้อความที่อ้างถึงจากเอกสาร: Warning The xml.etree.ElementTree module is not secure against maliciously constructed data. If you need to parse untrusted or unauthenticated data see XML vulnerabilities.
Cristik

5
@Cristik นี้ดูเหมือนว่าจะเป็นกรณีที่มีมากที่สุด parsers XML, ดูหน้าช่องโหว่ XML
gitaarik

427

minidom เป็นไปข้างหน้าอย่างรวดเร็วและตรงไปตรงมามาก

XML:

<data>
    <items>
        <item name="item1"></item>
        <item name="item2"></item>
        <item name="item3"></item>
        <item name="item4"></item>
    </items>
</data>

งูหลาม:

from xml.dom import minidom
xmldoc = minidom.parse('items.xml')
itemlist = xmldoc.getElementsByTagName('item')
print(len(itemlist))
print(itemlist[0].attributes['name'].value)
for s in itemlist:
    print(s.attributes['name'].value)

เอาท์พุท:

4
item1
item1
item2
item3
item4

9
คุณจะรับค่าของ "item1" ได้อย่างไร ตัวอย่างเช่น: <item name = "item1"> Value1 </item>
swmcdonnell

88
ฉันคิดออกในกรณีที่ใครมีคำถามเดียวกัน มันคือ s.childNodes [0] .nodeValue
swmcdonnell

1
ฉันชอบตัวอย่างของคุณฉันต้องการที่จะใช้ แต่ฉันสามารถหาฟังก์ชั่นขนาดเล็กที่มีอยู่ได้ที่ไหน เว็บไซต์ python minidom แย่มากในความคิดของฉัน
Drewdin

1
ฉันยังสับสนว่าทำไมมันถึงitemตรงจากระดับสูงสุดของเอกสาร? มันจะไม่สะอาดกว่านี้ถ้าคุณให้มันเป็นเส้นทาง ( data->items)? เพราะสิ่งที่ถ้าคุณยังมีdata->secondSetOfItemsที่ยังได้รับการตั้งชื่อโหนดitemและคุณอยากจะรายการเพียงหนึ่งในสองชุดitem?
สัตว์สะเทินน้ำสะเทินบก


240

คุณสามารถใช้BeautifulSoup :

from bs4 import BeautifulSoup

x="""<foo>
   <bar>
      <type foobar="1"/>
      <type foobar="2"/>
   </bar>
</foo>"""

y=BeautifulSoup(x)
>>> y.foo.bar.type["foobar"]
u'1'

>>> y.foo.bar.findAll("type")
[<type foobar="1"></type>, <type foobar="2"></type>]

>>> y.foo.bar.findAll("type")[0]["foobar"]
u'1'
>>> y.foo.bar.findAll("type")[1]["foobar"]
u'2'

ขอบคุณสำหรับ info @ibz, ใช่จริง ๆ แล้วถ้าแหล่งข้อมูลไม่ได้มีรูปแบบที่ดีก็จะเป็นการยากที่จะแยกวิเคราะห์สำหรับ parsers เช่นกัน
คุณ

45
สามปีต่อมากับ bs4 นี่เป็นวิธีแก้ปัญหาที่ยอดเยี่ยมมีความยืดหยุ่นโดยเฉพาะอย่างยิ่งถ้าแหล่งกำเนิดไม่ได้เกิดขึ้นอย่างดี
cedbeu

8
@YOU เลิกBeautifulStoneSoupใช้งาน เพียงใช้BeautifulSoup(source_xml, features="xml")
andilabs

5
อีก 3 ปีต่อมาฉันพยายามโหลด XML โดยใช้ElementTreeแต่น่าเสียดายที่ไม่สามารถแยกวิเคราะห์ได้เว้นแต่ฉันจะปรับแหล่งที่มา แต่BeautifulSoupทำงานได้ทันทีโดยไม่มีการเปลี่ยนแปลงใด ๆ !
ViKiG

8
@andi คุณหมายถึง "เลิกใช้แล้ว" "คิดค่าเสื่อมราคา" หมายถึงมูลค่าลดลงซึ่งมักเกิดจากอายุหรือการสึกหรอจากการใช้งานปกติ
jpmc26

98

มีตัวเลือกมากมายออกมี cElementTreeดูดีมากถ้าความเร็วและการใช้หน่วยความจำเป็นปัญหา มันมีค่าใช้จ่ายน้อยมากเมื่อเทียบกับการอ่านในไฟล์โดยใช้readlinesมันมีค่าใช้จ่ายน้อยมากเมื่อเทียบกับเพียงแค่การอ่านในไฟล์โดยใช้

ตัวชี้วัดที่เกี่ยวข้องสามารถพบได้ในตารางด้านล่างคัดลอกมาจากเว็บไซต์cElementTree :

library                         time    space
xml.dom.minidom (Python 2.1)    6.3 s   80000K
gnosis.objectify                2.0 s   22000k
xml.dom.minidom (Python 2.4)    1.4 s   53000k
ElementTree 1.2                 1.6 s   14500k  
ElementTree 1.2.4/1.3           1.1 s   14500k  
cDomlette (C extension)         0.540 s 20500k
PyRXPU (C extension)            0.175 s 10850k
libxml2 (C extension)           0.098 s 16000k
readlines (read as utf-8)       0.093 s 8850k
cElementTree (C extension)  --> 0.047 s 4900K <--
readlines (read as ascii)       0.032 s 5050k   

ในฐานะที่เป็นแหลมออกโดย@jfs , cElementTreeมาพร้อมกับงูหลาม:

  • Python 2: from xml.etree import cElementTree as ElementTree2:
  • Python 3: from xml.etree import ElementTree(เวอร์ชั่นเร่งความเร็วจะถูกใช้โดยอัตโนมัติ)

9
มีข้อเสียใด ๆ ในการใช้ cElementTree ดูเหมือนว่าจะไม่มีเกมง่ายๆ
mayhewsw

6
เห็นได้ชัดว่าพวกเขาไม่ต้องการใช้ไลบรารีบน OS X เนื่องจากฉันใช้เวลามากกว่า 15 นาทีในการหาตำแหน่งที่จะดาวน์โหลดจากที่ใดและไม่มีลิงก์ทำงาน การขาดเอกสารช่วยป้องกันไม่ให้โครงการที่ดีเจริญรุ่งเรืองหวังว่าผู้คนจำนวนมากจะตระหนักว่า
Stunner

8
@Stunner: มันอยู่ใน stdlib นั่นคือคุณไม่จำเป็นต้องดาวน์โหลดอะไรเลย เกี่ยวกับงูหลาม from xml.etree import cElementTree as ElementTree2: ใน Python 3: from xml.etree import ElementTree(เวอร์ชั่น C เร่งถูกใช้โดยอัตโนมัติ)
jfs

1
@mayhewsw มันเป็นความพยายามมากขึ้นในการหาวิธีการใช้งานอย่างมีประสิทธิภาพElementTreeสำหรับงานเฉพาะ สำหรับเอกสารที่พอดีกับหน่วยความจำมันใช้งานได้ง่ายกว่ามากminidomและทำงานได้ดีสำหรับเอกสาร XML ขนาดเล็ก
คิวเมนตัส

44

ฉันแนะนำxmltodictเพื่อความเรียบง่าย

มันแยกวิเคราะห์ XML ของคุณเป็น OrderedDict;

>>> e = '<foo>
             <bar>
                 <type foobar="1"/>
                 <type foobar="2"/>
             </bar>
        </foo> '

>>> import xmltodict
>>> result = xmltodict.parse(e)
>>> result

OrderedDict([(u'foo', OrderedDict([(u'bar', OrderedDict([(u'type', [OrderedDict([(u'@foobar', u'1')]), OrderedDict([(u'@foobar', u'2')])])]))]))])

>>> result['foo']

OrderedDict([(u'bar', OrderedDict([(u'type', [OrderedDict([(u'@foobar', u'1')]), OrderedDict([(u'@foobar', u'2')])])]))])

>>> result['foo']['bar']

OrderedDict([(u'type', [OrderedDict([(u'@foobar', u'1')]), OrderedDict([(u'@foobar', u'2')])])])

3
ตกลง หากคุณไม่ต้องการ XPath หรืออะไรที่ซับซ้อนนี่เป็นเรื่องง่ายกว่าที่จะใช้ (โดยเฉพาะในล่าม) มีประโยชน์สำหรับ REST APIs ที่เผยแพร่ XML แทน JSON
Dan Passaro

4
โปรดจำไว้ว่า OrderedDict ไม่สนับสนุนคีย์ที่ซ้ำกัน XML ส่วนใหญ่เต็มไปด้วยพี่น้องหลายประเภทเดียวกัน (พูดย่อหน้าทั้งหมดในส่วนหรือทุกประเภทในแถบของคุณ) ดังนั้นสิ่งนี้จะใช้ได้กับกรณีพิเศษที่ จำกัด มากเท่านั้น
TextGeek

2
@TextGeek ในกรณีresult["foo"]["bar"]["type"]นี้เป็นรายการของ<type>องค์ประกอบทั้งหมดดังนั้นจึงยังคงใช้งานได้ (แม้ว่าโครงสร้างอาจจะคาดไม่ถึงบ้าง)
ยืม

38

lxml.objectifyนั้นง่ายมาก

จดข้อความตัวอย่างของคุณ:

from lxml import objectify
from collections import defaultdict

count = defaultdict(int)

root = objectify.fromstring(text)

for item in root.bar.type:
    count[item.attrib.get("foobar")] += 1

print dict(count)

เอาท์พุท:

{'1': 1, '2': 1}

countเก็บจำนวนของแต่ละรายการในพจนานุกรมด้วยปุ่มเริ่มต้นดังนั้นคุณไม่จำเป็นต้องตรวจสอบการเป็นสมาชิก collections.Counterนอกจากนี้คุณยังสามารถลองมองไปที่
Ryan Ginstrom

20

Python มีอินเตอร์เฟสไปยังตัวแยกวิเคราะห์ XML ของ expat

xml.parsers.expat

มันเป็นตัวแยกวิเคราะห์ที่ไม่ผ่านการตรวจสอบดังนั้น XML ที่ไม่ดีจะไม่ถูกตรวจจับ แต่ถ้าคุณรู้ว่าไฟล์ของคุณถูกต้องนี่เป็นสิ่งที่ค่อนข้างดีและคุณอาจได้รับข้อมูลที่แน่นอนที่คุณต้องการและคุณสามารถยกเลิกส่วนที่เหลือได้ทันที

stringofxml = """<foo>
    <bar>
        <type arg="value" />
        <type arg="value" />
        <type arg="value" />
    </bar>
    <bar>
        <type arg="value" />
    </bar>
</foo>"""
count = 0
def start(name, attr):
    global count
    if name == 'type':
        count += 1

p = expat.ParserCreate()
p.StartElementHandler = start
p.Parse(stringofxml)

print count # prints 4

+1 เพราะฉันกำลังมองหา parser ที่ไม่ผ่านการตรวจสอบซึ่งจะทำงานกับอักขระต้นฉบับที่แปลกประหลาด หวังว่านี่จะให้ผลลัพธ์ที่ฉันต้องการ
Nathan C. Tresch

1
ตัวอย่างถูกสร้างขึ้นใน '09 และนี่คือวิธีที่มันทำ
Tor Valamo

14

ฉันอาจแนะนำให้declxml declxml

การเปิดเผยอย่างเต็มรูปแบบ: ฉันเขียนไลบรารีนี้เนื่องจากฉันกำลังมองหาวิธีการแปลงระหว่างโครงสร้างข้อมูล XML และ Python โดยไม่จำเป็นต้องเขียนโค้ดแยกวิเคราะห์บรรทัด / อนุกรมที่จำเป็นหลายสิบบรรทัดด้วย ElementTree

ด้วย declxml คุณใช้ตัวประมวลผลเพื่อกำหนดโครงสร้างของเอกสาร XML ของคุณและวิธีแมประหว่างโครงสร้างข้อมูล XML และ Python ตัวประมวลผลใช้สำหรับทั้งการทำให้เป็นอนุกรมและการแยกวิเคราะห์รวมถึงการตรวจสอบระดับพื้นฐาน

การแยกวิเคราะห์โครงสร้างข้อมูล Python เป็นเรื่องง่าย:

import declxml as xml

xml_string = """
<foo>
   <bar>
      <type foobar="1"/>
      <type foobar="2"/>
   </bar>
</foo>
"""

processor = xml.dictionary('foo', [
    xml.dictionary('bar', [
        xml.array(xml.integer('type', attribute='foobar'))
    ])
])

xml.parse_from_string(processor, xml_string)

ซึ่งผลิตผลลัพธ์:

{'bar': {'foobar': [1, 2]}}

คุณยังสามารถใช้ตัวประมวลผลเดียวกันเพื่อจัดลำดับข้อมูลเป็น XML

data = {'bar': {
    'foobar': [7, 3, 21, 16, 11]
}}

xml.serialize_to_string(processor, data, indent='    ')

ซึ่งผลิตผลลัพธ์ต่อไปนี้

<?xml version="1.0" ?>
<foo>
    <bar>
        <type foobar="7"/>
        <type foobar="3"/>
        <type foobar="21"/>
        <type foobar="16"/>
        <type foobar="11"/>
    </bar>
</foo>

หากคุณต้องการทำงานกับวัตถุแทนพจนานุกรมคุณสามารถกำหนดตัวประมวลผลเพื่อแปลงข้อมูลเป็นและจากวัตถุได้เช่นกัน

import declxml as xml

class Bar:

    def __init__(self):
        self.foobars = []

    def __repr__(self):
        return 'Bar(foobars={})'.format(self.foobars)


xml_string = """
<foo>
   <bar>
      <type foobar="1"/>
      <type foobar="2"/>
   </bar>
</foo>
"""

processor = xml.dictionary('foo', [
    xml.user_object('bar', Bar, [
        xml.array(xml.integer('type', attribute='foobar'), alias='foobars')
    ])
])

xml.parse_from_string(processor, xml_string)

ซึ่งผลิตผลลัพธ์ต่อไปนี้

{'bar': Bar(foobars=[1, 2])}

13

เพียงเพื่อเพิ่มความเป็นไปได้อื่น ๆ คุณสามารถใช้แก้ให้หายยุ่งเพราะเป็นไลบรารี xml-to-python-object ที่เรียบง่าย ที่นี่คุณมีตัวอย่าง:

การติดตั้ง:

pip install untangle

การใช้งาน:

ไฟล์ XML ของคุณ (เปลี่ยนไปเล็กน้อย):

<foo>
   <bar name="bar_name">
      <type foobar="1"/>
   </bar>
</foo>

การเข้าถึงคุณลักษณะด้วยuntangle:

import untangle

obj = untangle.parse('/path_to_xml_file/file.xml')

print obj.foo.bar['name']
print obj.foo.bar.type['foobar']

ผลลัพธ์จะเป็น:

bar_name
1

ข้อมูลเพิ่มเติมเกี่ยวกับแก้ให้หายยุ่งสามารถพบได้ใน " แก้ให้หายยุ่ง "

นอกจากนี้หากคุณสงสัยคุณสามารถค้นหารายการเครื่องมือสำหรับการทำงานกับ XML และ Python ใน " Python และ XML " คุณจะเห็นว่าคำตอบที่พบบ่อยที่สุดนั้นถูกกล่าวถึงโดยคำตอบก่อนหน้า


สิ่งที่ทำให้ยุ่งเหยิงแตกต่างจาก minidom อะไร
Aaron Mann

ฉันไม่สามารถบอกคุณถึงความแตกต่างระหว่างสองสิ่งนี้ได้เนื่องจากฉันไม่ได้ทำงานกับ minidom
jchanger

10

นี่คือรหัสที่ง่ายมาก cElementTreeแต่มีประสิทธิภาพการใช้

try:
    import cElementTree as ET
except ImportError:
  try:
    # Python 2.5 need to import a different module
    import xml.etree.cElementTree as ET
  except ImportError:
    exit_err("Failed to import cElementTree from any known place")      

def find_in_tree(tree, node):
    found = tree.find(node)
    if found == None:
        print "No %s in file" % node
        found = []
    return found  

# Parse a xml file (specify the path)
def_file = "xml_file_name.xml"
try:
    dom = ET.parse(open(def_file, "r"))
    root = dom.getroot()
except:
    exit_err("Unable to open and parse input definition file: " + def_file)

# Parse to find the child nodes list of node 'myNode'
fwdefs = find_in_tree(root,"myNode")

นี่คือจาก " python xml parse "


7

XML:

<foo>
   <bar>
      <type foobar="1"/>
      <type foobar="2"/>
   </bar>
</foo>

รหัสหลาม:

import xml.etree.cElementTree as ET

tree = ET.parse("foo.xml")
root = tree.getroot() 
root_tag = root.tag
print(root_tag) 

for form in root.findall("./bar/type"):
    x=(form.attrib)
    z=list(x)
    for i in z:
        print(x[i])

เอาท์พุท:

foo
1
2

6
import xml.etree.ElementTree as ET
data = '''<foo>
           <bar>
               <type foobar="1"/>
               <type foobar="2"/>
          </bar>
       </foo>'''
tree = ET.fromstring(data)
lst = tree.findall('bar/type')
for item in lst:
    print item.get('foobar')

นี่จะพิมพ์ค่าของแอfoobarททริบิวต์


6

xml.etree.ElementTree vs. lxml

นี่เป็นข้อดีของห้องสมุดที่ใช้มากที่สุดสองแห่งที่ฉันควรรู้ก่อนเลือกระหว่างกัน

xml.etree.ElementTree:

  1. จากไลบรารีมาตรฐาน : ไม่ต้องการติดตั้งโมดูลใด ๆ

lxml

  1. เขียนการประกาศ XML ได้อย่างง่ายดายเช่นคุณต้องเพิ่มstandalone="no"หรือไม่
  2. การพิมพ์ที่ยอดเยี่ยม : คุณสามารถมีXML ที่เยื้อง ๆ ได้โดยไม่มีโค้ดเพิ่มเติม
  3. แลเห็นการทำงาน: จะช่วยให้คุณใช้ XML .nodeราวกับว่าคุณกำลังจัดการกับปกติลำดับชั้นของวัตถุหลาม
  4. sourceline อนุญาตให้รับบรรทัดองค์ประกอบ XML ที่คุณใช้งานได้ง่าย
  5. คุณสามารถใช้ตัวตรวจสอบสคีมา XSD ในตัวได้เช่นกัน

5

ฉันพบ Python xml.domและxml.dom.minidomค่อนข้างง่าย โปรดทราบว่า DOM นั้นไม่ดีสำหรับ XML จำนวนมาก แต่ถ้าอินพุตของคุณมีขนาดค่อนข้างเล็ก


2

นอกจากนี้ไม่จำเป็นต้องใช้ lib เฉพาะ APIpython-benedictถ้าคุณใช้ เพียงเริ่มต้นอินสแตนซ์ใหม่จาก XML ของคุณและจัดการได้อย่างง่ายดายเนื่องจากเป็นdictคลาสย่อย

ติดตั้งง่าย: pip install python-benedict

from benedict import benedict as bdict

# data-source can be an url, a filepath or data-string (as in this example)
data_source = """
<foo>
   <bar>
      <type foobar="1"/>
      <type foobar="2"/>
   </bar>
</foo>"""

data = bdict.from_xml(data_source)
t_list = data['foo.bar'] # yes, keypath supported
for t in t_list:
   print(t['@foobar'])

มันสนับสนุนและnormalizes I / O การดำเนินงานที่มีหลายรูปแบบ: Base64, CSV, JSON, TOML, XML, และYAMLquery-string

จะมีการทดสอบอย่างดีและโอเพนซอร์สบนGitHub


0
#If the xml is in the form of a string as shown below then
from lxml  import etree, objectify
'''sample xml as a string with a name space {http://xmlns.abc.com}'''
message =b'<?xml version="1.0" encoding="UTF-8"?>\r\n<pa:Process xmlns:pa="http://xmlns.abc.com">\r\n\t<pa:firsttag>SAMPLE</pa:firsttag></pa:Process>\r\n'  # this is a sample xml which is a string


print('************message coversion and parsing starts*************')

message=message.decode('utf-8') 
message=message.replace('<?xml version="1.0" encoding="UTF-8"?>\r\n','') #replace is used to remove unwanted strings from the 'message'
message=message.replace('pa:Process>\r\n','pa:Process>')
print (message)

print ('******Parsing starts*************')
parser = etree.XMLParser(remove_blank_text=True) #the name space is removed here
root = etree.fromstring(message, parser) #parsing of xml happens here
print ('******Parsing completed************')


dict={}
for child in root: # parsed xml is iterated using a for loop and values are stored in a dictionary
    print(child.tag,child.text)
    print('****Derving from xml tree*****')
    if child.tag =="{http://xmlns.abc.com}firsttag":
        dict["FIRST_TAG"]=child.text
        print(dict)


### output
'''************message coversion and parsing starts*************
<pa:Process xmlns:pa="http://xmlns.abc.com">

    <pa:firsttag>SAMPLE</pa:firsttag></pa:Process>
******Parsing starts*************
******Parsing completed************
{http://xmlns.abc.com}firsttag SAMPLE
****Derving from xml tree*****
{'FIRST_TAG': 'SAMPLE'}'''

โปรดระบุบริบทที่อธิบายว่าคำตอบของคุณแก้ปัญหาได้อย่างไร ไม่สนับสนุนคำตอบเฉพาะรหัสเท่านั้น
Pedram Parsian

-1

หากแหล่งที่มาเป็นไฟล์ xml ให้พูดเหมือนตัวอย่างนี้

<pa:Process xmlns:pa="http://sssss">
        <pa:firsttag>SAMPLE</pa:firsttag>
    </pa:Process>

คุณอาจลองรหัสต่อไปนี้

from lxml import etree, objectify
metadata = 'C:\\Users\\PROCS.xml' # this is sample xml file the contents are shown above
parser = etree.XMLParser(remove_blank_text=True) # this line removes the  name space from the xml in this sample the name space is --> http://sssss
tree = etree.parse(metadata, parser) # this line parses the xml file which is PROCS.xml
root = tree.getroot() # we get the root of xml which is process and iterate using a for loop
for elem in root.getiterator():
    if not hasattr(elem.tag, 'find'): continue  # (1)
    i = elem.tag.find('}')
    if i >= 0:
        elem.tag = elem.tag[i+1:]

dict={}  # a python dictionary is declared
for elem in tree.iter(): #iterating through the xml tree using a for loop
    if elem.tag =="firsttag": # if the tag name matches the name that is equated then the text in the tag is stored into the dictionary
        dict["FIRST_TAG"]=str(elem.text)
        print(dict)

ผลผลิตก็จะเป็น

{'FIRST_TAG': 'SAMPLE'}
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.