init_tree.py 435 字节
Newer Older
L
luxin 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
#!/usr/bin/env python
# -*- encoding: utf-8 -*-
'''
@File    :   combine_tree.py
@Time    :   2022/01/20 16:55:49
@Author  :   Lu Xin 
@Contact :   luxin@csdn.net
'''

# here put the import lib
from src.construct_tree import ConstructTree

def main():
    init_tree_json = ConstructTree()
    init_tree_json.load()
    init_tree_json.construct_tree_from_json()
    init_tree_json.create_contents()


if __name__=="__main__":
    main()