提交 e5ad9758 编写于 作者: F feilong

删除无用代码

上级 50aeb3ab
from skill_tree.tree import TreeWalker,dump_json,load_json
import os
# def read_markdown(file):
# start_desc = False
# start_project = False
# desc = []
# project = []
# with open(file,'r') as f:
# for line in f.readlines():
# line = line.strip("\n")
# if start_desc and line.strip()!="":
# desc.append(line)
# if start_project and line.strip()!="":
# project.append(line)
# if line=="# 项目说明":
# start_desc = True
# if line=="# 项目地址":
# start_desc = False
# start_project=True
# print(desc)
# print(project)
# return "\n".join(desc), project[0].strip().replace("<","").replace(">","")
# def walk_project_2_config(data_path):
# for base,dirs,files in os.walk(data_path):
# for file in files:
# parts = file.split(".")
# if parts[-1]=="md":
# desc,project = read_markdown(os.path.join(base,file))
# config_path = os.path.join(base,file.replace("md","json"))
# config = load_json(config_path)
# config["project"] = project
# config["desc"] = desc
# dump_json(config_path, config, exist_ok=True, override=True)
if __name__ == '__main__':
walker = TreeWalker("data", "python_4_beginnners", "Python新手村",
ignore_keywords=True,
default_exercise_type="project")
default_exercise_type="inscode_project")
walker.walk()
# walk_project_2_config("data/")
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册