Metadata-Version: 2.1
Name: cflw
Version: 0.3.0
Summary: Control flow framework for running of state graphs
Author-email: "Th. Pitschel" <none@example.org>
Project-URL: Homepage, https://codeberg.org/thpit/cflw/
Project-URL: Bug Tracker, https://codeberg.org/thpit/cflw/
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Classifier: Intended Audience :: Financial and Insurance Industry
Classifier: Intended Audience :: Healthcare Industry
Classifier: Intended Audience :: Information Technology
Classifier: Intended Audience :: Science/Research
Classifier: Topic :: Utilities
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

## cflw

A langgraph alternative, fixing an issue of the original.

Advantages:

* lean implementation
* customization towards production, with useful features
* multi-developer scenarios taken into account

Code sketch:

    graph = StateGraph()
    graph.add_node(AllNodes.node1)
    graph.add_node(AllNodes.node2)
    graph.add_edge(AllNodes.node1, AllNodes.node2)
    state = CfState()
    ctx = CfCtx()
    rr = GraphRunner().run(graph, state, ctx)


This is a stub.


### License

This package is a stub. A license is not determined yet; in so far
all rights remain reserved.

