Please. I have tried every google search result and none of them worked. The closest thing I have is this (from this website) that doesn't give me any errors but also doesn't return anything.
import wmi
w = wmi.WMI(namespace="root\OpenHardwareMonitor")
temperature_infos = w.Sensor()
for sensor in temperature_infos:
if sensor.SensorType==u'Temperature':
print(sensor.Name)
print(sensor.Value)
All I need is for this (or anything else) to return my cpu's internal temperature.