Python Shell

The python shell allows flexible of RenderDoc, including the ability to run simple scripts over the whole dataset in ways not easy to do in the UI. Depending on the build-time configuration the Qt UI itself may also be exposed to python for customisation.

Overview

../_images/pythonshell.png

The python shell

You can open the python shell from the window menu. It offers both an interactive shell and a window that can open and run scripts and display the output.

The full python API reference contains the explicit detail of the whole API, but you can also use the help() command to obtain information about a particular object or function call.

To get started the pyrenderdoc object corresponds to a qrenderdoc.CaptureContext object through which the internal API and UI windows can be obtained.

For Qt integration, if available, you can import PySide2 which provides python bindings for the Qt API.

See Also