AnnNet Tutorials¶
This folder contains a small, docs-oriented tutorial sequence for the main public API.
Suggested reading order¶
01_quickstart_graph_basics.ipynb02_attributes_views_and_indexing.ipynb03_slices_and_multilayer_workflows.ipynb04_traversal_and_history.ipynb05_io_and_interoperability.ipynb
Each notebook is intentionally short. The goal is to help a user discover the API quickly, then move to the reference pages for exact signatures.
In [1]:
Copied!
from pathlib import Path
for path in sorted((Path.cwd() / "tutos").glob("*.ipynb")):
print(path.name)
from pathlib import Path
for path in sorted((Path.cwd() / "tutos").glob("*.ipynb")):
print(path.name)
In [ ]:
Copied!