rednote-cli 0.1.0__tar.gz → 0.1.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.
- {rednote_cli-0.1.0 → rednote-cli-0.1.1}/PKG-INFO +7 -12
- {rednote_cli-0.1.0 → rednote-cli-0.1.1}/README.md +4 -0
- {rednote_cli-0.1.0 → rednote-cli-0.1.1}/pyproject.toml +11 -11
- {rednote_cli-0.1.0 → rednote-cli-0.1.1}/src/rednote_cli.egg-info/PKG-INFO +7 -12
- rednote-cli-0.1.1/src/rednote_cli.egg-info/requires.txt +9 -0
- rednote_cli-0.1.0/src/rednote_cli.egg-info/requires.txt +0 -9
- {rednote_cli-0.1.0 → rednote-cli-0.1.1}/setup.cfg +0 -0
- {rednote_cli-0.1.0 → rednote-cli-0.1.1}/src/rednote_cli/__init__.py +0 -0
- {rednote_cli-0.1.0 → rednote-cli-0.1.1}/src/rednote_cli/_runtime/__init__.py +0 -0
- {rednote_cli-0.1.0 → rednote-cli-0.1.1}/src/rednote_cli/_runtime/common/__init__.py +0 -0
- {rednote_cli-0.1.0 → rednote-cli-0.1.1}/src/rednote_cli/_runtime/common/app_utils.py +0 -0
- {rednote_cli-0.1.0 → rednote-cli-0.1.1}/src/rednote_cli/_runtime/common/config.py +0 -0
- {rednote_cli-0.1.0 → rednote-cli-0.1.1}/src/rednote_cli/_runtime/common/enums.py +0 -0
- {rednote_cli-0.1.0 → rednote-cli-0.1.1}/src/rednote_cli/_runtime/common/errors.py +0 -0
- {rednote_cli-0.1.0 → rednote-cli-0.1.1}/src/rednote_cli/_runtime/core/__init__.py +0 -0
- {rednote_cli-0.1.0 → rednote-cli-0.1.1}/src/rednote_cli/_runtime/core/account_manager.py +0 -0
- {rednote_cli-0.1.0 → rednote-cli-0.1.1}/src/rednote_cli/_runtime/core/browser/__init__.py +0 -0
- {rednote_cli-0.1.0 → rednote-cli-0.1.1}/src/rednote_cli/_runtime/core/browser/manager.py +0 -0
- {rednote_cli-0.1.0 → rednote-cli-0.1.1}/src/rednote_cli/_runtime/core/database/__init__.py +0 -0
- {rednote_cli-0.1.0 → rednote-cli-0.1.1}/src/rednote_cli/_runtime/core/database/manager.py +0 -0
- {rednote_cli-0.1.0 → rednote-cli-0.1.1}/src/rednote_cli/_runtime/platforms/__init__.py +0 -0
- {rednote_cli-0.1.0 → rednote-cli-0.1.1}/src/rednote_cli/_runtime/platforms/base.py +0 -0
- {rednote_cli-0.1.0 → rednote-cli-0.1.1}/src/rednote_cli/_runtime/platforms/factory.py +0 -0
- {rednote_cli-0.1.0 → rednote-cli-0.1.1}/src/rednote_cli/_runtime/platforms/publishing/__init__.py +0 -0
- {rednote_cli-0.1.0 → rednote-cli-0.1.1}/src/rednote_cli/_runtime/platforms/publishing/media.py +0 -0
- {rednote_cli-0.1.0 → rednote-cli-0.1.1}/src/rednote_cli/_runtime/platforms/publishing/models.py +0 -0
- {rednote_cli-0.1.0 → rednote-cli-0.1.1}/src/rednote_cli/_runtime/platforms/publishing/validator.py +0 -0
- {rednote_cli-0.1.0 → rednote-cli-0.1.1}/src/rednote_cli/_runtime/services/__init__.py +0 -0
- {rednote_cli-0.1.0 → rednote-cli-0.1.1}/src/rednote_cli/_runtime/services/scraper_service.py +0 -0
- {rednote_cli-0.1.0 → rednote-cli-0.1.1}/src/rednote_cli/adapters/__init__.py +0 -0
- {rednote_cli-0.1.0 → rednote-cli-0.1.1}/src/rednote_cli/adapters/output/__init__.py +0 -0
- {rednote_cli-0.1.0 → rednote-cli-0.1.1}/src/rednote_cli/adapters/output/event_stream.py +0 -0
- {rednote_cli-0.1.0 → rednote-cli-0.1.1}/src/rednote_cli/adapters/output/formatter_json.py +0 -0
- {rednote_cli-0.1.0 → rednote-cli-0.1.1}/src/rednote_cli/adapters/output/formatter_table.py +0 -0
- {rednote_cli-0.1.0 → rednote-cli-0.1.1}/src/rednote_cli/adapters/output/writer.py +0 -0
- {rednote_cli-0.1.0 → rednote-cli-0.1.1}/src/rednote_cli/adapters/persistence/__init__.py +0 -0
- {rednote_cli-0.1.0 → rednote-cli-0.1.1}/src/rednote_cli/adapters/persistence/file_account_repo.py +0 -0
- {rednote_cli-0.1.0 → rednote-cli-0.1.1}/src/rednote_cli/adapters/platform/__init__.py +0 -0
- {rednote_cli-0.1.0 → rednote-cli-0.1.1}/src/rednote_cli/adapters/platform/rednote/__init__.py +0 -0
- {rednote_cli-0.1.0 → rednote-cli-0.1.1}/src/rednote_cli/adapters/platform/rednote/extractor.py +0 -0
- {rednote_cli-0.1.0 → rednote-cli-0.1.1}/src/rednote_cli/adapters/platform/rednote/publisher.py +0 -0
- {rednote_cli-0.1.0 → rednote-cli-0.1.1}/src/rednote_cli/adapters/platform/rednote/runtime_extractor.py +0 -0
- {rednote_cli-0.1.0 → rednote-cli-0.1.1}/src/rednote_cli/adapters/platform/rednote/runtime_publisher.py +0 -0
- {rednote_cli-0.1.0 → rednote-cli-0.1.1}/src/rednote_cli/adapters/platform/rednote/runtime_registration.py +0 -0
- {rednote_cli-0.1.0 → rednote-cli-0.1.1}/src/rednote_cli/application/__init__.py +0 -0
- {rednote_cli-0.1.0 → rednote-cli-0.1.1}/src/rednote_cli/application/dto/__init__.py +0 -0
- {rednote_cli-0.1.0 → rednote-cli-0.1.1}/src/rednote_cli/application/dto/input_models.py +0 -0
- {rednote_cli-0.1.0 → rednote-cli-0.1.1}/src/rednote_cli/application/dto/output_models.py +0 -0
- {rednote_cli-0.1.0 → rednote-cli-0.1.1}/src/rednote_cli/application/use_cases/__init__.py +0 -0
- {rednote_cli-0.1.0 → rednote-cli-0.1.1}/src/rednote_cli/application/use_cases/account_list.py +0 -0
- {rednote_cli-0.1.0 → rednote-cli-0.1.1}/src/rednote_cli/application/use_cases/account_mutation.py +0 -0
- {rednote_cli-0.1.0 → rednote-cli-0.1.1}/src/rednote_cli/application/use_cases/auth_login.py +0 -0
- {rednote_cli-0.1.0 → rednote-cli-0.1.1}/src/rednote_cli/application/use_cases/auth_status.py +0 -0
- {rednote_cli-0.1.0 → rednote-cli-0.1.1}/src/rednote_cli/application/use_cases/doctor.py +0 -0
- {rednote_cli-0.1.0 → rednote-cli-0.1.1}/src/rednote_cli/application/use_cases/init_runtime.py +0 -0
- {rednote_cli-0.1.0 → rednote-cli-0.1.1}/src/rednote_cli/application/use_cases/note_get.py +0 -0
- {rednote_cli-0.1.0 → rednote-cli-0.1.1}/src/rednote_cli/application/use_cases/note_search.py +0 -0
- {rednote_cli-0.1.0 → rednote-cli-0.1.1}/src/rednote_cli/application/use_cases/publish_note.py +0 -0
- {rednote_cli-0.1.0 → rednote-cli-0.1.1}/src/rednote_cli/application/use_cases/user_get.py +0 -0
- {rednote_cli-0.1.0 → rednote-cli-0.1.1}/src/rednote_cli/application/use_cases/user_search.py +0 -0
- {rednote_cli-0.1.0 → rednote-cli-0.1.1}/src/rednote_cli/application/use_cases/user_self.py +0 -0
- {rednote_cli-0.1.0 → rednote-cli-0.1.1}/src/rednote_cli/cli/__init__.py +0 -0
- {rednote_cli-0.1.0 → rednote-cli-0.1.1}/src/rednote_cli/cli/__main__.py +0 -0
- {rednote_cli-0.1.0 → rednote-cli-0.1.1}/src/rednote_cli/cli/commands/__init__.py +0 -0
- {rednote_cli-0.1.0 → rednote-cli-0.1.1}/src/rednote_cli/cli/commands/account.py +0 -0
- {rednote_cli-0.1.0 → rednote-cli-0.1.1}/src/rednote_cli/cli/commands/doctor.py +0 -0
- {rednote_cli-0.1.0 → rednote-cli-0.1.1}/src/rednote_cli/cli/commands/init.py +0 -0
- {rednote_cli-0.1.0 → rednote-cli-0.1.1}/src/rednote_cli/cli/commands/note.py +0 -0
- {rednote_cli-0.1.0 → rednote-cli-0.1.1}/src/rednote_cli/cli/commands/publish.py +0 -0
- {rednote_cli-0.1.0 → rednote-cli-0.1.1}/src/rednote_cli/cli/commands/search.py +0 -0
- {rednote_cli-0.1.0 → rednote-cli-0.1.1}/src/rednote_cli/cli/commands/user.py +0 -0
- {rednote_cli-0.1.0 → rednote-cli-0.1.1}/src/rednote_cli/cli/main.py +0 -0
- {rednote_cli-0.1.0 → rednote-cli-0.1.1}/src/rednote_cli/cli/options.py +0 -0
- {rednote_cli-0.1.0 → rednote-cli-0.1.1}/src/rednote_cli/cli/runtime.py +0 -0
- {rednote_cli-0.1.0 → rednote-cli-0.1.1}/src/rednote_cli/cli/utils.py +0 -0
- {rednote_cli-0.1.0 → rednote-cli-0.1.1}/src/rednote_cli/domain/__init__.py +0 -0
- {rednote_cli-0.1.0 → rednote-cli-0.1.1}/src/rednote_cli/domain/errors.py +0 -0
- {rednote_cli-0.1.0 → rednote-cli-0.1.1}/src/rednote_cli/domain/note_search_filters.py +0 -0
- {rednote_cli-0.1.0 → rednote-cli-0.1.1}/src/rednote_cli/infra/__init__.py +0 -0
- {rednote_cli-0.1.0 → rednote-cli-0.1.1}/src/rednote_cli/infra/exit_codes.py +0 -0
- {rednote_cli-0.1.0 → rednote-cli-0.1.1}/src/rednote_cli/infra/logger.py +0 -0
- {rednote_cli-0.1.0 → rednote-cli-0.1.1}/src/rednote_cli/infra/paths.py +0 -0
- {rednote_cli-0.1.0 → rednote-cli-0.1.1}/src/rednote_cli/infra/platforms.py +0 -0
- {rednote_cli-0.1.0 → rednote-cli-0.1.1}/src/rednote_cli.egg-info/SOURCES.txt +0 -0
- {rednote_cli-0.1.0 → rednote-cli-0.1.1}/src/rednote_cli.egg-info/dependency_links.txt +0 -0
- {rednote_cli-0.1.0 → rednote-cli-0.1.1}/src/rednote_cli.egg-info/entry_points.txt +0 -0
- {rednote_cli-0.1.0 → rednote-cli-0.1.1}/src/rednote_cli.egg-info/top_level.txt +0 -0
|
@@ -1,18 +1,9 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
2
|
Name: rednote-cli
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.1
|
|
4
4
|
Summary: Rednote platform CLI
|
|
5
|
-
Requires-Python:
|
|
5
|
+
Requires-Python: ==3.12
|
|
6
6
|
Description-Content-Type: text/markdown
|
|
7
|
-
Requires-Dist: playwright==1.57.0
|
|
8
|
-
Requires-Dist: playwright-stealth==2.0.0
|
|
9
|
-
Requires-Dist: yt-dlp==2025.12.8
|
|
10
|
-
Requires-Dist: pydantic==2.12.2
|
|
11
|
-
Requires-Dist: typer>=0.12.0
|
|
12
|
-
Requires-Dist: rich>=13.7.0
|
|
13
|
-
Requires-Dist: loguru==0.7.3
|
|
14
|
-
Requires-Dist: croniter==6.0.0
|
|
15
|
-
Requires-Dist: fake_useragent==2.2.0
|
|
16
7
|
|
|
17
8
|
# rednote-cli
|
|
18
9
|
|
|
@@ -21,6 +12,10 @@ Rednote 平台专用 CLI 包(独立安装、独立升级)。
|
|
|
21
12
|
## 安装
|
|
22
13
|
|
|
23
14
|
```bash
|
|
15
|
+
brew install pipx
|
|
16
|
+
pipx ensurepath
|
|
17
|
+
exec zsh
|
|
18
|
+
|
|
24
19
|
pipx install rednote-cli
|
|
25
20
|
```
|
|
26
21
|
|
|
@@ -1,26 +1,26 @@
|
|
|
1
1
|
[build-system]
|
|
2
2
|
requires = [
|
|
3
|
-
"setuptools
|
|
3
|
+
"setuptools==68",
|
|
4
4
|
"wheel",
|
|
5
5
|
]
|
|
6
6
|
build-backend = "setuptools.build_meta"
|
|
7
7
|
|
|
8
8
|
[project]
|
|
9
9
|
name = "rednote-cli"
|
|
10
|
-
version = "0.1.
|
|
10
|
+
version = "0.1.1"
|
|
11
11
|
description = "Rednote platform CLI"
|
|
12
12
|
readme = "README.md"
|
|
13
|
-
requires-python = "
|
|
13
|
+
requires-python = "==3.12"
|
|
14
14
|
dependencies = [
|
|
15
|
-
"playwright==1.
|
|
16
|
-
"playwright-stealth==2.0.
|
|
17
|
-
"yt-dlp==
|
|
18
|
-
"
|
|
19
|
-
"
|
|
20
|
-
"
|
|
15
|
+
"playwright==1.58.0",
|
|
16
|
+
"playwright-stealth==2.0.2",
|
|
17
|
+
"yt-dlp==2026.2.21",
|
|
18
|
+
"requests==2.32.5",
|
|
19
|
+
"pydantic==2.12.5",
|
|
20
|
+
"typer==0.24.1",
|
|
21
|
+
"click==8.3.1",
|
|
22
|
+
"rich==14.3.3",
|
|
21
23
|
"loguru==0.7.3",
|
|
22
|
-
"croniter==6.0.0",
|
|
23
|
-
"fake_useragent==2.2.0",
|
|
24
24
|
]
|
|
25
25
|
|
|
26
26
|
[project.scripts]
|
|
@@ -1,18 +1,9 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
2
|
Name: rednote-cli
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.1
|
|
4
4
|
Summary: Rednote platform CLI
|
|
5
|
-
Requires-Python:
|
|
5
|
+
Requires-Python: ==3.12
|
|
6
6
|
Description-Content-Type: text/markdown
|
|
7
|
-
Requires-Dist: playwright==1.57.0
|
|
8
|
-
Requires-Dist: playwright-stealth==2.0.0
|
|
9
|
-
Requires-Dist: yt-dlp==2025.12.8
|
|
10
|
-
Requires-Dist: pydantic==2.12.2
|
|
11
|
-
Requires-Dist: typer>=0.12.0
|
|
12
|
-
Requires-Dist: rich>=13.7.0
|
|
13
|
-
Requires-Dist: loguru==0.7.3
|
|
14
|
-
Requires-Dist: croniter==6.0.0
|
|
15
|
-
Requires-Dist: fake_useragent==2.2.0
|
|
16
7
|
|
|
17
8
|
# rednote-cli
|
|
18
9
|
|
|
@@ -21,6 +12,10 @@ Rednote 平台专用 CLI 包(独立安装、独立升级)。
|
|
|
21
12
|
## 安装
|
|
22
13
|
|
|
23
14
|
```bash
|
|
15
|
+
brew install pipx
|
|
16
|
+
pipx ensurepath
|
|
17
|
+
exec zsh
|
|
18
|
+
|
|
24
19
|
pipx install rednote-cli
|
|
25
20
|
```
|
|
26
21
|
|
|
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
|
{rednote_cli-0.1.0 → rednote-cli-0.1.1}/src/rednote_cli/_runtime/platforms/publishing/__init__.py
RENAMED
|
File without changes
|
{rednote_cli-0.1.0 → rednote-cli-0.1.1}/src/rednote_cli/_runtime/platforms/publishing/media.py
RENAMED
|
File without changes
|
{rednote_cli-0.1.0 → rednote-cli-0.1.1}/src/rednote_cli/_runtime/platforms/publishing/models.py
RENAMED
|
File without changes
|
{rednote_cli-0.1.0 → rednote-cli-0.1.1}/src/rednote_cli/_runtime/platforms/publishing/validator.py
RENAMED
|
File without changes
|
|
File without changes
|
{rednote_cli-0.1.0 → rednote-cli-0.1.1}/src/rednote_cli/_runtime/services/scraper_service.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{rednote_cli-0.1.0 → rednote-cli-0.1.1}/src/rednote_cli/adapters/persistence/file_account_repo.py
RENAMED
|
File without changes
|
|
File without changes
|
{rednote_cli-0.1.0 → rednote-cli-0.1.1}/src/rednote_cli/adapters/platform/rednote/__init__.py
RENAMED
|
File without changes
|
{rednote_cli-0.1.0 → rednote-cli-0.1.1}/src/rednote_cli/adapters/platform/rednote/extractor.py
RENAMED
|
File without changes
|
{rednote_cli-0.1.0 → rednote-cli-0.1.1}/src/rednote_cli/adapters/platform/rednote/publisher.py
RENAMED
|
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
|
{rednote_cli-0.1.0 → rednote-cli-0.1.1}/src/rednote_cli/application/use_cases/account_list.py
RENAMED
|
File without changes
|
{rednote_cli-0.1.0 → rednote-cli-0.1.1}/src/rednote_cli/application/use_cases/account_mutation.py
RENAMED
|
File without changes
|
|
File without changes
|
{rednote_cli-0.1.0 → rednote-cli-0.1.1}/src/rednote_cli/application/use_cases/auth_status.py
RENAMED
|
File without changes
|
|
File without changes
|
{rednote_cli-0.1.0 → rednote-cli-0.1.1}/src/rednote_cli/application/use_cases/init_runtime.py
RENAMED
|
File without changes
|
|
File without changes
|
{rednote_cli-0.1.0 → rednote-cli-0.1.1}/src/rednote_cli/application/use_cases/note_search.py
RENAMED
|
File without changes
|
{rednote_cli-0.1.0 → rednote-cli-0.1.1}/src/rednote_cli/application/use_cases/publish_note.py
RENAMED
|
File without changes
|
|
File without changes
|
{rednote_cli-0.1.0 → rednote-cli-0.1.1}/src/rednote_cli/application/use_cases/user_search.py
RENAMED
|
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
|
|
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
|