You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
*[Implementation Notes and dependencies](#Implementation-Notes)
22
22
23
23
# Usage
24
+
25
+
## Getting Started with Poetry
26
+
27
+
Make sure poetry is installed and version 2.1.1 or later. See https://python-poetry.org/docs/.
28
+
29
+
```bash
30
+
poetry update
31
+
poetry build
32
+
make check
33
+
```
34
+
35
+
You should see all the unit tests pass.
36
+
37
+
```bash
38
+
poetry run manifest_writer --help
39
+
```
40
+
41
+
This command should display the help menu from the ccnpy command. It may also display some warnings about pyproject.toml. If you see the help menu, you are ready to proceed.
42
+
43
+
24
44
## Application Interface
25
45
26
46
* ccnpy.apps.manifest_writer: slice up a file into nameless data content objects and organize them into a manifest tree.
0 commit comments