aiopoolside
Asynchronous Python client for Poolside pool controllers.
Speaks the controller's local protocol: an encrypted JSON-RPC transport over
websockets using the Noise Protocol Framework
(Noise_XX_25519_ChaChaPoly_SHA256), plus the plaintext pre-auth pairing
handshake used to enroll a new client.
Installation
pip install aiopoolside
Usage
import aiohttp
from aiopoolside import (
PoolsideClient,
async_await_pairing_result,
async_request_pairing,
generate_keypair,
)
async def main() -> None:
async with aiohttp.ClientSession() as session:
# One-time pairing: the user approves the request on the controller.
private_key, public_key = generate_keypair()
ws, result = await async_request_pairing(
session, "192.168.1.50", 8126, "My Client", public_key
)
approved = await async_await_pairing_result(ws)
client = PoolsideClient(
session=session,
host="192.168.1.50",
port=8126,
client_private_key=private_key,
controller_public_key=approved.controller_public_key,
controller_uuid=approved.controller_uuid,
)
await client.async_connect()
site, controls = await client.async_get_control_layout()
try:
for control in controls:
print(control.name, control.control_type)
finally:
await client.async_disconnect()
Development
uv sync
uv run pytest
License
MIT
Release files for aiopoolside 0.1.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| aiopoolside-0.1.0.tar.gz | 20.6 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| aiopoolside-0.1.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 38.7 kB
Release files / aiopoolside-0.1.0.tar.gz
| Download URL | aiopoolside-0.1.0.tar.gz |
|---|---|
| Size | 20.6 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
1cfd76c1b4961bcf22c7fb2a50e99cc303110b312a50652370dc86e50f3840ab
|
|
BLAKE2b-256 checksum How to use checksums |
c68272f14452eb7b49b87bee81b776d70fb487ddbdda934fe8086738184954fc
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 4, 2026.
Transparency logRelease files / aiopoolside-0.1.0-py3-none-any.whl
| Download URL | aiopoolside-0.1.0-py3-none-any.whl |
|---|---|
| Size | 18.1 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
2bd3b6f3c4b6022c4c087dc264d08cb7895fc8b0790fafbb7463fcdeffc8cc95
|
|
BLAKE2b-256 checksum How to use checksums |
5b3683c2cde7c283c0373d373f3af43e45da2924018e78fdc4da1091e5aac51f
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 4, 2026.
Transparency log