Python API

Is there a way to have the graphical display run while using the python API?

You can create a window:
cubit.cmd(“graphics window create”)

You can refresh the window
cubit.cmd(“graphics flush”)

And you can enable interaction (hit the ‘q’ button to get out of interaction
mode)
cubit.cmd(“mouse”)

Does this help?