Python获取Windows中进程的CPU周期

时间:2019-07-24 18:45:28

标签: python cpu-usage psutil

我想在Windows 10 x64中使用Python 3.7获取进程使用的CPU周期。

使用Sysinternals Process Explorer,可以查看进程的CPU周期。

enter image description here

使用Python软件包psutil,可以查看CPU时间,如下所示:

pfunc = psutil.Process(process_id)
process_cpu_time = pfunc.cpu_times()

我没有在psutil文档中看到获取循环的方法。 psutil中是否有这样的方法,还是有另一个可以报告周期的程序包?

0 个答案:

没有答案