Python - 读取系统信息(CPU核心使用和温度)

时间:2014-03-14 10:51:36

标签: python-2.7 cpu cpu-usage temperature

我想开始一个项目的工作,但我需要帮助用python监控CPU核心的使用和温度。

非常感谢任何帮助。

使用Python 2.7,Windows 8

1 个答案:

答案 0 :(得分:0)

psutil库将在各种平台上为您提供一些系统信息(CPU /内存使用情况)。 psutil is a module providing an interface for retrieving information on running processes and system utilization (CPU, memory) in a portable way by using Python, implementing many functionalities offered by tools like ps, top and Windows task manager

它目前支持Linux,OS X,FreeBSD和Windows,使用2.4到3.1的Python版本,使用独特的代码库。