Which python module is used to read CPU temperature and processor Fan speed in Windows?
I explored the WMI python module, however I am unable to find the correct option or function to capture the above mentioned info.
Actually I tried the following code snip, but it returns 'nothing'.
import wmi
w = wmi.WMI()
print w.Win32_TemperatureProbe()[0].CurrentReading
Is there a way to get this information?