Skip to content

GeigerJ2/node-graph

 
 

Repository files navigation

NodeGraph

PyPI version CI codecov Docs status

A platform for designing node-based workflows.

    pip install --upgrade --user node_graph

Documentation

Check the docs and learn about the features.

Examples

A simple math calculation

from node_graph import NodeGraph
ng = NodeGraph(name="example")
add1 = ng.add_node("node_graph.test_add", x=1, y=2)
add2 = ng.add_node("node_graph.test_add", x=3)
ng.add_link(add1.outputs.result, add2.inputs.y)
ntdata = ng.to_dict()

License

MIT

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%