Metadata-Version: 2.1
Name: kaiterra-async-client
Version: 0.0.2
Summary: Kaiterra API Async Client
Home-page: https://github.com/Michsior14/python-kaiterra-async-client
License: MIT License
Description: python-kaiterra-async-client
        ============================
        
        Python 3 client for retrieving readings from your Laser Egg or Sensedge using the `Kaiterra REST API <https://www.kaiterra.com/dev>`__.
        
        To use it, you'll first need to create an account at the `Kaiterra Dashboard <https://dashboard.kaiterra.cn/>`__, then create an API key under Settings -> Profile -> Developer.
        
        
        Getting Started
        -------------------
        
        Install the library using pip:
        
        .. code:: bash
        
        	pip install kaiterra-async-client
        
        Example
        -------------
        
        Here's some code to retrieve readings from a couple test devices, one Laser Egg and one Sensedge:
        
        .. code:: python
        
        	import aiohttp
        	from kaiterra_async_client import KaiterraAPIClient
        
        	async with aiohttp.ClientSession() as session:
        		client = KaiterraAPIClient(session, api_key='YOUR_API_KEY_HERE')
        		r = await client.get_latest_sensor_readings([
        			'/lasereggs/00000000-0001-0001-0000-00007e57c0de',
        			'/sensedges/00000000-0031-0001-0000-00007e57c0de',
        		])
        		print(r)
        
        Development
        -------------
        
        Source code, issues, and pull requests are managed using `Github <https://github.com/Michsior14/python-kaiterra-async-client>`__.
        
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.5
Description-Content-Type: text/x-rst
