appflowy-cli 0.4.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.
@@ -0,0 +1,16 @@
1
+ .venv/
2
+ .venv-*/
3
+ __pycache__/
4
+ *.py[cod]
5
+ .env
6
+ .idea
7
+ dist/
8
+ build/
9
+ *.egg-info/
10
+ .pytest_cache/
11
+ .ruff_cache/
12
+ .mypy_cache/
13
+ .env
14
+ .mcp.json
15
+ # Added by code-review-graph
16
+ .code-review-graph/
@@ -0,0 +1,23 @@
1
+ Metadata-Version: 2.4
2
+ Name: appflowy-cli
3
+ Version: 0.4.1
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.4.1
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
+ Credentials 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
@@ -0,0 +1,13 @@
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
+ Credentials 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
@@ -0,0 +1,8 @@
1
+ """appflowy-cli: standalone entry point for the AppFlowy CLI.
2
+
3
+ All functionality lives in appflowy-mcp (appflowy_mcp.cli); this package
4
+ just gives the CLI its own name on PyPI so `uvx appflowy-cli` works.
5
+ """
6
+ from appflowy_mcp.cli import main
7
+
8
+ __all__ = ["main"]
@@ -0,0 +1,23 @@
1
+ [project]
2
+ name = "appflowy-cli"
3
+ version = "0.4.1"
4
+ description = "Command-line client for AppFlowy: export, import, search, and manage workspaces"
5
+ readme = "README.md"
6
+ requires-python = ">=3.14,<3.15"
7
+ dependencies = [
8
+ "appflowy-mcp>=0.4.1",
9
+ ]
10
+
11
+ [project.scripts]
12
+ appflowy-cli = "appflowy_cli:main"
13
+
14
+ [project.urls]
15
+ Homepage = "https://github.com/weironz/appflowy_mcp"
16
+ Repository = "https://github.com/weironz/appflowy_mcp"
17
+
18
+ [build-system]
19
+ requires = ["hatchling"]
20
+ build-backend = "hatchling.build"
21
+
22
+ [tool.hatch.build.targets.wheel]
23
+ packages = ["appflowy_cli"]