The custom node API allow you to integrate dora into your application. It allows you to retrieve input and send output in any fashion you want.
cd apis/python/node
python3 -m venv .env
source .env/bin/activate
pip install maturin
maturin develop
printer.py:{{#include ../../binaries/coordinator/examples/nodes/python/printer.py}}
{{#include ../../binaries/coordinator/examples/graphs/python_test.yml:12:17}}
The operator API gives you a framework for operator that is going to be managed by dora. This framework enable us to make optimisation and provide advanced features.
op.py:{{#include ../../examples/python-operator/op.py}}
{{#include ../../binaries/coordinator/examples/graphs/mini-dataflow.yml:67:73}}