├── .gitignore ├── LICENSE.txt ├── README.rst ├── pyflowgraph ├── __init__.py ├── connection.py ├── graph_view.py ├── graph_view_widget.py ├── mouse_grabber.py ├── node.py ├── port.py └── selection_rect.py ├── setup.cfg ├── setup.py └── tests ├── __init__.py ├── bigGraph.py └── twoNodes.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricTRocks/pyflowgraph/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricTRocks/pyflowgraph/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricTRocks/pyflowgraph/HEAD/README.rst -------------------------------------------------------------------------------- /pyflowgraph/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyflowgraph/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricTRocks/pyflowgraph/HEAD/pyflowgraph/connection.py -------------------------------------------------------------------------------- /pyflowgraph/graph_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricTRocks/pyflowgraph/HEAD/pyflowgraph/graph_view.py -------------------------------------------------------------------------------- /pyflowgraph/graph_view_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricTRocks/pyflowgraph/HEAD/pyflowgraph/graph_view_widget.py -------------------------------------------------------------------------------- /pyflowgraph/mouse_grabber.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricTRocks/pyflowgraph/HEAD/pyflowgraph/mouse_grabber.py -------------------------------------------------------------------------------- /pyflowgraph/node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricTRocks/pyflowgraph/HEAD/pyflowgraph/node.py -------------------------------------------------------------------------------- /pyflowgraph/port.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricTRocks/pyflowgraph/HEAD/pyflowgraph/port.py -------------------------------------------------------------------------------- /pyflowgraph/selection_rect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricTRocks/pyflowgraph/HEAD/pyflowgraph/selection_rect.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal=1 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricTRocks/pyflowgraph/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/bigGraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricTRocks/pyflowgraph/HEAD/tests/bigGraph.py -------------------------------------------------------------------------------- /tests/twoNodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricTRocks/pyflowgraph/HEAD/tests/twoNodes.py --------------------------------------------------------------------------------