Metadata-Version: 2.4
Name: flyeye-graphs
Version: 0.1.0
Summary: Python loaders for FlyEye connectome profiles and FLYGRAPH binaries
Author: FlyEye
License: MIT
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Provides-Extra: networkx
Requires-Dist: networkx>=3.2; extra == "networkx"

# flyeye-graphs (Python)

Python access to FlyEye aggregate and neuron-level graph assets.

\`\`\`python
from flyeye_graphs import load_neuron_profile, to_networkx

manifest, graph = load_neuron_profile(
    "manifest.json",
    "graph.bin",
)

print(graph.neuron_count, graph.edge_count)
G = to_networkx(graph, manifest)
\`\`\`

The core package uses only the Python standard library. NetworkX support is optional.
