Replies: 1 comment 2 replies
-
While looking at all of the widgets, did you consider |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I like to use Textual to build small apps to launch/control/post-process computations using Fluiddyn Python libraries. The API is often based on instances of Fluiddyn ParamContainer
For example, this tutorial shows how to compute Particle Image Velocimetry with Fluidimage:
I'd like to be able to produce a nice Textual representation of a
ParamContainer
to be able to graphically interact with it (discover the possible parameters, read the documentation and of course modify the parameters).I see that there are plenty of nice widgets that could be used for different types of parameters. I could even add data in the
ParamContainer
object on which widget should be used for which parameter.However, right now I don't see how to handle in Textual the hierarchical nature of
ParamContainer
objects. So here is my question:How could one represent in Textual hierarchical Python objects containing parameters ?
Beta Was this translation helpful? Give feedback.
All reactions