Ryven
Ryven copied to clipboard
Flow-based visual scripting for Python
This request is quite simple (I hope). I'd like to create a Node that splits equally things in the output. Here is an example : I have a value that...
 Any method to control the layout of inputs and outputs? It does not affect usage, but the visualization is not pretty.
I have the following node, which makes a dictionary from two input values: ```python3 from ryven import NENV class MakeDict(NENV.Node): title = 'Make dictionary' init_inputs = [ NENV.NodeInputBP( dtype=NENV.dtypes.Float(), label='a'),...
I have two nodes in the package directory `long_package_directory`: ```python3 class LongNodeName(NENV.Node): """Node with a long name.""" title = 'Long Node Name' class VeryLongNodeName(NENV.Node): """Node with a very long name."""...
I just noticed, that Ryven recalculates the project, whenever the window looses the focus: 1. Open a project in Ryven. 2. Activate another window. 3. The project is recalculated. The...
In one of my nodes, I have an input with `dtypes=Choice()`. When activating the drop-down menu, the menu is located behind other input widgets:  This happens...
I have a node, which implements the relationship ``` a = b * c * d ``` Then I can write 3 additional nodes, which calculate ``` b = a...
I'm thinking about porting some of the tools I use at work into ryven. It'd take some time to do, but only seems well worth it assuming that development on...
I install ryven and typed `ryven` I got ``` qt.qpa.plugin: Could not load the Qt platform plugin "xcb" in "" even though it was found. This application failed to start...
