Skip to content

This is a package that helps you combine python scrips using a node system

License

Notifications You must be signed in to change notification settings

meshushkevich/NodeFlow

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Nodeflow


Nodeflow if a framework to make pipelines from nodes. You can implement any logic you want by using Variable, Function and Adapter nodes. Nodeflow support implicit converter for Variables with priority on non-lossy adapters converting pipeline

Installing

Install NodeFlow from PyPI via pip install nodeflow

Usage

To write your own things just implement all required methods in corresponding abstract classes. Example for Variable:

from nodeflow.node.abstract import Variable


class Bool(Variable):
    def __init__(self, value: bool):
        assert isinstance(value, bool)
        super().__init__(value)

About

This is a package that helps you combine python scrips using a node system

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 100.0%