Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@
[![Dependabot](https://img.shields.io/badge/dependabot-enabled-brightgreen?logo=dependabot)](https://github.com/graphras-com/HaClient/network/updates)
[![License](https://img.shields.io/badge/license-Apache--2.0-blue)](LICENSE)

Async-first, high-level Python client for Home Assistant with REST and WebSocket support. Provides typed domain accessors, real-time state tracking, automatic reconnection, and a synchronous wrapper for scripts and REPL use.
A high-level typed Python SDK for building applications on top of the Home Assistant REST and WebSocket APIs.

Unlike low-level Home Assistant clients that expose raw service calls and entity state payloads, this library provides domain-oriented accessors and intent-driven APIs designed for application development.

**[Documentation](https://graphras-com.github.io/HaClient/)**

Expand Down
25 changes: 23 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,33 @@ build-backend = "hatchling.build"
[project]
name = "haclient"
dynamic = ["version"]
description = "Async-first, high-level Python client for Home Assistant (REST + WebSocket)."
description = "A high-level typed Python SDK for building applications on top of the Home Assistant REST and WebSocket APIs."
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.11"
authors = [{ name = "HAClient Contributors" }]
keywords = ["home-assistant", "homeassistant", "async", "websocket", "iot"]
keywords = [
"home-assistant",
"homeassistant",
"python",
"asyncio",
"websocket",
"rest-api",
"smart-home",
"automation",
"typed",
"mypy",
"reactive",
"sdk",
"async",
"pep561",
"realtime",
"event-driven",
"iot",
"home-automation",
"typed-python",
"domain-driven"
]
classifiers = [
"Development Status :: 4 - Beta",
"Framework :: AsyncIO",
Expand Down
Loading