前言
最近升级了一下xmind2testlink,顺带产生了一个中间轮子:xmindparser。
xmind是知名的思维导图软件,可以用来整理思路,设计测试案例等等。一旦完稿后软件本身支持导出为图片,PDF,Excel等等文件格式。免费版相对于Pro版能导出的文件种类少一些,但有时候你可能想我做的xmind能不能通过编程再加工一下,比如集成到某个网页,或者通过api和某某系统集成。
那么xmindparser就是这么一个项目,了解一下。
安装xmindparser
这个项目已经打包到PyPI,可以通过pip安装。
pip install xmindparser
Xmind 转Python 数据类型
xmindparser可以将xmind转成dict
数据类型,比如下面这么一个xmind文件:
转换代码的示例:
from xmindparser import xmind_to_dict
out = xmind_to_dict(xmind_file)
例子中out
的数据结构如下:
[
{
"title": "Sheet 1",
"topic": {
"makers": [
"star-orange"
],
"topics": [
{
"link": "http://test.com",
"topics": [
{
"topics": [...]
"title": "e"
},
...
],
"title": "test"
},
"structure": "org.xmind.ui.map.unbalanced"
},
{
"title": "Sheet 2",
...
}
]
通过遍历sheet和topics就可以获取到xmind中每个节点的数据。
Xmind 转 JSON
转成Json非常简单,如果你还是使用Python编程,可以这样写:
from xmindpraser import xmind_to_json
out_file = xmind_to_json(xmind_file)
或者你直接调用命令行工具:
xmindparser your.xmind -json
Xmind 转 XML
转成XML是类似的,使用Python编程,这样写:
from xmindpraser import xmind_to_xml
out_file = xmind_to_xml(xmind_file)
或者你直接调用命令行工具:
xmindparser your.xmind -xml
结束语
单个工具本身可能作用有限,但如果你能将各种工具融合起来,威力也许大很多。我们常说1+1,很多时候都是大于2的。
关于作者:Toby Qin, Python 技术爱好者,目前从事测试开发相关工作,转载请注明原文出处。
欢迎关注我的博客 https://betacat.online,你可以到我的公众号中去当吃瓜群众。
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。