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

发布于 2024-10-27 13:50:41 字数 514 浏览 0 评论 0原文

我是 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

记忆之渊 2024-11-03 13:50:41

您可以使用 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

梦亿 2024-11-03 13:50:41

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))

ElementTree from stdlib might be helpful:

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))
ま柒月 2024-11-03 13:50:41

关于 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文