Metadata-Version: 2.1
Name: temper-windows
Version: 1.0.0
Summary: Gets the temperature from a Temper USB thermometer on windows.
Home-page: https://github.com/tom-churchill/temper-windows
Author: Tom Churchill
Author-email: tom@tomchurchill.co.uk 
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: Microsoft :: Windows
Description-Content-Type: text/markdown
Requires-Dist: pywinusb (>=0.3.2)

# Temper-Windows
Allows you to access the temperature in celsius of a Temper device on Windows. 

## Installation
    pip install temper-windows

## Demo
    import temper_windows

    temperature = temper_windows.get_temperature()
    print(temperature)


    >>> 21.26

#### Notes
1. I only have the TemperX to test on so it may not work on others. Pull requests welcome if it doesn't.
2. Tested on Python 3.6 and 2.7 although will most likely work on earlier versions too.

