Metadata-Version: 2.0
Name: pysinric
Version: 0.1.1
Summary: A python package for your sinric alexa skill
Home-page: https://github.com/kakopappa/sinric
Author: dazzHere
Author-email: dhanushdazz@gmail.com
License: UNKNOWN
Keywords: alexa,alexa-skill,sinric,sinric-alexa-skill,alexa-home-automation
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 2
Classifier: Operating System :: OS Independent
Requires-Dist: websocket-client

SINRIC
===============

This is a python library for alexa home automation skill
 SINRIC (https://sinric.com/)

Functions:
----------
* Control your home appliances using alexa

Installation :
--------------

Python3
-------

::

    pip3 install pysinric --user

or

Python
------

::

    pip install pysinric --user


**Implementing :**
~~~~~~~~~~~~~~~~~~

::

    from sinric import Sinric
    from time import sleep

    apiKey = 'Replace with your api key'  # https://sinric.com

    response = any

    if __name__ == '__main__':
        obj = Sinric(apiKey)

        while True:
            response = obj.initialize()
            print(response)
            sleep(2)



