bili23-cli 0.2.1__tar.gz → 0.2.2__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.
- {bili23_cli-0.2.1 → bili23_cli-0.2.2}/CHANGELOG.md +7 -1
- {bili23_cli-0.2.1 → bili23_cli-0.2.2}/PKG-INFO +1 -1
- {bili23_cli-0.2.1 → bili23_cli-0.2.2}/pyproject.toml +1 -1
- bili23_cli-0.2.2/src/bili23_cli/__init__.py +11 -0
- bili23_cli-0.2.1/src/bili23_cli/__init__.py +0 -6
- {bili23_cli-0.2.1 → bili23_cli-0.2.2}/.gitignore +0 -0
- {bili23_cli-0.2.1 → bili23_cli-0.2.2}/LICENSE +0 -0
- {bili23_cli-0.2.1 → bili23_cli-0.2.2}/README.md +0 -0
- {bili23_cli-0.2.1 → bili23_cli-0.2.2}/src/bili23_cli/__main__.py +0 -0
- {bili23_cli-0.2.1 → bili23_cli-0.2.2}/src/bili23_cli/cli.py +0 -0
- {bili23_cli-0.2.1 → bili23_cli-0.2.2}/src/bili23_cli/client.py +0 -0
- {bili23_cli-0.2.1 → bili23_cli-0.2.2}/src/bili23_cli/config.py +0 -0
- {bili23_cli-0.2.1 → bili23_cli-0.2.2}/src/bili23_cli/download.py +0 -0
- {bili23_cli-0.2.1 → bili23_cli-0.2.2}/src/bili23_cli/merge.py +0 -0
- {bili23_cli-0.2.1 → bili23_cli-0.2.2}/src/bili23_cli/naming.py +0 -0
- {bili23_cli-0.2.1 → bili23_cli-0.2.2}/src/bili23_cli/parse.py +0 -0
- {bili23_cli-0.2.1 → bili23_cli-0.2.2}/src/bili23_cli/search.py +0 -0
- {bili23_cli-0.2.1 → bili23_cli-0.2.2}/src/bili23_cli/wbi.py +0 -0
|
@@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.2.2] - 2026-07-07
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
- `--version` 现在从已安装的包元数据读取真实版本号(之前硬编码为 0.1.0)。
|
|
14
|
+
|
|
10
15
|
## [0.2.1] - 2026-07-07
|
|
11
16
|
|
|
12
17
|
### Added
|
|
@@ -34,7 +39,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
34
39
|
- Multi-part video support (`-p`).
|
|
35
40
|
- Anonymous fallback (`--no-cookie`).
|
|
36
41
|
|
|
37
|
-
[Unreleased]: https://github.com/1WorldCapture/bili23-cli/compare/v0.2.
|
|
42
|
+
[Unreleased]: https://github.com/1WorldCapture/bili23-cli/compare/v0.2.2...HEAD
|
|
43
|
+
[0.2.2]: https://github.com/1WorldCapture/bili23-cli/releases/tag/v0.2.2
|
|
38
44
|
[0.2.1]: https://github.com/1WorldCapture/bili23-cli/releases/tag/v0.2.1
|
|
39
45
|
[0.2.0]: https://github.com/1WorldCapture/bili23-cli/releases/tag/v0.2.0
|
|
40
46
|
[0.1.0]: https://github.com/1WorldCapture/bili23-cli/releases/tag/v0.1.0
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: bili23-cli
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.2
|
|
4
4
|
Summary: Headless CLI for downloading Bilibili videos — reuses the Bili23-Downloader GUI login session, no separate login required.
|
|
5
5
|
Project-URL: Homepage, https://github.com/1WorldCapture/bili23-cli
|
|
6
6
|
Project-URL: Repository, https://github.com/1WorldCapture/bili23-cli
|
|
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "bili23-cli"
|
|
7
|
-
version = "0.2.
|
|
7
|
+
version = "0.2.2"
|
|
8
8
|
description = "Headless CLI for downloading Bilibili videos — reuses the Bili23-Downloader GUI login session, no separate login required."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.9"
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
"""Bili23-Downloader 的 headless CLI。
|
|
2
|
+
|
|
3
|
+
复用 GUI 版本(Bili23-Downloader)登录后的 cookie 数据,给一个 B 站地址即可下载。
|
|
4
|
+
详见:https://github.com/ScottSloan/Bili23-Downloader
|
|
5
|
+
"""
|
|
6
|
+
from importlib.metadata import PackageNotFoundError, version
|
|
7
|
+
|
|
8
|
+
try:
|
|
9
|
+
__version__ = version("bili23-cli")
|
|
10
|
+
except PackageNotFoundError: # 源码直接运行(未安装)时兜底
|
|
11
|
+
__version__ = "0.0.0+unknown"
|
|
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
|