Metadata-Version: 2.1
Name: python-tado-dev
Version: 0.13.0.dev2
Summary: PyTado from chrism0dwk, modfied by w.malgadey, diplix, michaelarnauts, LenhartStephan, splifter, syssi, andersonshatch, Yippy, p0thi
Home-page: https://github.com/palazzem/PyTado
Author: chrism0dwk, w.malgadey
Author-email: chrism0dwk@gmail.com, w.malgadey@gmail.com
License: GPL3
Keywords: tado
Platform: any
Classifier: Development Status :: 3 - Alpha
Classifier: Topic :: Home Automation
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.5
License-File: LICENSE
License-File: AUTHORS

PyTado -- Pythonize your central heating
========================================

Author: Chris Jewell <chrism0dwk@gmail.com>  
Modified: Wolfgang Malgadey <wolfgang@malgadey.de>

Licence: GPL v3

Copyright: Chris Jewell 2016-2018

PyTado is a Python module implementing an interface to the Tado web API.  It allows a user to interact with their Tado heating system for the purposes of monitoring or controlling their heating system, beyond what Tado themselves currently offer.

It is hoped that this module might be used by those who wish to tweak their Tado systems, and further optimise their heating setups.

Disclaimer
----------
Besides owning a Tado system, I have no connection with the Tado company themselves.  PyTado was created for my own use, and for others who may wish to experiment with personal Internet of Things systems.  I receive no help (financial or otherwise) from Tado, and have no business interest with them.  This software is provided without warranty, according to the GNU Public Licence version 3, and should therefore not be used where it may endanger life, financial stakes, or cause discomfort and inconvenience to others.

Example basic usage
-------------------

    >>> from PyTado.interface import Tado
    >>> t = Tado('my@username.com', 'mypassword')
    >>> climate = t.getClimate(zone=1)

Development
-----------
This software is at a purely experimental stage.  If you're interested and can write Python, clone the Github repo, drop me a line, and get involved!

Release and publish to pypi.org
-------------------------------
see: https://packaging.python.org/tutorials/packaging-projects/

TL:DR;
* update `version` in `setup.py`
* `python3 -m pip install --user --upgrade setuptools wheel`
* `python3 setup.py sdist bdist_wheel`
* `python3 -m pip install --user --upgrade twine`
* `python3 -m twine upload dist/*`



Best wishes and a warm winter to all!

Chris Jewell


