Metadata-Version: 1.1
Name: thermic
Version: 0.1.2
Summary: Pure python interface for linux temperature sensing
Home-page: https://github.com/rossdylan/thermic
Author: Ross Delinger
Author-email: ross.delinger@gmail.com
License: MIT
Description: Thermic
        Pure Python interface to linux temperature sensors
        
        MIT Licensed
        Simple to Use
        Pure python
        Python 2 and Python 3 compliant
        
        from thermic import find_sensors
        sensors = find_sensors()
        print(sensors[0].label) # Name of the sensor
        print(sensors[0].tempc) # temperature in Celcius
        print(sensors[0].tempf) # Temperature in Farenheit
        print(sensors[0].raw)   # temperature in MilliDegrees Celcius
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 2
