appflowy-cli 0.4.1__tar.gz → 0.5.0__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.
- {appflowy_cli-0.4.1 → appflowy_cli-0.5.0}/PKG-INFO +3 -3
- {appflowy_cli-0.4.1 → appflowy_cli-0.5.0}/README.md +1 -1
- {appflowy_cli-0.4.1 → appflowy_cli-0.5.0}/pyproject.toml +2 -2
- {appflowy_cli-0.4.1 → appflowy_cli-0.5.0}/.gitignore +0 -0
- {appflowy_cli-0.4.1 → appflowy_cli-0.5.0}/appflowy_cli/__init__.py +0 -0
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: appflowy-cli
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.5.0
|
|
4
4
|
Summary: Command-line client for AppFlowy: export, import, search, and manage workspaces
|
|
5
5
|
Project-URL: Homepage, https://github.com/weironz/appflowy_mcp
|
|
6
6
|
Project-URL: Repository, https://github.com/weironz/appflowy_mcp
|
|
7
7
|
Requires-Python: <3.15,>=3.14
|
|
8
|
-
Requires-Dist: appflowy-mcp>=0.
|
|
8
|
+
Requires-Dist: appflowy-mcp>=0.5.0
|
|
9
9
|
Description-Content-Type: text/markdown
|
|
10
10
|
|
|
11
11
|
# appflowy-cli
|
|
@@ -18,6 +18,6 @@ uvx appflowy-cli export-workspace <workspace-id> -o ./backup
|
|
|
18
18
|
echo "# Note" | uvx appflowy-cli save <workspace-id> <parent-id> "Title"
|
|
19
19
|
```
|
|
20
20
|
|
|
21
|
-
|
|
21
|
+
Authenticate with `uvx appflowy-cli login` (saves session tokens, never the password, to `~/.config/appflowy-cli/`), or via `APPFLOWY_EMAIL` / `APPFLOWY_PASSWORD` / `APPFLOWY_BASE_URL` (or a `.env` file). All commands accept `--json`.
|
|
22
22
|
|
|
23
23
|
This is a thin wrapper; the implementation lives in [`appflowy-mcp`](https://pypi.org/project/appflowy-mcp/). Full documentation: https://github.com/weironz/appflowy_mcp
|
|
@@ -8,6 +8,6 @@ uvx appflowy-cli export-workspace <workspace-id> -o ./backup
|
|
|
8
8
|
echo "# Note" | uvx appflowy-cli save <workspace-id> <parent-id> "Title"
|
|
9
9
|
```
|
|
10
10
|
|
|
11
|
-
|
|
11
|
+
Authenticate with `uvx appflowy-cli login` (saves session tokens, never the password, to `~/.config/appflowy-cli/`), or via `APPFLOWY_EMAIL` / `APPFLOWY_PASSWORD` / `APPFLOWY_BASE_URL` (or a `.env` file). All commands accept `--json`.
|
|
12
12
|
|
|
13
13
|
This is a thin wrapper; the implementation lives in [`appflowy-mcp`](https://pypi.org/project/appflowy-mcp/). Full documentation: https://github.com/weironz/appflowy_mcp
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "appflowy-cli"
|
|
3
|
-
version = "0.
|
|
3
|
+
version = "0.5.0"
|
|
4
4
|
description = "Command-line client for AppFlowy: export, import, search, and manage workspaces"
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
requires-python = ">=3.14,<3.15"
|
|
7
7
|
dependencies = [
|
|
8
|
-
"appflowy-mcp>=0.
|
|
8
|
+
"appflowy-mcp>=0.5.0",
|
|
9
9
|
]
|
|
10
10
|
|
|
11
11
|
[project.scripts]
|
|
File without changes
|
|
File without changes
|