我是python的新手。我只想知道如何创建代码来为fusioncharts编写xml文件名data.xml。 xml文件遵循以下格式:
<?xml version="1.0" encoding="UTF-8" ?>
<graph caption="Test graph" xAxisName="X" yAxisName="Y" showAnchors="1" anchorRadius="1" showValues="0">
<set name='2004' value='37800' color='AFD8F8' />
<set name='2005' value='21900' color='F6BD0F' />
<set name='2006' value='32900' color='8BBA00' />
<set name='2007' value='39800' color='FF8E46' />
</graph>
感谢。
答案 0 :(得分:2)
您可以使用python 2.0及更高版本中内置的miniDOM库:
答案 1 :(得分:0)
ElementTree可能会有所帮助:
import xml.etree.cElementTree as etree
G = etree.Element('graph', dict(caption='Test graph', xAxisName="..."))
for name, value, color in get_sets():
etree.SubElement(G, 'set', dict(name=name, value=value, color=color))
etree.ElementTree(G).write(open('data.xml', 'wb'),
encoding='utf-8', xml_declaration=True))
答案 2 :(得分:0)
chapter on XML中有一个很好的Dive Into Python 3,其中大部分也适用于Python 2.x,如果你正在使用它。当开始使用Python时,这本书/网站是许多其他主题的优秀整体资源。