当前位置:首页 » 编程语言 » python电脑温度

python电脑温度

发布时间: 2022-11-30 02:44:28

1. 用python获取电脑cpu温度代码

from __future__ import division
import os
from collections import namedtuple

_nt_cpu_temp = namedtuple('cputemp', 'name temp max critical')

def get_cpu_temp(fahrenheit=False):
"""Return temperatures expressed in Celsius for each physical CPU
installed on the system as a list of namedtuples as in:

>>> get_cpu_temp()
[cputemp(name='atk0110', temp=32.0, max=60.0, critical=95.0)]
"""
# http://www.mjmwired.net/kernel/Documentation/hwmon/sysfs-interface
cat = lambda file: open(file, 'r').read().strip()
base = '/sys/class/hwmon/'
ls = sorted(os.listdir(base))
assert ls, "%r is empty" % base
ret = []
for hwmon in ls:
hwmon = os.path.join(base, hwmon)
label = cat(os.path.join(hwmon, 'temp1_label'))
assert 'cpu temp' in label.lower(), label
name = cat(os.path.join(hwmon, 'name'))
temp = int(cat(os.path.join(hwmon, 'temp1_input'))) / 1000
max_ = int(cat(os.path.join(hwmon, 'temp1_max'))) / 1000
crit = int(cat(os.path.join(hwmon, 'temp1_crit'))) / 1000
digits = (temp, max_, crit)
if fahrenheit:
digits = [(x * 1.8) + 32 for x in digits]
ret.append(_nt_cpu_temp(name, *digits))
return ret

热点内容
叉叉助手删除脚本 发布:2025-09-18 03:21:24 浏览:847
深圳ug五轴编程培训 发布:2025-09-18 03:13:35 浏览:193
安卓软件残留怎么清理 发布:2025-09-18 03:02:02 浏览:339
centos7apachephp7 发布:2025-09-18 03:01:47 浏览:651
安卓如何实现点击弹出列表 发布:2025-09-18 02:47:25 浏览:52
python文件函数 发布:2025-09-18 02:47:23 浏览:568
pythonwrap 发布:2025-09-18 02:46:32 浏览:326
服务器与计算机有什么区别 发布:2025-09-18 02:07:26 浏览:931
python不支持的数据类型有 发布:2025-09-18 01:50:23 浏览:645
长江存储科技招聘 发布:2025-09-18 01:44:48 浏览:767