Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. rom colorama import init, Fore, Back, Style
  2. import commands
  3. import config
  4. import sys
  5.  
  6. # Coloroma autoreset
  7. init(autoreset=True)
  8.  
  9.  
  10. while True:
  11. # Database Check.
  12. while True:
  13. db = input("Check for new databases? Y/N: ")
  14. if db.lower() == 'y':
  15. commands.db_download()
  16. break
  17. elif db.lower() == 'n':
  18. break
  19. else:
  20. continue
  21.  
  22. import tkinter
  23. import questions
  24.  
  25.  
  26. top = tkinter.Tk()
  27.  
  28. B = tkinter.Button(top, text ="Lancer", command = db)
  29.  
  30. top.mainloop()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement