Ryven icon indicating copy to clipboard operation
Ryven copied to clipboard

Flow-based visual scripting for Python

Results 63 Ryven issues
Sort by recently updated
recently updated
newest added

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...

![image](https://user-images.githubusercontent.com/33822210/178644578-a7208ee0-021b-48f4-8edb-6a2a7f390260.png) 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: ![Screenshot from 2022-04-03 23-05-00](https://user-images.githubusercontent.com/4856462/161448760-db948183-2a05-4098-9098-8316b84a2476.png) 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...

![image](https://user-images.githubusercontent.com/51041738/156951948-d98dfc0c-9bc6-4161-8458-7077596232ce.png)