Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
CSDN 技术社区
skill_tree_parser
提交
cf447881
S
skill_tree_parser
项目概览
CSDN 技术社区
/
skill_tree_parser
通知
5
Star
4
Fork
1
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
S
skill_tree_parser
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
cf447881
编写于
1月 18, 2022
作者:
M
Mars Liu
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
0.0.7
上级
2fa8945b
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
13 addition
and
6 deletion
+13
-6
README.md
README.md
+4
-1
setup.py
setup.py
+1
-1
src/skill_tree/tree.py
src/skill_tree/tree.py
+8
-4
未找到文件。
README.md
浏览文件 @
cf447881
...
@@ -16,4 +16,7 @@ CSDN 技能树结构(章节、元信息、习题)解释器,支持技能树
...
@@ -16,4 +16,7 @@ CSDN 技能树结构(章节、元信息、习题)解释器,支持技能树
-
捕获 json 文件编码错误
-
捕获 json 文件编码错误
### 0.0.6
### 0.0.6
-
为
`keywords_must`
和
`keywords_forbid`
的读取操作添加默认值
-
为
`keywords_must`
和
`keywords_forbid`
的读取操作添加默认值
\ No newline at end of file
### 0.0.7
-
为 config.json 添加默认的
`keywords_must`
和
`keywords_forbid`
空列表
\ No newline at end of file
setup.py
浏览文件 @
cf447881
...
@@ -7,7 +7,7 @@ this_directory = Path(__file__).parent
...
@@ -7,7 +7,7 @@ this_directory = Path(__file__).parent
long_description
=
(
this_directory
/
"README.md"
).
read_text
()
long_description
=
(
this_directory
/
"README.md"
).
read_text
()
setup
(
name
=
"skill-tree-parser"
,
setup
(
name
=
"skill-tree-parser"
,
version
=
"0.0.
6
"
,
version
=
"0.0.
7
"
,
description
=
"CSDN Skill Tree Parser"
,
description
=
"CSDN Skill Tree Parser"
,
long_description
=
long_description
,
long_description
=
long_description
,
long_description_content_type
=
'text/markdown'
,
long_description_content_type
=
'text/markdown'
,
...
...
src/skill_tree/tree.py
浏览文件 @
cf447881
...
@@ -64,7 +64,9 @@ def dump_json(p, j, exist_ok=False, override=False):
...
@@ -64,7 +64,9 @@ def dump_json(p, j, exist_ok=False, override=False):
def
ensure_config
(
path
):
def
ensure_config
(
path
):
config_path
=
os
.
path
.
join
(
path
,
"config.json"
)
config_path
=
os
.
path
.
join
(
path
,
"config.json"
)
if
not
os
.
path
.
exists
(
config_path
):
if
not
os
.
path
.
exists
(
config_path
):
node
=
{
"keywords"
:
[]}
node
=
{
"keywords"
:
[],
"keywords_must"
:
[],
"keywords_forbid"
:
[]}
dump_json
(
config_path
,
node
,
exist_ok
=
True
,
override
=
False
)
dump_json
(
config_path
,
node
,
exist_ok
=
True
,
override
=
False
)
return
node
return
node
else
:
else
:
...
@@ -121,7 +123,7 @@ class TreeWalker:
...
@@ -121,7 +123,7 @@ class TreeWalker:
root
=
self
.
load_root
()
root
=
self
.
load_root
()
root_node
=
{
root_node
=
{
"node_id"
:
root
[
"node_id"
],
"node_id"
:
root
[
"node_id"
],
"keywords"
:
root
[
"keywords"
]
,
"keywords"
:
root
.
get
(
"keywords"
,
[])
,
"children"
:
[],
"children"
:
[],
"keywords_must"
:
root
.
get
(
"keywords_must"
,
[]),
"keywords_must"
:
root
.
get
(
"keywords_must"
,
[]),
"keywords_forbid"
:
root
.
get
(
"keywords_forbid"
,
[])
"keywords_forbid"
:
root
.
get
(
"keywords_forbid"
,
[])
...
@@ -282,7 +284,9 @@ class TreeWalker:
...
@@ -282,7 +284,9 @@ class TreeWalker:
"node_id"
:
self
.
gen_node_id
(),
"node_id"
:
self
.
gen_node_id
(),
"keywords"
:
[],
"keywords"
:
[],
"children"
:
[],
"children"
:
[],
"export"
:
[]
"export"
:
[],
"keywords_must"
:
[],
"keywords_forbid"
:
[]
}
}
dump_json
(
config_path
,
config
,
exist_ok
=
True
,
override
=
True
)
dump_json
(
config_path
,
config
,
exist_ok
=
True
,
override
=
True
)
else
:
else
:
...
@@ -343,7 +347,7 @@ class TreeWalker:
...
@@ -343,7 +347,7 @@ class TreeWalker:
result
=
{
result
=
{
name
:
{
name
:
{
"node_id"
:
config
[
"node_id"
],
"node_id"
:
config
[
"node_id"
],
"keywords"
:
config
[
"keywords"
]
,
"keywords"
:
config
.
get
(
"keywords"
,
[])
,
"children"
:
config
.
get
(
"children"
,
[]),
"children"
:
config
.
get
(
"children"
,
[]),
"keywords_must"
:
config
.
get
(
"keywords_must"
,
[]),
"keywords_must"
:
config
.
get
(
"keywords_must"
,
[]),
"keywords_forbid"
:
config
.
get
(
"keywords_forbid"
,
[])
"keywords_forbid"
:
config
.
get
(
"keywords_forbid"
,
[])
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录