def __init__(self): """ app setup """ # setup the parent class base_dir = os.path.dirname(os.path.abspath(__file__)) base_app.__init__(self, base_dir) app_expose(base_app.params)
def __init__(self): """ app setup """ # setup the parent class base_dir = os.path.dirname(os.path.abspath(__file__)) base_app.__init__(self, base_dir) # select the base_app steps to expose app_expose(base_app.index)
def __init__(self): """Set up application.""" # setup the parent class base_dir = os.path.dirname(os.path.abspath(__file__)) base_app.__init__(self, base_dir) # select the base_app steps to expose # index() is generic app_expose(base_app.index) app_expose(base_app.input_select) app_expose(base_app.input_upload) # params() is modified from the template app_expose(base_app.params)
def __init__(self): """ app setup """ # setup the parent class base_dir = os.path.dirname(os.path.abspath(__file__)) base_app.__init__(self, base_dir) # select the base_app steps to expose # index() is generic app_expose(base_app.index) app_expose(base_app.input_select) app_expose(base_app.input_upload) # params() is modified from the template app_expose(base_app.params) # run() and result() must be defined here self.Kmax = 250 self.Lmax = 50 self.autoK = True self.autoL = True
def __init__(self): base_dir = os.path.dirname(os.path.abspath(__file__)) base_app.__init__(self, base_dir) # select the base_app steps to expose app_expose(base_app.index)