Python package to work with webKnossos NML skeleton files
Project description
wknml
Python library for working with webKnossos skeleton annotation files (NML).
Installation
wknml requires Python 3.6+
pip install wknml
Documentation
See docs/wknml.md for an API documentation.
Examples
Some examples to get you started. Make sure to also check the examples
directory:
# Load an NML file
with open("input.nml", "rb") as f:
nml = wknml.parse_nml(f, nml)
# Access the most important properties
print(nml.parameters)
print(nml.trees)
print(nml.branchpoints)
print(nml.comments)
print(nml.groups)
# Iterate over all nodes
for tree in nml.trees:
for node in tree.nodes:
print(tree, node)
# Write a new NML file to disk
with open("out.nml", "wb") as f:
wknml.write_nml(f, nml)
# Convert an NML file with unlinked nodes to one with connected trees
python -m examples.fix_unlinked_nml <unlinked>.nml <fixed>.nml
Development
Make sure to install all the required dependencies using Poetry:
pip install poetry
poetry install
Please, format and test your code changes before merging them.
poetry run black wknml tests examples
poetry run pytest tests
PyPi releases are automatically pushed when creating a new Git tag/Github release. Make sure to bump the package version number manually:
poetry version <patch, minor, major>
If necessary, rebuild the documentation and commit to repository:
poetry run pydoc-markdown -m wknml --render-toc > docs/wknml.md
License
MIT License
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file wknml-1.0.2.tar.gz
.
File metadata
- Download URL: wknml-1.0.2.tar.gz
- Upload date:
- Size: 10.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.4 CPython/3.7.9 Linux/5.4.0-1031-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a21fbd574663c8950f16bfee865bec5fd7557ad93d8368d8795200c89c31914f |
|
MD5 | d3efb25fc1600960c33539cee63a9733 |
|
BLAKE2b-256 | 844ae59750242e4c29faf8c152b058d3314a2a882007bd3f943b5761aca43c3c |
File details
Details for the file wknml-1.0.2-py3-none-any.whl
.
File metadata
- Download URL: wknml-1.0.2-py3-none-any.whl
- Upload date:
- Size: 10.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.4 CPython/3.7.9 Linux/5.4.0-1031-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 37a54677090faa678e34e31dbfc3e5f0b157bab01cfde96ba7c556c8373644c4 |
|
MD5 | eeedc3659e0b7f0cfaff9154494909e1 |
|
BLAKE2b-256 | e3b563ce947ea0b1ccef8febf4db72d016f708bed0c472241d1c25e1a8cc3fb5 |