我创建了一个在命令行上打印结果的程序。(它是服务器,它在命令行上打印日志。)

现在,我想在 GUI 上看到相同的结果。

如何将命令行结果重定向到 GUI?

请建议一个技巧,可以轻松地将控制台应用程序转换为简单的 GUI。

请注意,它应该适用于 Linux 和 Windows。

有帮助吗?

解决方案

您可以创建一个用于运行命令行程序,作为一个子进程脚本包装,然后将输出添加到像文本控件。

from tkinter import *
import subprocess as sub
p = sub.Popen('./script',stdout=sub.PIPE,stderr=sub.PIPE)
output, errors = p.communicate()

root = Tk()
text = Text(root)
text.pack()
text.insert(END, output)
root.mainloop()

其中的脚本程序。你可以明显地打印出不同的颜色,或类似的错误。

其他提示

在 GUI 中显示子进程的输出 当它仍在运行时, ,在 Python 2 和 3 上工作的仅可移植的 stdlib 解决方案必须使用后台线程:

#!/usr/bin/python
"""
- read output from a subprocess in a background thread
- show the output in the GUI
"""
import sys
from itertools import islice
from subprocess import Popen, PIPE
from textwrap import dedent
from threading import Thread

try:
    import Tkinter as tk
    from Queue import Queue, Empty
except ImportError:
    import tkinter as tk # Python 3
    from queue import Queue, Empty # Python 3

def iter_except(function, exception):
    """Works like builtin 2-argument `iter()`, but stops on `exception`."""
    try:
        while True:
            yield function()
    except exception:
        return

class DisplaySubprocessOutputDemo:
    def __init__(self, root):
        self.root = root

        # start dummy subprocess to generate some output
        self.process = Popen([sys.executable, "-u", "-c", dedent("""
            import itertools, time

            for i in itertools.count():
                print("%d.%d" % divmod(i, 10))
                time.sleep(0.1)
            """)], stdout=PIPE)

        # launch thread to read the subprocess output
        #   (put the subprocess output into the queue in a background thread,
        #    get output from the queue in the GUI thread.
        #    Output chain: process.readline -> queue -> label)
        q = Queue(maxsize=1024)  # limit output buffering (may stall subprocess)
        t = Thread(target=self.reader_thread, args=[q])
        t.daemon = True # close pipe if GUI process exits
        t.start()

        # show subprocess' stdout in GUI
        self.label = tk.Label(root, text="  ", font=(None, 200))
        self.label.pack(ipadx=4, padx=4, ipady=4, pady=4, fill='both')
        self.update(q) # start update loop

    def reader_thread(self, q):
        """Read subprocess output and put it into the queue."""
        try:
            with self.process.stdout as pipe:
                for line in iter(pipe.readline, b''):
                    q.put(line)
        finally:
            q.put(None)

    def update(self, q):
        """Update GUI with items from the queue."""
        for line in iter_except(q.get_nowait, Empty): # display all content
            if line is None:
                self.quit()
                return
            else:
                self.label['text'] = line # update GUI
                break # display no more than one line per 40 milliseconds
        self.root.after(40, self.update, q) # schedule next update

    def quit(self):
        self.process.kill() # exit subprocess if GUI is closed (zombie!)
        self.root.destroy()


root = tk.Tk()
app = DisplaySubprocessOutputDemo(root)
root.protocol("WM_DELETE_WINDOW", app.quit)
# center window
root.eval('tk::PlaceWindow %s center' % root.winfo_pathname(root.winfo_id()))
root.mainloop()

解决方案的本质是:

  • 将子进程输出放入后台线程的队列中
  • 从 GUI 线程中的队列获取输出。

即打电话 process.readline() 在后台线程 -> 队列 -> 在主线程中更新 GUI 标签。有关的 kill-process.py (无轮询——一种不太便携的解决方案,使用 event_generate 在后台线程中)。

标准输出重定向到更新您的GUI中的write()方法是一条路可走,也可能是最快的 - 尽管运行一个子进程可能是一个更好的解决方案。

一旦你真的相信它是由和工作

只有重定向标准错误,虽然!

实施例执行力度(GUI文件和测试脚本):

test_gui.py:

from Tkinter import *
import sys
sys.path.append("/path/to/script/file/directory/")

class App(Frame):
    def run_script(self):
        sys.stdout = self
        ## sys.stderr = self
        try:
            del(sys.modules["test_script"])
        except:
            ## Yeah, it's a real ugly solution...
            pass
        import test_script
        test_script.HelloWorld()
        sys.stdout = sys.__stdout__
        ## sys.stderr = __stderr__

    def build_widgets(self):
        self.text1 = Text(self)
        self.text1.pack(side=TOP)
        self.button = Button(self)
        self.button["text"] = "Trigger script"
        self.button["command"] = self.run_script
        self.button.pack(side=TOP)

    def write(self, txt):
        self.text1.insert(INSERT, txt)

    def __init__(self, master=None):
        Frame.__init__(self, master)
        self.pack()
        self.build_widgets()

root = Tk()
app = App(master = root)
app.mainloop()

test_script.py:

print "Hello world!"

def HelloWorld():
    print "HelloWorldFromDef!"

对不起,我的英语不好。其实我,用一种不同的方式来打印命令提示符输出到我的新的自动化工具。 请在以下这些步骤。

1>创建BAT文件&其输出重定向到一个日志文件中。 命令提示命令:tasklist /svc

2>进行读与Python 3.x的该文件 `processedFile =开放( 'd:\ LOG \ taskLog.txt', 'R')

3>压轴步骤。 ttk.Label(Tab4, text=[ProcessFile.read()]).place(x=0, y=27)

**因此请被告知,我还没有包括滚动条到这个代码呢。

发布屏幕截图:

“在这里输入的图像描述”

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top