python获取windows进程cpu占用率_用Python计算进程cpu使用率

本文介绍了如何使用Python在Windows系统中获取进程的CPU占用率。通过调用ctypes库和windll.kernel32.GetSystemTimes函数,获取系统用户时间、内核时间和空闲时间,进而计算出进程的CPU使用情况。
摘要由CSDN通过智能技术生成

经过进一步的研究,我找到了解决办法。在

因此,为了获得进程cpu使用率的百分比,我们需要一些参数:

1。系统时间

为了计算这个,我们需要用户模式时间,内核模式时间和

空闲模式时间:from ctypes import *

import time

class FILETIME(Structure):

_fields_ = [

("dwLowDateTime", DWORD),

("dwHighDateTime", DWORD)]

def GetSystemTimes():

"""

Uses the function GetSystemTimes() (win32) in order to get the user mode time, kernel mode time and idle mode time

:return: user time, kernel time and idle time (Dictinary)

"""

__GetSystemTimes = windll.kernel32.GetSystemTimes

idleTime, kernelTime, userTime = FILETIME(), FILETIME(), FILETIME()

success = __GetSystemTimes(

byref(idleTime),

byref(kernelTime),

byref(userTime))

assert success, ctypes.WinError(ctypes.GetLastError()

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值