We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 52766df commit 69efadbCopy full SHA for 69efadb
README.md
@@ -5,6 +5,23 @@ QT Editor for the flowpipe framework based on NodeGraphQt.
5
6

7
8
+## Example
9
+```python
10
+from flowpipe import Graph
11
+from flowpipe_editor.flowpipe_editor_widget import FlowpipeEditorWidget
12
+
13
+graph = Graph(name="Rendering")
14
15
+# ... create nodes and append to graph ...
16
+window = QtWidgets.QWidget()
17
18
+flowpipe_editor_widget = FlowpipeEditorWidget(parent=parentWidget)
19
+flowpipe_editor_widget.load_graph(graph)
20
21
+# .. add widget to window
22
23
+```
24
25
## Requirements
26
The requirements can be installed via pip.
27
0 commit comments