Metadata-Version: 2.1
Name: rikafirenet
Version: 0.0.4
Summary: Python package that dialogs with Rika pellet stove (under dev)
Home-page: https://github.com/mttng/rikafirenet
Author: Mathieu Tanguy
Author-email: mathieu@tanguym.eu
License: MIT license
Keywords: rikafirenet
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Requires-Python: >=3.6
License-File: LICENSE
License-File: AUTHORS.rst

============
Rika Firenet
============


.. image:: https://img.shields.io/pypi/v/rikafirenet.svg
        :target: https://pypi.python.org/pypi/rikafirenet


Python package that dialogs with Rika pellet stove


* Free software: MIT license

Usage
--------

.. code-block:: python

        import requests
        from rikafirenet import Stove
        session = requests.session()
        stove = Stove(session, "username", "password", "stove_id")
        if not stove.connect():
            sys.exit(1)
        else :
            print('Target temperatrue: ', stove.get_stove_thermostat())
            print('Room temperature: ', stove.get_room_temperature())
            print('Burning: ',stove.is_stove_burning())

Credits
-------

This package was created with Cookiecutter_ and the `audreyr/cookiecutter-pypackage`_ project template.

.. _Cookiecutter: https://github.com/audreyr/cookiecutter
.. _`audreyr/cookiecutter-pypackage`: https://github.com/audreyr/cookiecutter-pypackage


=======
History
=======
0.0.4 (2022-11-27)
------------------

* Cleaned code with pylint.

0.0.3 (2022-11-22)
------------------

* Added more states and actions.

0.0.1 (2022-11-17)
------------------

* First release on PyPI.
