Possible Duplicate:
Getting CPU temperature using Python?

What is the simplest method of going about this? Also preferably in Celsius.

link|improve this question

feedback

closed as exact duplicate by KennyTM, Anurag Uniyal, Martin Smith, unutbu, SilentGhost Jul 6 '10 at 15:13

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

2 Answers

There's no standard Python library for this, but on various platforms you may be able to use a Python bridge to a platform API to access this information.

For example on Windows this is available through the Windows Management Instrumentation (WMI) APIs, which are available to Python through the PyWin32 library. There is even a Python WMI library which wraps PyWin32 to provide a more convenient interface. To get the temperature you'll need to use one of these libraries to access the root/WMI namespace and the MSAcpi_ThermalZone Temperature class. This gives the temperature in tenths of a Kelvin, so you'll need to convert to Celsius by deducting 2732 and dividing by 10.

Not sure about about Linux or Mac I'm afraid, but there may be equivalent libraries you can use. A quick Google indicated that /proc/acpi/thermal_zone/THM/temperature may be what yoiu're after if your distro supports the proc virtual filesystem for accessing kernel information.

link|improve this answer
feedback

On Linux, that info is in /proc/acpi/thermal_zone/

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.