Example #1
0
from ui.frame import Frame
from ui.menu import Menu

frame = Frame()  # init frame

frame.clear_window()  # clear console/terminal window

print(frame)  # prints frame (logo and horizontal line)

frame.boot_system()  # boot system. Progress bar from 0-100%

menu = Menu()  # init menu

menu.authenticate()  # authenticate

menu.init_menu()  # after authentication, show main menu
Example #2
0
 def __init__(self):
     self.nocco_key = NoccoKey()
     self.color = Color()
     self.frame = Frame()