gpt4 book ai didi

python - Q进程执行时间

转载 作者:太空宇宙 更新时间:2023-11-04 05:28:55 26 4
gpt4 key购买 nike

我想测量 QProcess 对象的执行时间。

PySide 中是否有用于执行时间测量的内部属性、方法或对象?

目前的方法是使用 time.time() 从外部对其进行测量。

示例代码:

from PySide import QtCore
import time

p = QtCore.QProcess()
start_time = time.time()
p.start('ping -n 5 127.0.0.1 >nul')
p.waitForFinished(-1)
end_time = time.time() - start_time

print(end_time)

最佳答案

您可以通过以下方式执行此操作。这使用系统 time 命令来获取执行时间。

from PySide import QtCore
import time

p = QtCore.QProcess()
p.start('time -p ping -n 5 127.0.0.1 >nul')
p.waitForFinished(-1)
stdOut = p.readAllStandardOutput()
print(stdOut)
#TODO you will have to regex the stdOut to get the values you want.

这是另一种方法:

from PySide import QtCore
import time

timer = QtCore.QTime()


def handle_proc_stop(*vargs):
procTime = timer.elapsed()
print("Process took {} miliseconds".format(procTime))

p = QtCore.QProcess()
p.started.connect(timer.start)
p.finished.connect(handle_proc_stop)
p.start('ping -n 5 127.0.0.1 >nul')
p.waitForFinished(-1)

关于python - Q进程执行时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37783271/

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