docmost-cli 0.4.0__py3-none-any.whl
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.
- docmost_cli/__init__.py +5 -0
- docmost_cli/__main__.py +18 -0
- docmost_cli/api/__init__.py +5 -0
- docmost_cli/api/attachments.py +30 -0
- docmost_cli/api/auth.py +202 -0
- docmost_cli/api/client.py +296 -0
- docmost_cli/api/comments.py +103 -0
- docmost_cli/api/pages.py +530 -0
- docmost_cli/api/pagination.py +94 -0
- docmost_cli/api/search.py +40 -0
- docmost_cli/api/spaces.py +141 -0
- docmost_cli/api/users.py +25 -0
- docmost_cli/api/workspace.py +43 -0
- docmost_cli/cli/__init__.py +3 -0
- docmost_cli/cli/attachment.py +30 -0
- docmost_cli/cli/comment.py +83 -0
- docmost_cli/cli/config_cmd.py +143 -0
- docmost_cli/cli/main.py +133 -0
- docmost_cli/cli/page.py +382 -0
- docmost_cli/cli/search.py +33 -0
- docmost_cli/cli/space.py +57 -0
- docmost_cli/cli/sync_cmd.py +122 -0
- docmost_cli/cli/user.py +25 -0
- docmost_cli/cli/workspace.py +40 -0
- docmost_cli/config/__init__.py +23 -0
- docmost_cli/config/settings.py +23 -0
- docmost_cli/config/store.py +160 -0
- docmost_cli/convert/__init__.py +3 -0
- docmost_cli/convert/prosemirror_to_md.py +300 -0
- docmost_cli/models/__init__.py +3 -0
- docmost_cli/models/common.py +3 -0
- docmost_cli/output/__init__.py +17 -0
- docmost_cli/output/formatter.py +85 -0
- docmost_cli/output/tree.py +66 -0
- docmost_cli/py.typed +0 -0
- docmost_cli/sync/__init__.py +57 -0
- docmost_cli/sync/diff.py +156 -0
- docmost_cli/sync/frontmatter.py +152 -0
- docmost_cli/sync/manifest.py +195 -0
- docmost_cli/sync/pull.py +158 -0
- docmost_cli/sync/push.py +374 -0
- docmost_cli-0.4.0.data/data/share/man/man1/docmost-cli-attachment.1 +57 -0
- docmost_cli-0.4.0.data/data/share/man/man1/docmost-cli-comment.1 +92 -0
- docmost_cli-0.4.0.data/data/share/man/man1/docmost-cli-config.1 +127 -0
- docmost_cli-0.4.0.data/data/share/man/man1/docmost-cli-page.1 +412 -0
- docmost_cli-0.4.0.data/data/share/man/man1/docmost-cli-search.1 +90 -0
- docmost_cli-0.4.0.data/data/share/man/man1/docmost-cli-space.1 +111 -0
- docmost_cli-0.4.0.data/data/share/man/man1/docmost-cli-sync.1 +206 -0
- docmost_cli-0.4.0.data/data/share/man/man1/docmost-cli-user.1 +39 -0
- docmost_cli-0.4.0.data/data/share/man/man1/docmost-cli-workspace.1 +68 -0
- docmost_cli-0.4.0.data/data/share/man/man1/docmost-cli.1 +301 -0
- docmost_cli-0.4.0.dist-info/METADATA +241 -0
- docmost_cli-0.4.0.dist-info/RECORD +56 -0
- docmost_cli-0.4.0.dist-info/WHEEL +4 -0
- docmost_cli-0.4.0.dist-info/entry_points.txt +2 -0
- docmost_cli-0.4.0.dist-info/licenses/LICENSE +661 -0
|
@@ -0,0 +1,241 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: docmost-cli
|
|
3
|
+
Version: 0.4.0
|
|
4
|
+
Summary: CLI tool for managing Docmost wiki instances
|
|
5
|
+
Project-URL: Homepage, https://github.com/glinhard/docmost-cli
|
|
6
|
+
Project-URL: Repository, https://github.com/glinhard/docmost-cli
|
|
7
|
+
Project-URL: Issues, https://github.com/glinhard/docmost-cli/issues
|
|
8
|
+
Project-URL: Changelog, https://github.com/glinhard/docmost-cli/blob/main/CHANGELOG.md
|
|
9
|
+
Author-email: Georg <georg@mann-mouse.at>
|
|
10
|
+
License-Expression: AGPL-3.0-or-later
|
|
11
|
+
License-File: LICENSE
|
|
12
|
+
Keywords: cli,docmost,documentation,wiki
|
|
13
|
+
Classifier: Development Status :: 4 - Beta
|
|
14
|
+
Classifier: Environment :: Console
|
|
15
|
+
Classifier: Intended Audience :: Developers
|
|
16
|
+
Classifier: Intended Audience :: System Administrators
|
|
17
|
+
Classifier: License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)
|
|
18
|
+
Classifier: Operating System :: OS Independent
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
22
|
+
Classifier: Topic :: Documentation
|
|
23
|
+
Classifier: Topic :: Utilities
|
|
24
|
+
Classifier: Typing :: Typed
|
|
25
|
+
Requires-Python: >=3.11
|
|
26
|
+
Requires-Dist: httpx<1.0,>=0.27
|
|
27
|
+
Requires-Dist: pydantic-settings<3.0,>=2.0
|
|
28
|
+
Requires-Dist: pydantic<3.0,>=2.0
|
|
29
|
+
Requires-Dist: rich<15.0,>=13.0
|
|
30
|
+
Requires-Dist: tomli-w<2.0,>=1.0
|
|
31
|
+
Requires-Dist: tomli<3.0,>=2.0; python_version < '3.12'
|
|
32
|
+
Requires-Dist: typer<1.0,>=0.12
|
|
33
|
+
Provides-Extra: dev
|
|
34
|
+
Requires-Dist: mypy>=1.10; extra == 'dev'
|
|
35
|
+
Requires-Dist: pytest-cov>=5.0; extra == 'dev'
|
|
36
|
+
Requires-Dist: pytest-httpx>=0.30; extra == 'dev'
|
|
37
|
+
Requires-Dist: pytest>=8.0; extra == 'dev'
|
|
38
|
+
Requires-Dist: ruff>=0.5; extra == 'dev'
|
|
39
|
+
Description-Content-Type: text/markdown
|
|
40
|
+
|
|
41
|
+
# docmost-cli
|
|
42
|
+
|
|
43
|
+
<!-- Badges placeholder -->
|
|
44
|
+
[](https://pypi.org/project/docmost-cli/)
|
|
45
|
+
[](https://pypi.org/project/docmost-cli/)
|
|
46
|
+
[](LICENSE)
|
|
47
|
+
|
|
48
|
+
**A command-line tool for managing Docmost wiki instances from the terminal.**
|
|
49
|
+
|
|
50
|
+
---
|
|
51
|
+
|
|
52
|
+
## Features
|
|
53
|
+
|
|
54
|
+
- **Page CRUD** -- create, read, update, and delete wiki pages with Markdown content
|
|
55
|
+
- **Space management** -- list, create, and update workspaces
|
|
56
|
+
- **Comments** -- add, edit, and list comments on any page
|
|
57
|
+
- **Full-text search** -- search across pages and attachments
|
|
58
|
+
- **ProseMirror conversion** -- automatic conversion between Docmost's ProseMirror JSON and Markdown
|
|
59
|
+
- **Tree view** -- display page hierarchies as indented trees
|
|
60
|
+
- **Configuration profiles** -- manage multiple Docmost instances with named profiles
|
|
61
|
+
- **Edition-agnostic** -- works with both Docmost Enterprise (API key) and Community (email/password)
|
|
62
|
+
- **Unix-friendly output** -- data to stdout, messages to stderr; every command is pipeable
|
|
63
|
+
|
|
64
|
+
## Installation
|
|
65
|
+
|
|
66
|
+
### From PyPI (recommended)
|
|
67
|
+
|
|
68
|
+
```bash
|
|
69
|
+
pip install docmost-cli
|
|
70
|
+
```
|
|
71
|
+
|
|
72
|
+
### With pipx (isolated environment)
|
|
73
|
+
|
|
74
|
+
```bash
|
|
75
|
+
pipx install docmost-cli
|
|
76
|
+
```
|
|
77
|
+
|
|
78
|
+
### From source
|
|
79
|
+
|
|
80
|
+
```bash
|
|
81
|
+
git clone https://github.com/glinhard/docmost-cli.git
|
|
82
|
+
cd docmost-cli
|
|
83
|
+
uv pip install -e .
|
|
84
|
+
```
|
|
85
|
+
|
|
86
|
+
## Quick Start
|
|
87
|
+
|
|
88
|
+
```bash
|
|
89
|
+
# 1. Set up your configuration (interactive wizard)
|
|
90
|
+
docmost-cli config init
|
|
91
|
+
|
|
92
|
+
# 2. Test connectivity and authentication
|
|
93
|
+
docmost-cli config test
|
|
94
|
+
|
|
95
|
+
# 3. List all spaces
|
|
96
|
+
docmost-cli space list
|
|
97
|
+
|
|
98
|
+
# 4. Get a page as Markdown
|
|
99
|
+
docmost-cli page get <page-id>
|
|
100
|
+
|
|
101
|
+
# 5. Create a new page from a Markdown file
|
|
102
|
+
docmost-cli page create <space-slug> --title "My Page" --file content.md
|
|
103
|
+
```
|
|
104
|
+
|
|
105
|
+
## Command Reference
|
|
106
|
+
|
|
107
|
+
| Command | Description |
|
|
108
|
+
|---|---|
|
|
109
|
+
| `docmost-cli config init` | Interactive configuration setup wizard |
|
|
110
|
+
| `docmost-cli config show` | Show current configuration (secrets masked) |
|
|
111
|
+
| `docmost-cli config set <key> <value>` | Set a configuration value |
|
|
112
|
+
| `docmost-cli config test` | Test connectivity and authentication |
|
|
113
|
+
| `docmost-cli page list <space-slug>` | List pages in a space (`--tree`, `--json`) |
|
|
114
|
+
| `docmost-cli page get <page-id>` | Get page content as Markdown (`--meta`, `--raw`) |
|
|
115
|
+
| `docmost-cli page create <space-slug>` | Create a new page (`--title`, `--file`, `--stdin`) |
|
|
116
|
+
| `docmost-cli page update <page-id>` | Update a page (`--title`, `--content`, `--file`) |
|
|
117
|
+
| `docmost-cli page delete <page-id>` | Delete a page (with confirmation, `--yes` to skip) |
|
|
118
|
+
| `docmost-cli page move <page-id>` | Move a page (`--parent`, `--space`, `--position`) |
|
|
119
|
+
| `docmost-cli page duplicate <page-id>` | Duplicate a page |
|
|
120
|
+
| `docmost-cli page copy <page-id>` | Copy a page to another space (`--space`) |
|
|
121
|
+
| `docmost-cli page children <page-id>` | List child pages (`--json`) |
|
|
122
|
+
| `docmost-cli page history <page-id>` | Show page version history (`--json`) |
|
|
123
|
+
| `docmost-cli page export <page-id>` | Export page (`--format md\|html`, `--output`) |
|
|
124
|
+
| `docmost-cli page import <space-slug>` | Import a Markdown file as a new page |
|
|
125
|
+
| `docmost-cli space list` | List all spaces (`--detail`, `--json`) |
|
|
126
|
+
| `docmost-cli space get <space-slug>` | Get space details |
|
|
127
|
+
| `docmost-cli space create` | Create a new space (`--name`, `--slug`) |
|
|
128
|
+
| `docmost-cli space update <space-slug>` | Update a space (`--name`, `--description`) |
|
|
129
|
+
| `docmost-cli comment list <page-id>` | List comments on a page (`--json`) |
|
|
130
|
+
| `docmost-cli comment create <page-id>` | Add a comment (`--content`) |
|
|
131
|
+
| `docmost-cli comment update <comment-id>` | Edit a comment (`--content`) |
|
|
132
|
+
| `docmost-cli search <query>` | Full-text search (`--space`, `--limit`, `--json`) |
|
|
133
|
+
| `docmost-cli attachment search <query>` | Search attachments (`--space`) |
|
|
134
|
+
| `docmost-cli workspace info` | Show workspace details |
|
|
135
|
+
| `docmost-cli workspace members` | List workspace members (`--json`) |
|
|
136
|
+
| `docmost-cli user me` | Show authenticated user info |
|
|
137
|
+
|
|
138
|
+
## Configuration
|
|
139
|
+
|
|
140
|
+
### Config file location
|
|
141
|
+
|
|
142
|
+
```
|
|
143
|
+
~/.config/docmost-cli/config.toml
|
|
144
|
+
```
|
|
145
|
+
|
|
146
|
+
Override with `--config /path/to/config.toml` on any command.
|
|
147
|
+
|
|
148
|
+
### Profiles
|
|
149
|
+
|
|
150
|
+
The config file supports multiple named profiles for managing different Docmost instances:
|
|
151
|
+
|
|
152
|
+
```toml
|
|
153
|
+
[default]
|
|
154
|
+
url = "https://docs.example.com"
|
|
155
|
+
api_key = "dm_xxxxxxxxxxxxxxxxxxxx"
|
|
156
|
+
|
|
157
|
+
[staging]
|
|
158
|
+
url = "https://staging-docs.example.com"
|
|
159
|
+
api_key = "dm_yyyyyyyyyyyyyyyyyyyy"
|
|
160
|
+
```
|
|
161
|
+
|
|
162
|
+
Switch profiles with `--profile` or `-p`:
|
|
163
|
+
|
|
164
|
+
```bash
|
|
165
|
+
docmost-cli --profile staging space list
|
|
166
|
+
```
|
|
167
|
+
|
|
168
|
+
### Environment variables
|
|
169
|
+
|
|
170
|
+
All configuration values can be overridden via environment variables:
|
|
171
|
+
|
|
172
|
+
| Variable | Description |
|
|
173
|
+
|---|---|
|
|
174
|
+
| `DOCMOST_URL` | Docmost instance URL |
|
|
175
|
+
| `DOCMOST_API_KEY` | API key (Enterprise edition) |
|
|
176
|
+
| `DOCMOST_EMAIL` | Login email (Community edition) |
|
|
177
|
+
| `DOCMOST_PASSWORD` | Login password (Community edition) |
|
|
178
|
+
| `DOCMOST_PROFILE` | Active profile name |
|
|
179
|
+
|
|
180
|
+
Environment variables take precedence over config file values.
|
|
181
|
+
|
|
182
|
+
## Authentication
|
|
183
|
+
|
|
184
|
+
### Enterprise edition (API key)
|
|
185
|
+
|
|
186
|
+
Use an API key for authentication. Set it in the config file or via `DOCMOST_API_KEY`:
|
|
187
|
+
|
|
188
|
+
```bash
|
|
189
|
+
docmost-cli config set api_key "dm_xxxxxxxxxxxxxxxxxxxx"
|
|
190
|
+
```
|
|
191
|
+
|
|
192
|
+
### Community edition (email/password)
|
|
193
|
+
|
|
194
|
+
Use email and password for session-based authentication:
|
|
195
|
+
|
|
196
|
+
```bash
|
|
197
|
+
docmost-cli config set email "user@example.com"
|
|
198
|
+
docmost-cli config set password "secret"
|
|
199
|
+
```
|
|
200
|
+
|
|
201
|
+
The CLI automatically detects which auth method to use: if `api_key` is present it uses token auth, otherwise it falls back to email/password session auth.
|
|
202
|
+
|
|
203
|
+
## Tab Completion
|
|
204
|
+
|
|
205
|
+
Enable shell tab completion for all commands and options:
|
|
206
|
+
|
|
207
|
+
```bash
|
|
208
|
+
docmost-cli --install-completion
|
|
209
|
+
```
|
|
210
|
+
|
|
211
|
+
Supports bash, zsh, fish, and PowerShell.
|
|
212
|
+
|
|
213
|
+
## Development
|
|
214
|
+
|
|
215
|
+
```bash
|
|
216
|
+
# Clone and install in development mode
|
|
217
|
+
git clone https://github.com/glinhard/docmost-cli.git
|
|
218
|
+
cd docmost-cli
|
|
219
|
+
uv pip install -e ".[dev]"
|
|
220
|
+
|
|
221
|
+
# Run tests
|
|
222
|
+
pytest
|
|
223
|
+
|
|
224
|
+
# Run tests with coverage
|
|
225
|
+
pytest --cov=docmost_cli
|
|
226
|
+
|
|
227
|
+
# Linting and formatting
|
|
228
|
+
ruff check src/ tests/
|
|
229
|
+
ruff format src/ tests/
|
|
230
|
+
|
|
231
|
+
# Type checking
|
|
232
|
+
mypy src/
|
|
233
|
+
```
|
|
234
|
+
|
|
235
|
+
## Acknowledgments
|
|
236
|
+
|
|
237
|
+
This CLI is a third-party tool for [Docmost](https://docmost.com), an open-source collaborative wiki and documentation platform — an alternative to Confluence and Notion. Docmost is created by [@Philipinho](https://github.com/Philipinho) and [contributors](https://github.com/docmost/docmost/graphs/contributors), licensed under [AGPL-3.0](https://github.com/docmost/docmost/blob/main/LICENSE).
|
|
238
|
+
|
|
239
|
+
## License
|
|
240
|
+
|
|
241
|
+
AGPL-3.0. See [LICENSE](LICENSE) for details.
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
docmost_cli/__init__.py,sha256=e7oAaMunhSGKygdQffkxJuJk6fV_d1pbc14UO1L7_zw,115
|
|
2
|
+
docmost_cli/__main__.py,sha256=wda-6iOudWQWrwRqGebaDfjBlz4z9wcEzAJPky5KJxQ,569
|
|
3
|
+
docmost_cli/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
|
+
docmost_cli/api/__init__.py,sha256=K7Mx3WmgxsoI86NQxzrg5HMPGQiNIUdMTBNm1q_W_rs,126
|
|
5
|
+
docmost_cli/api/attachments.py,sha256=L0EW4j7sx2Q5QdjWY8QrOA2NbA-WLWaeG5qSDYMx1Gc,714
|
|
6
|
+
docmost_cli/api/auth.py,sha256=Enc67TzPfFa2gPLMKVWlh5Zyg-zjgpVCgzxd93_wJys,6525
|
|
7
|
+
docmost_cli/api/client.py,sha256=yZBNIN8syzlEowMqZWwraeoLSPwmjmNUQQW1atvLtf8,9831
|
|
8
|
+
docmost_cli/api/comments.py,sha256=t2i8O8pzwSR_sb7GORFZKZMDZ-VnytNZH0yxsH1jIG0,2452
|
|
9
|
+
docmost_cli/api/pages.py,sha256=EKAumvxwqpuvdIlD8YZOhtYS9AIwKTv1JbuHDsBKJmw,15220
|
|
10
|
+
docmost_cli/api/pagination.py,sha256=ZrfmRifEakzPsorKiMYflFw22Q_tgBqL2CyTWrjm02M,2904
|
|
11
|
+
docmost_cli/api/search.py,sha256=QLGEA4V-LeI0A-SohNOigL0-zT8XEeMC_0NEy3Jgkg4,994
|
|
12
|
+
docmost_cli/api/spaces.py,sha256=bECdd1MonSUqG6Cycxzaj0C5aBGZthwV-cebzYJUSAg,3511
|
|
13
|
+
docmost_cli/api/users.py,sha256=NCSLC_hR2861dHwQrnhgBIoshlzzit_O_RuzU5ktbnA,554
|
|
14
|
+
docmost_cli/api/workspace.py,sha256=4RijK84kcyWUEqYgGCpNph5_Q6QGcHnUfBTwnDkz5Gk,1022
|
|
15
|
+
docmost_cli/cli/__init__.py,sha256=S35q33aDXlZ6raNIFnMPpYUrG4N873nYky8l3kD4-8k,52
|
|
16
|
+
docmost_cli/cli/attachment.py,sha256=P-rd1FoiHO5FaPz9aaRhFIiPbaZQfD5RQfxxQZhTbCw,1063
|
|
17
|
+
docmost_cli/cli/comment.py,sha256=DQOzei0qo7IRAcb0wJANfu8C3tW0CaqrzKOQjUvhLq0,2676
|
|
18
|
+
docmost_cli/cli/config_cmd.py,sha256=gaSf22NJuKdPvhD5t09G1ZzHMQ4A_Re_mfQvJ-5tq-8,4608
|
|
19
|
+
docmost_cli/cli/main.py,sha256=UQ4nqmhZ_o6b5oXoWcCnjZRZOpJYxwTZmfQ-EH9mAkQ,3866
|
|
20
|
+
docmost_cli/cli/page.py,sha256=olrJXtP78xat-7vCn2m1uJghNbLR79LV9wXF-TAVpao,13057
|
|
21
|
+
docmost_cli/cli/search.py,sha256=1sVuCTd5_g-fWtkgQ8KkVIXjoNrJTBLZLzmc20dJSdQ,1235
|
|
22
|
+
docmost_cli/cli/space.py,sha256=LD3qlWfIoj7TMqoKRPd4bDkQzOI2QpKdXZ_Nptmja_A,2030
|
|
23
|
+
docmost_cli/cli/sync_cmd.py,sha256=4FDHVbz-NcqWOhMDtowmqksSAaATo8WnzHIsRvzrAio,4462
|
|
24
|
+
docmost_cli/cli/user.py,sha256=9JBGF1exU6keWduyIWh8USg6h02KeTX8u6zyKZj5qYM,648
|
|
25
|
+
docmost_cli/cli/workspace.py,sha256=etbtHqnSCQ3eehFSNh2CYeqfoLrBytFu3pFuh-RvvwY,1299
|
|
26
|
+
docmost_cli/config/__init__.py,sha256=BDPNtI9Y2sVv3r14NAKfrU7agYKhTICCawZ_-PP0caY,486
|
|
27
|
+
docmost_cli/config/settings.py,sha256=kg0skvXGat4HU2Z-oeup2xBzLfQQa550UGKGSSkilhw,601
|
|
28
|
+
docmost_cli/config/store.py,sha256=FwEhNm8CgxqIjR0QSq6R3VRQ6A_MFaV6gl5tRNuqqYU,4729
|
|
29
|
+
docmost_cli/convert/__init__.py,sha256=sWLE_uONPznDXNmLaJ9axri1ybULY064oxZEI2Wos8g,68
|
|
30
|
+
docmost_cli/convert/prosemirror_to_md.py,sha256=ihFyRniuHr9p6LMWenOf1GIGua7Axy2n1JBvG1FjLbI,10695
|
|
31
|
+
docmost_cli/models/__init__.py,sha256=GVv82YIdL2LniOrAJdtnufyVky-8ZYSWxAEbc6VYhU4,75
|
|
32
|
+
docmost_cli/models/common.py,sha256=PQOXYnEAaVCxcrN8pHxYFjc5Mc_8dlzzCHID2Aa3aQw,75
|
|
33
|
+
docmost_cli/output/__init__.py,sha256=-CGzyRNqvDrOY2zK6y7hUGmfdAVkxRLXSDg9vrBECnk,347
|
|
34
|
+
docmost_cli/output/formatter.py,sha256=hybpAtsmEPD4gWSreymiEUichBsJBwa96octIGG_CMU,2429
|
|
35
|
+
docmost_cli/output/tree.py,sha256=JCbf3wnlc7rnNTt0eLm7P1r2auIw2prMX57Rcu_ZVWk,1816
|
|
36
|
+
docmost_cli/sync/__init__.py,sha256=Hsehefeh1sqkv4vsBXnQDBeMfTVXbXek0MUnps9NN3k,1154
|
|
37
|
+
docmost_cli/sync/diff.py,sha256=hPcOMWCVHXE0bMcEqMbY44WjFIM_6PhzOLgJ23SVJTw,5197
|
|
38
|
+
docmost_cli/sync/frontmatter.py,sha256=wmE3G-Y6CxHG7zcp41yKmgo1SQkZiV4kkQpAcWz_PDY,4575
|
|
39
|
+
docmost_cli/sync/manifest.py,sha256=yxDMGYLwOn0bnFWnBaZjGmFisisWaAk0Jv9F2HSHzg8,5736
|
|
40
|
+
docmost_cli/sync/pull.py,sha256=i4sDEQ0rmLS9fF8VYoMYeUX9ud9-ZOj0vA3S29UjKPs,4947
|
|
41
|
+
docmost_cli/sync/push.py,sha256=jcDK5NPfvcButeuo39QkE6p_uqSAUvz07pue3qieOzw,12139
|
|
42
|
+
docmost_cli-0.4.0.data/data/share/man/man1/docmost-cli-attachment.1,sha256=RCBJi58n2La3OkuELWIGkn7Gkwjb2-lL-2ai0ful55I,1261
|
|
43
|
+
docmost_cli-0.4.0.data/data/share/man/man1/docmost-cli-comment.1,sha256=8zg2qg9t3h4LIxaaXo3tESlN6wpsmJ5uIJq1rqQejYQ,1933
|
|
44
|
+
docmost_cli-0.4.0.data/data/share/man/man1/docmost-cli-config.1,sha256=YsQHIt0UuPaACdixon4wl_DZmL-D2ttve8BcRc5wSVc,2577
|
|
45
|
+
docmost_cli-0.4.0.data/data/share/man/man1/docmost-cli-page.1,sha256=Do_8e5u_LsylhWVO23Q_iozSMelm0XHToNXm0B8Nlt8,7768
|
|
46
|
+
docmost_cli-0.4.0.data/data/share/man/man1/docmost-cli-search.1,sha256=SLAz-_jDBmfWz_NG7JTP4MrmiN0Bu0c5VsMF2AzFQ3U,1757
|
|
47
|
+
docmost_cli-0.4.0.data/data/share/man/man1/docmost-cli-space.1,sha256=RNIZBz_-lgtnOuX-OXKlsl72CX7iyS4QerlSUuwPM_c,2189
|
|
48
|
+
docmost_cli-0.4.0.data/data/share/man/man1/docmost-cli-sync.1,sha256=Gf3QjJpQGOK0W7v9MCoAp2efwzxicFYHmCLqPUdBh_8,4384
|
|
49
|
+
docmost_cli-0.4.0.data/data/share/man/man1/docmost-cli-user.1,sha256=4O67BbAzeLjZaGsLBxu17EmTHEUUH1nQYzVzSzUw5i8,1007
|
|
50
|
+
docmost_cli-0.4.0.data/data/share/man/man1/docmost-cli-workspace.1,sha256=67r3f6YimP3yqzJ8hgtvRxK2vUxtOX3XZ4_7Fx8hgm4,1424
|
|
51
|
+
docmost_cli-0.4.0.data/data/share/man/man1/docmost-cli.1,sha256=18Wp_-uuQ74SwgUlLibU1i7996q-4ZgI2KN_yJA3xKA,6890
|
|
52
|
+
docmost_cli-0.4.0.dist-info/METADATA,sha256=ZaMGbkOAKCrasO5QkfWwVQJUNKdWt25kQsvOq_6TfuM,8248
|
|
53
|
+
docmost_cli-0.4.0.dist-info/WHEEL,sha256=QccIxa26bgl1E6uMy58deGWi-0aeIkkangHcxk2kWfw,87
|
|
54
|
+
docmost_cli-0.4.0.dist-info/entry_points.txt,sha256=_1F-BcaNNqO_Ky9nh_wikRoFACDpcN020tP15kKgaNQ,57
|
|
55
|
+
docmost_cli-0.4.0.dist-info/licenses/LICENSE,sha256=DZak_2itbUtvHzD3E7GNUYSRK6jdOJ-GqncQ2weavLA,34523
|
|
56
|
+
docmost_cli-0.4.0.dist-info/RECORD,,
|