You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
# test si custom tkinter fonction sur le pc
|
|
|
|
try:
|
|
|
|
from package.app import Ctk_app
|
|
|
|
gui = Ctk_app()
|
|
|
|
except ImportError:
|
|
|
|
from package.app import Tk_app
|
|
|
|
gui = Tk_app()
|
|
|
|
|
|
|
|
gui.mainloop()
|