gpt4 book ai didi

python-3.x - 由于线程的原因,按钮回调只能使用一次

转载 作者:行者123 更新时间:2023-12-03 13:02:06 24 4
gpt4 key购买 nike

由于我设置'command ='参数的方式,我只能使用一次此按钮的回调。我希望能够在完成后再次运行该回调函数,但是我对如何为'command ='参数提供新的线程对象感到困惑。我按了一下,然后完成了功能的过程,但是一旦完成后再按一下按钮,就会收到“RuntimeError:线程只能启动一次”的信息。这是按钮和回调的代码:

def ocr_callback():
no_file_to_save_to = False
try:
status_label.pack_forget()
for f in files: # files comes from another callback and is globally defined
name, extension = os.path.splitext(f)
if extension != '.pdf':
raise
if len(files) == 1:
new_file = filedialog.asksaveasfilename(filetypes=[('PDF', '.pdf')], defaultextension='.pdf')
if not new_file:
no_file_to_save_to = True
raise
try:
ocrmypdf.ocr(files[0], new_file, use_threads=True)
except ocrmypdf.exceptions.PriorOcrFoundError:
ocrmypdf.ocr(files[0], new_file, redo_ocr=True, use_threads=True)
elif len(files) > 1:
directory = filedialog.askdirectory()
if not directory:
no_file_to_save_to = True
raise
for f in files:
file_name = f.split('/')[-1]
try:
ocrmypdf.ocr(f, directory + '/' + file_name, use_threads=True)
except ocrmypdf.exceptions.PriorOcrFoundError:
ocrmypdf.ocr(f, directory + '/' + file_name, redo_ocr=True, use_threads=True)
status_label.config(text='Process Complete!', fg='blue')
status_label.pack(expand='yes')
except:
if no_file_to_save_to:
status_label.config(text='No file to save to. Process Cancelled', fg='blue')
else:
status_label.config(text='Error: One or more of the files could be corrupt.', fg='red')
status_label.pack(expand='yes')


ocr_button = Button(root, text='OCR Files', relief='groove', bg='#5D1725', bd=0, width=scaled(20), fg='white',
command=threading.Thread(target=ocr_callback).start, state=DISABLED)
ocr_button.pack()
关于如何更改它以使其起作用的任何想法?我知道此函数必须是线程化的,否则窗口将停顿并冻结自身,直到完成为止。 “ocr”功能是造成线程阻塞和必要性的原因。

最佳答案

您可能应该从启动功能而不是从button命令内部启动线程。
可能是这样的:

def launch_cmd(dummy=None):
threading.Thread(target=ocr_callback).start()

...
ocr_button = Button(root, text='OCR Files', relief='groove', bg='#5D1725',\
bd=0, width=scaled(20), fg='white', command=launch_cmd, state=DISABLED)

关于python-3.x - 由于线程的原因,按钮回调只能使用一次,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64409659/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com