appflowy-cli 0.5.0__tar.gz → 0.6.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.6.0/PKG-INFO +26 -0
- appflowy_cli-0.6.0/README.md +16 -0
- {appflowy_cli-0.5.0 → appflowy_cli-0.6.0}/pyproject.toml +2 -2
- appflowy_cli-0.5.0/PKG-INFO +0 -23
- appflowy_cli-0.5.0/README.md +0 -13
- {appflowy_cli-0.5.0 → appflowy_cli-0.6.0}/.gitignore +0 -0
- {appflowy_cli-0.5.0 → appflowy_cli-0.6.0}/appflowy_cli/__init__.py +0 -0
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: appflowy-cli
|
|
3
|
+
Version: 0.6.0
|
|
4
|
+
Summary: Command-line client for AppFlowy: export, import, search, and manage workspaces
|
|
5
|
+
Project-URL: Homepage, https://github.com/weironz/appflowy_mcp
|
|
6
|
+
Project-URL: Repository, https://github.com/weironz/appflowy_mcp
|
|
7
|
+
Requires-Python: <3.15,>=3.14
|
|
8
|
+
Requires-Dist: appflowy-mcp>=0.6.0
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
10
|
+
|
|
11
|
+
# appflowy-cli
|
|
12
|
+
|
|
13
|
+
Command-line client for [AppFlowy](https://github.com/appflowy-io/appflowy): export, import, search, and manage workspaces from scripts or cron.
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
uvx appflowy-cli login # once; saves session tokens (never the password)
|
|
17
|
+
uvx appflowy-cli use test # pick a default workspace
|
|
18
|
+
uvx appflowy-cli ls demo # then address spaces/pages by path
|
|
19
|
+
uvx appflowy-cli export demo/notes -o note.md
|
|
20
|
+
uvx appflowy-cli export -o ./backup # whole workspace
|
|
21
|
+
echo "# Note" | uvx appflowy-cli save demo "Title"
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
Commands: `login`, `logout`, `use`, `workspaces`, `ls`, `tree`, `search`, `export`, `import`, `save`. All accept `--json`; `-w <workspace>` overrides the default per command. Environment variables `APPFLOWY_EMAIL` / `APPFLOWY_PASSWORD` / `APPFLOWY_BASE_URL` are also supported and take priority.
|
|
25
|
+
|
|
26
|
+
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
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# appflowy-cli
|
|
2
|
+
|
|
3
|
+
Command-line client for [AppFlowy](https://github.com/appflowy-io/appflowy): export, import, search, and manage workspaces from scripts or cron.
|
|
4
|
+
|
|
5
|
+
```bash
|
|
6
|
+
uvx appflowy-cli login # once; saves session tokens (never the password)
|
|
7
|
+
uvx appflowy-cli use test # pick a default workspace
|
|
8
|
+
uvx appflowy-cli ls demo # then address spaces/pages by path
|
|
9
|
+
uvx appflowy-cli export demo/notes -o note.md
|
|
10
|
+
uvx appflowy-cli export -o ./backup # whole workspace
|
|
11
|
+
echo "# Note" | uvx appflowy-cli save demo "Title"
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
Commands: `login`, `logout`, `use`, `workspaces`, `ls`, `tree`, `search`, `export`, `import`, `save`. All accept `--json`; `-w <workspace>` overrides the default per command. Environment variables `APPFLOWY_EMAIL` / `APPFLOWY_PASSWORD` / `APPFLOWY_BASE_URL` are also supported and take priority.
|
|
15
|
+
|
|
16
|
+
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.6.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.6.0",
|
|
9
9
|
]
|
|
10
10
|
|
|
11
11
|
[project.scripts]
|
appflowy_cli-0.5.0/PKG-INFO
DELETED
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.4
|
|
2
|
-
Name: appflowy-cli
|
|
3
|
-
Version: 0.5.0
|
|
4
|
-
Summary: Command-line client for AppFlowy: export, import, search, and manage workspaces
|
|
5
|
-
Project-URL: Homepage, https://github.com/weironz/appflowy_mcp
|
|
6
|
-
Project-URL: Repository, https://github.com/weironz/appflowy_mcp
|
|
7
|
-
Requires-Python: <3.15,>=3.14
|
|
8
|
-
Requires-Dist: appflowy-mcp>=0.5.0
|
|
9
|
-
Description-Content-Type: text/markdown
|
|
10
|
-
|
|
11
|
-
# appflowy-cli
|
|
12
|
-
|
|
13
|
-
Command-line client for [AppFlowy](https://github.com/appflowy-io/appflowy): export, import, search, and manage workspaces from scripts or cron.
|
|
14
|
-
|
|
15
|
-
```bash
|
|
16
|
-
uvx appflowy-cli workspaces
|
|
17
|
-
uvx appflowy-cli export-workspace <workspace-id> -o ./backup
|
|
18
|
-
echo "# Note" | uvx appflowy-cli save <workspace-id> <parent-id> "Title"
|
|
19
|
-
```
|
|
20
|
-
|
|
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
|
-
|
|
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
|
appflowy_cli-0.5.0/README.md
DELETED
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
# appflowy-cli
|
|
2
|
-
|
|
3
|
-
Command-line client for [AppFlowy](https://github.com/appflowy-io/appflowy): export, import, search, and manage workspaces from scripts or cron.
|
|
4
|
-
|
|
5
|
-
```bash
|
|
6
|
-
uvx appflowy-cli workspaces
|
|
7
|
-
uvx appflowy-cli export-workspace <workspace-id> -o ./backup
|
|
8
|
-
echo "# Note" | uvx appflowy-cli save <workspace-id> <parent-id> "Title"
|
|
9
|
-
```
|
|
10
|
-
|
|
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
|
-
|
|
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
|
|
File without changes
|
|
File without changes
|