Python实现Xmind转换成Excel

一、实现方式

1、使用xmind专业版本自带功能:文件 -> 导出为Excel...
但若是破解版或者试用版本,则会提示需订阅:


2、使用百度脑图导入xmind文件,再导出为txt文件,最后复制到excel文档中


3、使用Python脚本转换

二、Python使用模块介绍

xmindparser

1、安装
pip install xmindparser

2、GitHub仓库地址:
https://github.com/tobyqin/xmindparser

3、使用命令行转换成json或xml文件

cd /your/xmind/dir

xmindparser your.xmind -json
xmindparser your.xmind -xml

4、通过代码转换成字典

from xmindparser import xmind_to_dict

d = xmind_to_dict('/path/to/your/xmind_file')
print(d)
openpyxl

1、安装
pip install openpyxl

2、文档地址
https://openpyxl.readthedocs.io/en/stable/index.html

3、创建excel文档,并保存

 # 创建一个Excel文件
    wb = Workbook()
    ws = wb.active

    # 保存Excel文档
    wb.save('test.xlsx')

4、插入数据

ws.cell(row=rowIndex, column=columnIndex).value = value

三、Python代码具体实现

1、xmind与excel转换的基本思想


2、使用xmindparser完整代码

# -*- coding: utf-8 -*-

import os
import json
import data.excelTool
from openpyxl import Workbook
from xmindparser import xmind_to_dict

#记录列数,全局变量,还原方便
columnIndex = 1
#记录行数
rowIndex = 1
#每个完整用例子主题的个数
caseCount = 0
#同层级主题个数
level_equal = 0


def get_xmind_zen_dict(ws, case_topics,main_topic):
    """
    :param case_topics: 用例集
    :return:

    遍历过程中需要有以下标记
    1、层级标记:主标题 - 分支标题 - 同级标题 - 子标题
    2、用例条数:对应Excel的行数

    """
    # 首层
    feature_topic_count = len(case_topics)
    global rowIndex
    global columnIndex
    global caseCount
    global level_equal

    # 遍历用例集,直到无topics表示用例遍历完成
    for index in range(0, feature_topic_count):
        # 当前层级主题的标题
        topic_title = case_topics[index]['title']
        print(topic_title)

        #将已经提取出来的外层主题进行对比,设置为最外层的用例名
        if topic_title in main_topic:
            columnIndex = 1

        # 首先,将主功能占位
        data.excelTool.setCellValue(ws=ws, columnIndex=columnIndex, rowIndex=rowIndex,
                                    value=topic_title)
        columnIndex += 1

        if 'topics' in case_topics[index].keys():
            # 当前层级下子主题数组
            # 每提取一次子主题,count即++一次,记录分支数量
            caseCount += 1
            topic_topics = case_topics[index]['topics']

            # 递归
            get_xmind_zen_dict(ws, topic_topics,main_topic)

        else:
            # 某一个分支遍历结束,需要做一次标记,行列需要还原

            #同层级最末分支
            level_equal_temp = len(case_topics)

            #处理行、列数值
            if  level_equal_temp > 1:
                columnIndex -= 1
                level_equal += 1

            rowIndex += 1

        #一次for循环结束后,还原
        if level_equal == feature_topic_count:
            columnIndex = columnIndex - caseCount +1



if __name__ == '__main__':
    # 用例地址
    file_path = 'Xmind转成Excel.xmind'

    # 首层画布
    xmind_origin = xmind_to_dict(file_path)

    # 用例标题
    case_title = xmind_origin[0]['topic']['title']

    # 主用例
    case_topics = xmind_origin[0]['topic']['topics']

    #需要把最外层的主题内容记录下来,以便进行匹配
    main_topic = []
    for topic in case_topics:
        main_topic.append(topic['title'])


    # 创建一个Excel文件
    wb = Workbook()
    ws = wb.active

    # 用例集遍历
    get_xmind_zen_dict(ws, case_topics,main_topic)

    # 保存Excel文档
    wb.save('test.xlsx')

©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。