cnks 0.2.3__tar.gz → 0.2.4__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {cnks-0.2.3 → cnks-0.2.4}/PKG-INFO +4 -4
- {cnks-0.2.3 → cnks-0.2.4}/README.md +3 -3
- cnks-0.2.4/cnks.log +4478 -0
- {cnks-0.2.3 → cnks-0.2.4}/pyproject.toml +1 -1
- cnks-0.2.4/src/cnks/server.py +1876 -0
- cnks-0.2.3/cnks.log +0 -1225
- cnks-0.2.3/oldmain.py +0 -255
- cnks-0.2.3/src/cnks/chrome_extractor.py +0 -413
- cnks-0.2.3/src/cnks/extractor.py +0 -250
- cnks-0.2.3/src/cnks/server.py +0 -832
- {cnks-0.2.3 → cnks-0.2.4}/.python-version +0 -0
- {cnks-0.2.3 → cnks-0.2.4}/CURSOR_CONNECTION.md +0 -0
- {cnks-0.2.3 → cnks-0.2.4}/src/cnks/__init__.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: cnks
|
3
|
-
Version: 0.2.
|
3
|
+
Version: 0.2.4
|
4
4
|
Summary: CNKI Search tool with Chrome browser integration
|
5
5
|
Author-email: bai-z-l <b@iziliang.com>
|
6
6
|
Requires-Python: >=3.10
|
@@ -17,16 +17,16 @@ Description-Content-Type: text/markdown
|
|
17
17
|
|
18
18
|
- 打开Chrome浏览器访问知网
|
19
19
|
- 提供关键词搜索工具
|
20
|
-
-
|
20
|
+
- **自动提取摘要内容**(v0.2.0新增)
|
21
21
|
- **将搜索结果转换为结构化JSON数据**(v0.2.0新增)
|
22
|
-
|
22
|
+
|
23
23
|
|
24
24
|
## 版本更新
|
25
25
|
|
26
26
|
### v0.2.0
|
27
27
|
- 简化工具接口,统一为单一的`mcp_cnks_search_and_extract`工具
|
28
28
|
- 实现一步式搜索和内容提取
|
29
|
-
- 支持从搜索结果提取50
|
29
|
+
- 支持从搜索结果提取50篇论文的摘要
|
30
30
|
- 结果包含标题、作者、摘要、关键词和引用格式等信息
|
31
31
|
|
32
32
|
### v0.1.1
|
@@ -6,16 +6,16 @@
|
|
6
6
|
|
7
7
|
- 打开Chrome浏览器访问知网
|
8
8
|
- 提供关键词搜索工具
|
9
|
-
-
|
9
|
+
- **自动提取摘要内容**(v0.2.0新增)
|
10
10
|
- **将搜索结果转换为结构化JSON数据**(v0.2.0新增)
|
11
|
-
|
11
|
+
|
12
12
|
|
13
13
|
## 版本更新
|
14
14
|
|
15
15
|
### v0.2.0
|
16
16
|
- 简化工具接口,统一为单一的`mcp_cnks_search_and_extract`工具
|
17
17
|
- 实现一步式搜索和内容提取
|
18
|
-
- 支持从搜索结果提取50
|
18
|
+
- 支持从搜索结果提取50篇论文的摘要
|
19
19
|
- 结果包含标题、作者、摘要、关键词和引用格式等信息
|
20
20
|
|
21
21
|
### v0.1.1
|