1234567891011121314151617181920212223242526272829303132 |
- #################################################################################
- #Import (here could be project specific imports, clean after use))
- import inspect
- #################################################################################
- def run_multiple_jobs_with_constants(ordered_list_of_functions,dict_of_functions,dict_constants=[]):
- '''
- This function is made to run through multiple functions in different files,
- these functions can contain constants which can be given as additional Input
- :param ordered_list_of_functions: a list in which the function handles are in
- :param dict_of_functions: a dictionary which maps the
- :param dict_constants: constants which are used for the functions
- '''
- pass
- def run_multiple_jobs_with_alternating_constants(ordered_list_of_functions,dict_constants):
- pass
- def run_single_job_multiple_times(ordered_list_of_functions,dict_constants):
- pass
- def run_single_job_multiple_times_alternation():
- pass
- #################################################################################
- #this function can be used if u want to run this file
- def main():
- pass
- if __name__ == '__main__': # only if we execute this file but not if we import it
- main()
|