Metadata-Version: 2.1
Name: aiohomekit
Version: 0.2.29.2
Summary: An asyncio HomeKit client
Home-page: https://github.com/Jc2k/aiohomekit
License: Apache-2.0
Keywords: HomeKit,home,automation
Author: John Carr
Author-email: john.carr@unrouted.co.uk
Requires-Python: >=3.7,<4.0
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: End Users/Desktop
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Home Automation
Requires-Dist: cryptography (>=2.8,<3.0)
Requires-Dist: zeroconf[IP] (>=0.24.4,<0.25.0)
Project-URL: Repository, https://github.com/Jc2k/aiohomekit
Description-Content-Type: text/markdown

# aiohomekit

[![Build Status](https://travis-ci.com/Jc2k/aiohomekit.svg?branch=master)](https://travis-ci.com/Jc2k/aiohomekit)  | [![codecov](https://codecov.io/gh/Jc2k/aiohomekit/branch/master/graph/badge.svg)](https://codecov.io/gh/Jc2k/aiohomekit)

This library implements the HomeKit protocol for controlling Homekit accessories using asyncio.

It's primary use is for with Home Assistant. We target the same versions of python as them and try to follow their code standards.

At the moment we don't offer any API guarantees. API stability and documentation will happen after we are happy with how things are working within Home Assistant.


## FAQ

### How do I use this?

It's published on pypi as `aiohomekit` but its still under early development - proceed with caution.

### Does this support BLE accessories?

No. Eventually we hope to via aioble which provides an asyncio bluetooth abstraction that works on Linux, macOS and Windows.

### Can i use this to make a homekit accessory?

No, this is just the client part. You should use one the of other implementations:

 * [homekit_python](https://github.com/jlusiardi/homekit_python/)
 * [HAP-python](https://github.com/ikalchev/HAP-python)


### Why don't you use library X instead?

At the time of writing this is the only python 3.7/3.8 asyncio HAP client.


## Thanks

This library wouldn't have been possible without homekit_python, a synchronous implementation of both the client and server parts of HAP. 

