Baby Language Lab Scripts
A collection of data processing tools.
 All Classes Namespaces Files Functions Variables Pages
acrp_combine_app.py
Go to the documentation of this file.
1 ## @package app.acrp_combine_app
2 
3 from app.app import App
4 #you will need to import the module that contains your custom script below:
6 
7 ## Handles startup for the custom command line scripts (such as thos contained in the bll_app/custom_scripts/ folder).
8 # Using this class as an entry point for command line scripts gives them access to all of the bll_app classes.
9 # So for example, you can use the TRSParser class in your command line scripts to read TRS files.
11  def __init__(self):
12  super(AcrpCombineApp, self).__init__(
13  'acrp_combine_app',
14  App.APP_TYPES.CMD_LINE #this will prevent the superclass from starting up PyGTK
15  )
16 
17  ## See superclass description. Calling this will start your command line script (if it contains a method called "run").
18  def start(self):
19  run()