使用python为融合图表创建data.xml文件
我是 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>
谢谢。
I am a newbie to python. I just want to know how i can create a code to write an xml file name data.xml for fusioncharts. The xml file follows the format:
<?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>
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用 python 2.0 及更高版本中内置的 miniDOM 库:
http:// docs.python.org/library/xml.dom.minidom.html
You can use the miniDOM library which is built into python 2.0 and later:
http://docs.python.org/library/xml.dom.minidom.html
stdlib 中的 ElementTree 可能会有所帮助:
ElementTree from stdlib might be helpful:
关于 XML 的章节很好,位于 深入了解 Python 3,其中大部分内容也适用于 Python 2.x(如果您正在使用 Python 2.x)。当开始使用 Python 时,这本书/网站也是许多其他主题的优秀整体资源。
There's a nice chapter on XML in Dive Into Python 3, most of which also applies to Python 2.x if that's what you're working with. The book/website is an excellent overall resource for a lot of other topics when getting started with Python, too.