From e5ad9758a40dc1a403eefcd9f95cc40dea66019c Mon Sep 17 00:00:00 2001 From: feilong Date: Sun, 26 Feb 2023 15:46:34 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=A0=E9=99=A4=E6=97=A0=E7=94=A8=E4=BB=A3?= =?UTF-8?q?=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- main.py | 38 +------------------------------------- 1 file changed, 1 insertion(+), 37 deletions(-) diff --git a/main.py b/main.py index dc8f873..c996608 100644 --- a/main.py +++ b/main.py @@ -1,44 +1,8 @@ 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/") -- GitLab