Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wonderworks-software/pyflow
Visual scripting framework for python - https://wonderworks-software.github.io/PyFlow
https://github.com/wonderworks-software/pyflow
dataflow-programming framework pyflow pyside2 python qt subgraphs
Last synced: about 1 month ago
JSON representation
Visual scripting framework for python - https://wonderworks-software.github.io/PyFlow
- Host: GitHub
- URL: https://github.com/wonderworks-software/pyflow
- Owner: wonderworks-software
- License: apache-2.0
- Created: 2018-01-09T09:05:27.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2024-02-20T23:10:25.000Z (9 months ago)
- Last Synced: 2024-04-06T20:37:25.865Z (7 months ago)
- Topics: dataflow-programming, framework, pyflow, pyside2, python, qt, subgraphs
- Language: Python
- Homepage:
- Size: 166 MB
- Stars: 2,290
- Watchers: 94
- Forks: 288
- Open Issues: 29
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.rst
- Contributing: CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# Overview
**PyFlow** is a general purpose visual scripting framework for python.
## State
Base structure of program implemented, such things as packages discovery,
input customization, exporters, base classes for entities and tools.You can completely remove nodes and tools that ships by default
and start your own library from scratch.You can evaluate programs without running user interface.
We have simple CLI interface and setup.py script.
Expectedly, we faced problems with our runtime execution model,
it is good for certain types of tasks despite it is slow. Also, complicated flow
control requires cycles handling.For example current for loop node implementation
doesn't work well with any kind of `delay` stuff in it's body. Of course it can be solved by adding
more logic to loop processing, but we don't know exactly how to make it efficient yet.## Road map
We will add new types of graphs (undirected graphs, trees)
and algorithms to work with those structures.Code generation is probably the future of PyFlow.
We are going to implement more building blocks.
**Functions** - which unlike subgraphs will have single definition and multiple
entry points across the program.
**Objects** - very important concept of programming in general, object will have own methods,
access levels and variables.
**Events and delegates** - similar to ue4.Application presets and api for writing own presets. Templates like in any IDE (shader, command line tool, software installer, etc.).
Documentation updates.
User interface improvements and new tools to enhance user experience.
We want to have most python standard library wrapped into a nodes!
## Installation
### Manual
1. Clone or download repository.
2. Install requirements `requirements.txt`
3. To run the program in standalone mode, run `pyflow.py`. It can be found in the root folder of repository.
### Or using pip
Latest development version. Contains latest features
```bash
pip install git+https://github.com/wonderworks-software/PyFlow.git@master
```Latest release version
```bash
pip install git+https://github.com/wonderworks-software/PyFlow.git@release
```After package is installed, you can invoke `pyflow.exe` on windows or `pyflow` on unix OS.
Program is located inside `PATH/TO/PYTHON/Scripts`.## Features overview
* **Modular**
*Add own node sets, pins, shelf tools, dock tools, preferences widgets, data exporters/importers*
* **Easy integration**
*PyFlow is a normal python program. It can run under any python environment*
* **Python3 and 2 support**
* **Logic and UI are separated***Main logic elements (Node and Pin) has non gui representation, so programs can be evaluated without GUI*
* **Subgraphs**
*Collapse parts of graphs into subgraphs*
![collapseToCompound](https://i.imgur.com/axtvF2L.gif)
* **Watch what is going on**
![collapseToCompound](https://i.imgur.com/vPYz8vh.gif)
* **Expose properties from subgraphs**
*Any node can share it's properties with owning sub graph node*
![collapseToCompound](https://i.imgur.com/7dxUq52.gif)
* **Subgraphs import/export**
*Share subgraphs with others*
![compoundIO](https://i.imgur.com/ss0pvRJ.gif)
*If compound node was exported to some package, it will appear in node box*
![compoundIO](https://i.imgur.com/vfSnRyN.gif)
* **Python node**
*Write whatever code directly into a node*
![pythonNode](https://i.imgur.com/k9eHIZY.gif)
* **Python node import/export**
*Share python nodes with others*
![pythonNode](https://i.imgur.com/SPEkwbX.gif)
*If python node was exported to some package, it will appear in node box*
![pythonNode](https://i.imgur.com/DofVLfz.gif)
* **Fast node generation from functions**
*Single decorator to expose node from function*
![pythonNode](https://i.imgur.com/3lhthXt.png)
![pythonNode](https://i.imgur.com/9PPFrMP.png)* **Package loading from arbitrary locations**
*Packages can be loaded from provided list of directories. It can be your development folder or folder in network drive inside your studio*
* **Graph commenting**
* Comment node![commentNode](https://i.imgur.com/6DZZlY9.gif)
* Sticky node
![stickyNode](https://i.imgur.com/DFeMiCp.gif)
* **Custom input system**
*If you got used to specific keymap of your software of choice, you can easily remap PyFlow input actions*
![input](https://i.imgur.com/ViVJNcn.gif)
* **Drop on wire**
*Automatically сonnect the node by dragging it onto the wire*
![input](https://i.imgur.com/5kuPPJa.gif)
* **Photoshop-like history**
*Easy to use powerful undo system*
![history](https://i.imgur.com/HmeIoI7.gif)
*By a single line call*
![historyApi](https://i.imgur.com/XlHwAwq.png)
* **Property view**
*Modify node and pins attributes using property panels*
![historyApi](https://i.imgur.com/CWLjUwN.gif)
* **Variables**
*Save arbitrary data into a variables*
![historyApi](https://i.imgur.com/vij0Xux.gif)
* **Editable shareable themes**
*Create and share themes with others*
![historyApi](https://i.imgur.com/NTxhkJI.gif)
* **Data importers/exporters**
*Editor data can be exported/imported to/from arbitrary format*
* **Command line interface**
![cmdHelp](https://i.imgur.com/Hi02T9a.png)
*Exported programs can be edited and evaluated from command line without gui*
![cmdAddition](https://i.imgur.com/L49OuWa.png)
![cmdHelp](https://i.imgur.com/5IMWaqx.png)* **Convenient wires interaction**
![wiresConnect](https://i.imgur.com/RTrAX2G.gif)
* **Wire styles**
![wiresConnect](https://i.imgur.com/qVqAaL6.gif)
![wiresConnect](https://i.imgur.com/WKkO2cZ.gif)
![wiresConnect](https://i.imgur.com/ZIXI09T.png)
* **Node deprecation flag**
*Tell users to update their programs*
![deprecated](https://i.imgur.com/Yjck578.png)
![deprecated](https://i.imgur.com/WZ0yW4X.png)* **Widgets library**
* Sliders*Custom Houdini style sliders, value draggers, ramp widgets*
![historyApi](https://i.imgur.com/iL25sxN.png)
* Properties framework
*Custom widgets for property panels. Collapsible categories, search field*
* Input framework
*Custom widgets for mouse, keyboard capture*
* **Plugin wizards framework**
*Generate package template to start development. Or create own wizard for your module*
* **Easy configuration files framework**
*While adding own modules you probably want to have some configuration data. We provide easy to use api for this*
And more..
## Getting Started
We have [documentation](https://pyflow.readthedocs.io/en/latest/)
## Contributing
See `CONTRIBUTING.md`
## Versioning
We use a [semantic versioning](http://semver.org/) policy.
## Authors
* **Ilgar Lunin** - [Ilgar Lunin](https://github.com/IlgarLunin)
* **Pedro Cabrera** - [Pedro Cabrera](https://github.com/pedroCabrera)See also the list of [contributors](https://github.com/wonderworks-software/PyFlow/contributors) who participated in this project.
## Discussion
Join us to our [discord channel](https://discord.gg/SwmkqMj) and ask anything related to project!