You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 14, 2025. It is now read-only.
Ondřej Michal edited this page Mar 11, 2022
·
8 revisions
To query the model you start with initializing the connection. This can be done via Model(False, "model_name"). Then use any getter you need to retrieve the data. Our unit tests (RFEM_Python_Client/UnitTests/) are good examples of setting values and getting them back for checking correctness. But in the tests we use currently available (active) model, that is why you see just Model() there.
If you want to see all currently available model functions and types just print(Model.clientModel). This is the easiest way SUDS module shows everything it recognizes. Even easier is to look at methods and types for model and application in our Wiki. It can be outdated with the new development, meaning new functions will be added.