1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
:mod:`psychopy.app` - the |PsychoPy| application suite
====================================================
This module contains everything needed to run and manage the wxPython |PsychoPy|
GUI application suite (e.g., Coder, Builder and Runner).
The functions presented here provide a simple interface to the |PsychoPy|
application instance and any frames associated with it. This interface is
intended for unit testing the GUI and for developers wishing to extend it.
.. currentmodule:: psychopy.app
Overview
========
.. autosummary::
startApp
quitApp
isAppStarted
getAppInstance
getAppFrame
Details
=======
.. autofunction:: startApp
.. autofunction:: quitApp
.. autofunction:: isAppStarted
.. autofunction:: getAppInstance
.. autofunction:: getAppFrame
|