@@ -381,22 +381,25 @@ def main_exit_function():
381381 ...
382382def menu_display ():
383383 funcs = [
384+ ("help" , help_ ),
385+
384386 ("check setup" , check ),
385387 ("setup" , setup ),
386- ("create user options file" , create_options_file ),
387- ("create series file" , create_series_file ),
388- ("add new series group " , setup_series_steps ),
389- ("get data" , get ),
390- ("get categories (get all series of a datagroup)" , get_categories_main ), # next version
388+ # ("add new series group ", setup_series_steps),
389+
390+ ("Data" , get_categories_main ), # next version
391+ ("(auto) get series from file" , get ),
391392 # ("get data groups (on development) ", get_datagroups_data_main), # next version
392- ("help" , help_ ),
393393 ("show api key" , show_apikey ),
394394 ("save api key to file" , set_apikey_input ),
395+ ("create user options file" , create_options_file ),
396+ ("create series file" , create_series_file ),
397+
395398 ("remove cache folders" , remove_cache ),
396399 ("evdspy as a command line prompt" , console_main_from_the_menu ),
397- ("version" , version ),
400+ # ("version", version),
398401 ("py version" , py_version ),
399- ("check compatibility of your python version" , check_compat ),
402+ # ("check compatibility of your python version", check_compat),
400403 ]
401404
402405 menu_items = list (map (lambda x : MenuItem (x [1 ], x [0 ]), funcs ))
0 commit comments