Я хочу показать «Загрузка ...» и затем выполнить скрипт, пока пользователь ждет.
Я понимаю, что холст может обновляться только после каждого цикла и что при вызове команды кнопкихолст заморожен.
Как я могу это исправить?
В настоящее время текст не отображается. Текст успеха появляется.
import tkinter as tk
import main
root = tk.Tk() # create GUI instance
root.title('Exam Closeout') # name GUI
def run_script():
'''
Run the script from main, that is, the data script.
:return: void
'''
# show loading status: currently doesn't work, need to understand queue better
current_text = tk.StringVar()
current_text.set('Loading...')
tk.Label(root, textvariable=current_text).grid(row=4, column=1, sticky='w')
subject = entry_1.get() # grab subject from user input
try:
# call main
main.test(subject)
# show finish status
current_text.set('Script successfully finished. You may exit out of this window now')
except Exception as e: # catch exceptions. currently doesn't show specific exception
current_text.set("Error occurred. Try looking at documentation")
# label with instructions
tk.Label(root, text="Thank you for using me...").grid(row=1, column=1, sticky='w')
# label to show users where to enter exam
tk.Label(root, text="Enter exam code:").grid(row=2, column=1, sticky='w')
# blank box to enter exam into
entry_1 = tk.Entry(root,width=40) # entry has to be its own line - for more, see below
entry_1.grid(row=2, column=2, columnspan=2)
# button to run script
tk.Button(root,text="Run", command=run_script).grid(row=3, column=3)
# start canvas
root.mainloop()
main.py
import time
def test(exam):
time.sleep(5)
print(exam)
В случае, если это имеет значение, на самом деле основным методом является скрипт анализа данных, который принимает кадры данных, манипулирует ими и экспортируетнабор данных Excel.