Skip to main content

Build your own HomeKit Bridge & Accessories with Hoom

Project description


🏡 Hoom

Build your own HomeKit Bridge & Accessories with Hoom

✨ Features

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

📦 Installation

You can easily install Hoom using pip:

pip install hoom

Note: Hoom requires Python 3.8 or higher

How to use

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

from hoom import Hoom
from hoom.accessory_types import Lightbulb

hoom = Hoom(name="Hoom Bridge")

@hoom.accessory("Lamp", Lightbulb)
def lamp(response: Lightbulb.Response):
    if response.state:
        print("Lamp is now on")
    else:
        print("Lamp 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.

📣 Credits

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

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.4.tar.gz (111.9 kB view hashes)

Uploaded Source

Built Distribution

hoom-0.1.4-py3-none-any.whl (112.9 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