Advertisement
Guest User

main.py

a guest
Aug 24th, 2019
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.27 KB | None | 0 0
  1. from curses import wrapper
  2. from ui import UI_MAIN
  3. from threading import Thread
  4.    
  5. ui_main = UI_MAIN()
  6. thread = Thread(target = wrapper, args = (ui_main.setup_ui,))
  7. while not ui_main.ui_initalized:
  8.     pass
  9. ui_main.set_top_bar("my guild", "general", "general for talking")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement