Skip to main content

Build your own HomeKit Bridge & Accessories with Hoom

Project description


Hoom

Build your own HomeKit Bridge & Accessories with Hoom

CodeQL Status PyPi Publishing Status Documentation Status PyPi Python Versions PyPi Package Downloads


🚧 Please note: Hoom is still under development. It is not recommended at this point, to use Hoom in a production environment.


✨ Features

  • HomeKit Bridge
  • Minimalist Web UI
  • Create custom HomeKit Accessories with function decorators
  • Customizable
  • Easy to use

📦 Installation

Hoom is available on PyPi. You can easily install it using pip:

pip install hoom

Note: Hoom requires Python 3.8 or higher


🚀 Getting started

Here's a demo script which shows how easy Hoom is to use:

from hoom import Hoom
from hoom.accessory_types import Switch

hoom = Hoom()

@hoom.switch("Switch ")
def switch(response: Switch.Response):
    if response.on:
        print("Switch is now on")
    else:
        print("Switch is now off")
        
    return

hoom.run()

As you can see, Hoom is very similar to frameworks like FastAPI. No need for complicated classes with lots of methods. Just use the @hoom.<<accessory>> decorator and you're good to go.

If you want to know how to create other accessories, take a look at the documentation.


📣 Credits

A special thanks goes out to these Python packages/frameworks and their authors:

A special thanks also goes out to:

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

hoom-0.1.6.tar.gz (113.4 kB view hashes)

Uploaded Source

Built Distribution

hoom-0.1.6-py3-none-any.whl (115.0 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page