coocan 0.5.3__tar.gz → 0.5.3.1__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.
- {coocan-0.5.3 → coocan-0.5.3.1}/PKG-INFO +8 -4
- {coocan-0.5.3 → coocan-0.5.3.1}/coocan/push_project.py +0 -1
- {coocan-0.5.3 → coocan-0.5.3.1}/coocan.egg-info/PKG-INFO +8 -4
- {coocan-0.5.3 → coocan-0.5.3.1}/coocan.egg-info/SOURCES.txt +1 -0
- coocan-0.5.3.1/pyproject.toml +28 -0
- {coocan-0.5.3 → coocan-0.5.3.1}/README.md +0 -0
- {coocan-0.5.3 → coocan-0.5.3.1}/coocan/__init__.py +0 -0
- {coocan-0.5.3 → coocan-0.5.3.1}/coocan/cmd/__init__.py +0 -0
- {coocan-0.5.3 → coocan-0.5.3.1}/coocan/cmd/cli.py +0 -0
- {coocan-0.5.3 → coocan-0.5.3.1}/coocan/gen.py +0 -0
- {coocan-0.5.3 → coocan-0.5.3.1}/coocan/spider/__init__.py +0 -0
- {coocan-0.5.3 → coocan-0.5.3.1}/coocan/spider/base.py +0 -0
- {coocan-0.5.3 → coocan-0.5.3.1}/coocan/templates/spider.txt +0 -0
- {coocan-0.5.3 → coocan-0.5.3.1}/coocan/url/__init__.py +0 -0
- {coocan-0.5.3 → coocan-0.5.3.1}/coocan/url/request.py +0 -0
- {coocan-0.5.3 → coocan-0.5.3.1}/coocan/url/response.py +0 -0
- {coocan-0.5.3 → coocan-0.5.3.1}/coocan.egg-info/dependency_links.txt +0 -0
- {coocan-0.5.3 → coocan-0.5.3.1}/coocan.egg-info/entry_points.txt +0 -0
- {coocan-0.5.3 → coocan-0.5.3.1}/coocan.egg-info/requires.txt +0 -0
- {coocan-0.5.3 → coocan-0.5.3.1}/coocan.egg-info/top_level.txt +0 -0
- {coocan-0.5.3 → coocan-0.5.3.1}/setup.cfg +0 -0
- {coocan-0.5.3 → coocan-0.5.3.1}/setup.py +0 -0
@@ -1,15 +1,19 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.4
|
2
2
|
Name: coocan
|
3
|
-
Version: 0.5.3
|
4
|
-
Summary: Air Spider Framework
|
3
|
+
Version: 0.5.3.1
|
4
|
+
Summary: Air Async Spider Framework
|
5
5
|
Home-page: https://github.com/markadc/coocan
|
6
6
|
Author: wauo
|
7
|
-
Author-email: markadc@126.com
|
7
|
+
Author-email: wauo <markadc@126.com>
|
8
|
+
Project-URL: Homepage, https://github.com/markadc/coocan
|
8
9
|
Requires-Python: >=3.10
|
9
10
|
Description-Content-Type: text/markdown
|
10
11
|
Requires-Dist: click>=8.0.0
|
11
12
|
Requires-Dist: httpx
|
12
13
|
Requires-Dist: loguru
|
14
|
+
Dynamic: author
|
15
|
+
Dynamic: home-page
|
16
|
+
Dynamic: requires-python
|
13
17
|
|
14
18
|
# 项目说明
|
15
19
|
|
@@ -1,15 +1,19 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.4
|
2
2
|
Name: coocan
|
3
|
-
Version: 0.5.3
|
4
|
-
Summary: Air Spider Framework
|
3
|
+
Version: 0.5.3.1
|
4
|
+
Summary: Air Async Spider Framework
|
5
5
|
Home-page: https://github.com/markadc/coocan
|
6
6
|
Author: wauo
|
7
|
-
Author-email: markadc@126.com
|
7
|
+
Author-email: wauo <markadc@126.com>
|
8
|
+
Project-URL: Homepage, https://github.com/markadc/coocan
|
8
9
|
Requires-Python: >=3.10
|
9
10
|
Description-Content-Type: text/markdown
|
10
11
|
Requires-Dist: click>=8.0.0
|
11
12
|
Requires-Dist: httpx
|
12
13
|
Requires-Dist: loguru
|
14
|
+
Dynamic: author
|
15
|
+
Dynamic: home-page
|
16
|
+
Dynamic: requires-python
|
13
17
|
|
14
18
|
# 项目说明
|
15
19
|
|
@@ -0,0 +1,28 @@
|
|
1
|
+
[build-system]
|
2
|
+
requires = ["setuptools>=61.0", "wheel"]
|
3
|
+
build-backend = "setuptools.build_meta"
|
4
|
+
|
5
|
+
[project]
|
6
|
+
name = "coocan"
|
7
|
+
version = "0.5.3.1"
|
8
|
+
authors = [
|
9
|
+
{ name = "wauo", email = "markadc@126.com" }
|
10
|
+
]
|
11
|
+
description = "Air Async Spider Framework"
|
12
|
+
readme = "README.md"
|
13
|
+
requires-python = ">=3.10"
|
14
|
+
dependencies = [
|
15
|
+
"click>=8.0.0",
|
16
|
+
"httpx",
|
17
|
+
"loguru"
|
18
|
+
]
|
19
|
+
urls = { Homepage = "https://github.com/markadc/coocan" }
|
20
|
+
|
21
|
+
[project.scripts]
|
22
|
+
coocan = "coocan.cmd.cli:main"
|
23
|
+
|
24
|
+
[tool.setuptools]
|
25
|
+
include-package-data = true
|
26
|
+
|
27
|
+
[tool.setuptools.package-data]
|
28
|
+
coocan = ["templates/*"]
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|