![]() |
Baby Language Lab Scripts
A collection of data processing tools.
|
Go to the source code of this file.
Namespaces | |
namespace | launcher |
This module is the main entry point for all bll applications. | |
Variables | |
string | launcher.BLL_APP_ROOT_DIR = 'C:/Users/Wayne/Documents/baby-lab/bll_app/' |
list | launcher.module_name = sys.argv[1] |
string | launcher.module_path = '%sapp/%s.py' |
tuple | launcher.cls_name = reduce(lambda accum, word: accum + word.capitalize(), module_name.split('_'), '') |
tuple | launcher.module = imp.load_source(module_name, module_path) |
tuple | launcher.cls = getattr(module, cls_name) |
tuple | launcher.cur_app = cls() |