|
Baby Language Lab Scripts
A collection of data processing tools.
|
Handles startup for the custom command line scripts (such as thos contained in the bll_app/custom_scripts/ folder). More...

Public Member Functions | |
| def | __init__ |
| def | start |
| See superclass description. More... | |
Public Member Functions inherited from app.app.App | |
| def | __init__ |
| Constructor. More... | |
| def | start |
| This method must be overridden by subclasses to launch their main startup code. More... | |
| def | event_loop |
| This method starts the gtk+ event loop. More... | |
Additional Inherited Members | |
Public Attributes inherited from app.app.App | |
| app_type | |
Static Public Attributes inherited from app.app.App | |
| tuple | APP_TYPES = Enum('GUI CMD_LINE'.split()) |
Handles startup for the custom command line scripts (such as thos contained in the bll_app/custom_scripts/ folder).
Using this class as an entry point for command line scripts gives them access to all of the bll_app classes. So for example, you can use the TRSParser class in your command line scripts to read TRS files.
Definition at line 12 of file confusion_app.py.
| def app.confusion_app.ConfusionApp.__init__ | ( | self | ) |
Definition at line 13 of file confusion_app.py.
| def app.confusion_app.ConfusionApp.start | ( | self | ) |
See superclass description.
Calling this will start your command line script (if it contains a method called "run").
Definition at line 20 of file confusion_app.py.