A helper tool to design CG Pipeline interactive diagramas and data flow documentation

A packaged binary version is provided as a release thanks to PyInstaller!
At the moment I'm only making it for Windows, mostly for testing.
Download it from Release here!
Pipeline can be many things ranging from Tasks, DCC's and Tools, but personally I find it that at its core, Pipeline is mostly about the flow of data, and its main building blocks are just a bunch of processes with inputs and outputs (Loaders and Publishers)
While Pipeline diagrams can be made out from any diagraming software, there is none that comes with certain preconfigured concepts from our industry, and I also think that Node networks are the best way to represet that idea of "a bunch of processes with inputs and outputs"
What if there is a tool that offers:
All that is what Plumber Manager its aming to offer.
And if you have an idea for something else, create a feature request in the form of an issue !
It also uses a modified version of Nodz as a git submodule
After clonning the repo, initialize the corresponding git submodule for Nodz
git submodule init
Install the dependencies on the requirements.txt file
python -m pip install requirements.txt
To start PlumberManager just run the run.py script
python /PlumberManager/run.py
This project its intended to be used directly and it the most simple way, and that its easier if its distributed as a single executable package
The binary release its done with PyInstaller and the .spec file its included in the repo
To create a build from source just make sure to have PyInstaller
pip install pyinstaller
And run the packaging using the included .spec file
pyinstaller /PlumberManager/.spec