def setup_menu():
    print('Choose a password. At least 10 chars, 1 UC, 1 LC, 1 num, 1 special')
    is_good_pw = False
    while not is_good_pw:
        p = getpass.getpass()
        if p == getpass.getpass(prompt='Verify Password:'******'Make sure your passwords match, and satisfy the requirements')
    impl.setup(p)
    impl.set_login_time()
    main_menu()
from main_impl import *
if __name__ == '__main__':
    set_modul_path()
    import interface,impl
    import centos
    import pylon
    impl.setup()
    centos.setup()
    pylon.setup()
    main()