Metadata-Version: 2.1
Name: ryvencore
Version: 0.3.1.1
Summary: Python backend for node editor-like graph-based processing
Home-page: https://github.com/leon-thomm/ryvencore
Author: Leon Thomm
Author-email: l.thomm@mailbox.org
License: UNKNOWN
Project-URL: Website, https://ryven.org
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE


<p align="center">
  <img src="./docs/img/logo.png" alt="drawing" width="70%"/>
</p>

Python backend for graph-based processing, designed for flow-based/node-based visual scripting editors. It is the backbone of the [Ryven](https://github.com/leon-thomm/Ryven) project, but it can be used for other applications as well.

If you are not already familiar with flow-based visual scripting and are looking for a specification, see [here](https://leon-thomm.github.io/ryvencore-qt/).

### Installation

```
pip install ryvencore
```

or from sources:
```
git clone https://github.com/leon-thomm/ryvencore
cd ryvencore
pip install .
```

### Dependencies

None! ryvencore runs completely on standard python modules, no additional libraries required, which makes it very compatible.

<!-- *I am therefore thinking about extending the implementation to compile with Cython. While the overhead produced by the internal graph representation compared to only executing python code specified in the nodes' `update_event` does not dominate, efficient Cython support might lead to speedup of another ~20%-40%.* -->

### Usage

Using ryvencore directly to run projects made with ryvencore-based editors, the following code example gives some intuition about the process:

```python
import ryvencore as rc
import json
import sys

if __name__ == '__main__':
    # get a working project file path
    if len(sys.argv) < 2:
        sys.exit('please provide a project file path')
    fpath = sys.argv[1]
    try:
        f = open(fpath)
        f.close()
    except FileNotFoundError:
        sys.exit(f'could not open file {fpath}')
    
    # read project file
    with open(fpath, 'r') as f:
        project: dict = json.loads(f.read())
    
    # run ryvencore
    session = rc.Session()
    session.load(project)

    # and now we can manually access all components, for example:
    scripts = session.scripts
    flow1 = scripts[0].flow
    my_node = flow1.nodes[-1]
    my_node.update()
```

You can also use it for other purposes. A mostly auto-generated documentation is available [here](https://leon-thomm.github.io/ryvencore/).

### Main Features

- **load & save** into and from JSON-compatible dictionaries
- **variables system** with update mechanism to build nodes that automatically adapt to change of data
- **built in logging** based on python's `logging` module
- **powerful nodes system** which lets you do anything, simple and unrestricted
- **dynamic nodes registration mechanism** to register and unregister nodes at runtime
- **actions system for nodes**
- **data *and* exec flow support** - unlike lots of other solutions out there, ryvencore supports exec flows

For a more detailed overview, see the [docs](https://leon-thomm.github.io/ryvencore-qt/#/features).


