我想开始一个项目的工作,但我需要用python监控CPU核心使用和温度的帮助。
任何帮助都将不胜感激。
使用Python 2.7、Windows 8
发布于 2014-03-14 18:56:34
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,FreeBSD和Windows的Python版本从2.4到3.1。
https://stackoverflow.com/questions/22402964
复制相似问题