Utils

soccon.utils.disp_run_info(args)

Prints info about the function call to the command line

Parameters:

args (argparse.Namespace) – Contains arguments gathered from the command line

soccon.utils.excel_style(row, col)

Convert given row and column number to an Excel-style cell name. Source: https://stackoverflow.com/questions/19153462/get-excel-style-column-names-from-column-number

soccon.utils.row_to_dict(row, row_sep_str, kv_sep_str, parse_list, parse_keys, parse_vals=True, list_sep_char=',', add_to_vals=0)

Returns a dictionary made from row. Assumes row is of the form “key1:val1,val2,val3;key2:val1,val2,val3…”