当前位置:  开发笔记 > 编程语言 > 正文

如何将XML转换为Python对象?

如何解决《如何将XML转换为Python对象?》经验,为你挑选了2个好方法。

我需要加载XML文件并将内容转换为面向对象的Python结构.我想接受这个:

content

把它变成这样的东西:

main
main.object1 = "content"
main.object1.attr = "name"

XML数据将具有比这更复杂的结构,我不能硬编码元素名称.解析时需要收集属性名称并将其用作对象属性.

如何将XML数据转换为Python对象?



1> Peter Hoffma..:

值得一看lxml.objectify.

xml = """
content contenbar me
""" from lxml import objectify main = objectify.fromstring(xml) main.object1[0] # content main.object1[1] # contenbar main.object1[0].get("attr") # name main.test # me

或者反过来构建xml结构:

item = objectify.Element("item")
item.title = "Best of python"
item.price = 17.98
item.price.set("currency", "EUR")

order = objectify.Element("order")
order.append(item)
order.item.quantity = 3
order.price = sum(item.price * item.quantity for item in order.item)

import lxml.etree
print(lxml.etree.tostring(order, pretty_print=True))

输出:


  
    Best of python
    17.98
    3
  
  53.94



2> Soviut..:

我今天不止一次推荐这个,但尝试Beautiful Soup(easy_install BeautifulSoup).

from BeautifulSoup import BeautifulSoup

xml = """
content
""" soup = BeautifulSoup(xml) # look in the main node for object's with attr=name, optionally look up attrs with regex my_objects = soup.main.findAll("object", attrs={'attr':'name'}) for my_object in my_objects: # this will print a list of the contents of the tag print my_object.contents # if only text is inside the tag you can use this # print tag.string

推荐阅读
贴进你的心聆听你的世界
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有