簡體   English   中英

使用 tkinter 運行另一個 python 腳本

[英]Running another python script using tkinter

我已經使用 tkinter 創建了一個 GUI,我希望在打開 GUI 時運行另一個 python 腳本。這是我到目前為止所做的示例代碼。

window = Tk()
window.configure(bg='#101d25')
window.maxsize(width=580, height=450)
window.minsize(width=580, height=450)

title = Label(window, text='Face clustering', bg='#232d36', fg='#979ca0', font=('Ink Free', 30, 
'bold'))
title.pack(side=TOP, fill=X)

process_label = Label(window, text='Processing files', fg='#979ca0', bg='#101d25', font=('Ink Free', 
14, 'bold'))
process_label.place(x=70, y=150)

style = ttk.Style()
style.theme_use('clam')
TROUGH_COLOR = '#101d25'
BAR_COLOR = '#979ca0'
style.configure("red.Horizontal.TProgressbar", troughcolor=TROUGH_COLOR, bordercolor=TROUGH_COLOR,
            background=BAR_COLOR, lightcolor=BAR_COLOR, darkcolor=BAR_COLOR)
progress_bar = ttk.Progressbar(window, style="red.Horizontal.TProgressbar", orient=HORIZONTAL, 
length=300,mode="determinate")
progress_bar.place(x=50, y=200)
progress_bar.start()
os.system('python sample.py')
progress_bar.stop()
window.mainloop()

我希望進度條一直運行,直到 sample.py 完成它的執行。文件正在執行,但未顯示 GUI。 希望得到解決。

提前致謝

您需要在另一個線程中運行腳本:

import threading

...

progress_bar.place(x=50, y=200)

def run_script():
    progress_bar.start()
    os.system('python sample.py')
    progress_bar.stop()

threading.Thread(target=run_script, daemon=True).start()

window.mainloop()

如果主代碼塊在sample.py一個函數內,例如main() ,那么最好導入該函數並直接調用該函數:

import threading
from sample import main

...

def run_it():
    progress_bar.start()
    main()
    progress_bar.stop()

threading.Thread(target=run_it, daemon=True).start()

我不知道 os.system 是否可以在您的腳本完成時通知您,但也許您可以嘗試使用after方法。 我將附上我前段時間編寫的 GUI 中的示例。

def checkForComplete(self):
    print(self.createStatus)
    if self.createStatus == "notStarted":
        self.createStatus = "started"
        self.progressbar.configure(style = "green.Horizontal.TProgressbar")
        self.progressbar.start()
        self.after(100, self.checkForComplete)
    elif self.createStatus == "succes":
        self.progressbar.stop()
        self.createStatus = "notStarted"
        self.progressbar['value'] = 200
        self.progressbar.update_idletasks()
    elif self.createStatus == "fail":
        self.progressbar.stop()
        self.createStatus = "notStarted"
        self.progressbar.configure(style = "red.Horizontal.TProgressbar")
        self.progressbar['value'] = 200
        self.progressbar.update_idletasks()
    else: #its started, that means we are waiting for the action to complete
        self.after(100, self.checkForComplete)

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM