使用python为融合图表创建data.xml文件

时间:2011-03-28 18:13:26

标签: python fusioncharts

我是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>

感谢。

3 个答案:

答案 0 :(得分:2)

您可以使用python 2.0及更高版本中内置的miniDOM库:

http://docs.python.org/library/xml.dom.minidom.html

答案 1 :(得分:0)

来自stdlib的

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时,这本书/网站是许多其他主题的优秀整体资源。