flowpipe
flowpipe copied to clipboard
Very simple flow-based programming framework.
In my project I often have the names of inputs and outputs mentioned three times: - once in the constructor of a node class as `InputPlug("inputName", self)` - once in...
- I added: + type hints + nox to travis to automatically check the type hints + support for python3.7 and removed support for python2.6 - Forget the commits about...
I personally love [type hints](https://mypy.readthedocs.io/en/latest/cheat_sheet_py3.html). They allow for better autocompletion and earlier error detection using [mypy](http://mypy-lang.org/) or PyCharm's integrated checker. Proper type hints require python 3.6 but they can be...
I think it would be cool to add 2 functions to the Graph implementation. To get a list with all of the EntryPointNodes to the graph that are the first...
It would be cool to being able create a flowpipe connection between flowpipe nodes without using the parameters so instead of: `workers.outputs['output'].connect(build_walls.inputs['input'])` using e.g. `workers.connect(build_walls)` This avoids the need to...
Bumps [black](https://github.com/psf/black) from 23.11.0 to 24.3.0. Release notes Sourced from black's releases. 24.3.0 Highlights This release is a milestone: it fixes Black's first CVE security vulnerability. If you run Black...