typed-graph

Staticly typed graph library


Keywords
graph, type
License
Apache-2.0
Install
pip install typed-graph==0.2.0

Documentation

typed_graph

Graph data structure with an enforcable schema

Crates.io docs.rs

typed_graph is an alternative to petgraph that focuses more on functionality rather than performance.

The main guarantees typed_graph provides:

  • Consistent node and edge weight types
  • Custom keys for all nodes and edges
  • Type safe convertion from one schema to another
  • Simple traversal API
  • Preserves outgoing edge order

Getting Started

For a comprehensive overview on how to setup and use typed_graph see the json_graph example in the example folder

Other crates

  • typed_graph_cli: Provides a language for auto generating staticly typed schemas
  • typed_graph_py: Port of typed_graph to python