Async Python library for Bookoo BLE scales (v2 fork by taliexo)
Project description
aiobookoov2
aiobookoov2 is an asynchronous Python library for interacting with Bookoo Themis Mini coffee scales over Bluetooth Low Energy (BLE). It is based on the aioacaia library and utilizes asyncio and bleak for its operations.
This library is primarily designed to be used by the Bookoo Home Assistant integration but can also be used as a standalone library for other projects.
Features
- Connect to Bookoo Themis Mini scales.
- Receive real-time weight, timer, and flow rate data.
- Send commands to the scale:
- Tare
- Start Timer
- Stop Timer
- Reset Timer
- Tare & Start Timer
- Handle notifications from the scale, including:
- Weight characteristic updates (0xFF11).
- Command characteristic updates (0xFF12), specifically for 0x0D auto-timer start/stop events.
- Decode BLE messages into a structured format.
- Provides callbacks for characteristic data updates and general state changes.
Requirements
- Python 3.13
bleak>=0.22.3- A Bluetooth adapter compatible with
bleakon your system.
Installation
You can install aiobookoov2 directly from PyPI:
pip install aiobookoov2
To install for development:
git clone https://github.com/taliexo/aiobookoo.git
cd aiobookoo
pip install -e .[dev]
Basic Usage
Here's a simple example of how to connect to a scale and receive updates:
import asyncio
import logging
from bleak import BleakScanner
from aiobookoov2 import BookooScale, UPDATE_SOURCE_WEIGHT_CHAR, UPDATE_SOURCE_COMMAND_CHAR
# Configure logging
logging.basicConfig(level=logging.INFO)
_LOGGER = logging.getLogger(__name__)
# For more detailed bleak/aiobookoov2 logs, set level to DEBUG:
# logging.getLogger("aiobookoov2").setLevel(logging.DEBUG)
# logging.getLogger("bleak").setLevel(logging.DEBUG)
TARGET_SCALE_ADDRESS = "XX:XX:XX:XX:XX:XX" # Replace with your scale's MAC address
# Or discover automatically:
# from aiobookoov2.helpers import find_bookoo_devices
# async def discover():
# devices = await find_bookoo_devices(timeout=10.0)
# if devices:
# return devices[0].address
# return None
# TARGET_SCALE_ADDRESS = asyncio.run(discover())
def my_characteristic_update_handler(source: str, data: bytes | dict | None):
"""Handle characteristic data updates."""
if source == UPDATE_SOURCE_WEIGHT_CHAR:
# Data for weight char is usually None, scale object has updated attributes
_LOGGER.info(
f"Weight update: Weight={scale.weight}g, Timer={scale.timer}s, Flow={scale.flow_rate}g/s, Battery={scale.device_state.battery_level if scale.device_state else 'N/A'}%"
)
elif source == UPDATE_SOURCE_COMMAND_CHAR:
_LOGGER.info(f"Command char update: {data}")
if isinstance(data, dict) and data.get("type") == "auto_timer":
_LOGGER.info(f"Scale auto-timer event: {data.get('event')}")
async def main():
global scale
if not TARGET_SCALE_ADDRESS:
_LOGGER.error("Scale address not set. Please discover or hardcode it.")
return
scale = BookooScale(
address_or_ble_device=TARGET_SCALE_ADDRESS,
characteristic_update_callback=my_characteristic_update_handler,
)
try:
_LOGGER.info(f"Attempting to connect to {TARGET_SCALE_ADDRESS}...")
if await scale.async_connect():
_LOGGER.info("Connected! Waiting for notifications...")
# Keep the script running to receive notifications
# You can send commands here, e.g.:
# await asyncio.sleep(5)
# await scale.async_send_command("tare")
# _LOGGER.info("Tare command sent.")
while scale.connected:
await asyncio.sleep(1)
else:
_LOGGER.error("Failed to connect.")
except Exception as e:
_LOGGER.error(f"An error occurred: {e}")
finally:
if scale.connected:
_LOGGER.info("Disconnecting...")
await scale.async_disconnect()
_LOGGER.info("Disconnected.")
if __name__ == "__main__":
try:
asyncio.run(main())
except KeyboardInterrupt:
_LOGGER.info("Program stopped by user.")
Development
This project uses ruff for linting and formatting, and mypy for static type checking. Pre-commit hooks are configured to run these checks automatically.
To set up for development:
- Install
pre-commit:pipx install pre-commitorbrew install pre-commit. - Install hooks:
pre-commit install.
Run checks manually:
ruff check .ruff format .mypy --config-file=mypy.ini aiobookoov2/pytest tests/
Contributing
Contributions are welcome! Please open an issue or submit a pull request.
License
This project is licensed under the MIT License - see the LICENSE file for details.
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file aiobookoov2-0.3.7.tar.gz.
File metadata
- Download URL: aiobookoov2-0.3.7.tar.gz
- Upload date:
- Size: 29.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bc0f00af553babc920981aa2c850cfbe81a42ffc383823f9b449ab40dcabc2f9
|
|
| MD5 |
0307a791e748cd520e3dce1ee4bccd5f
|
|
| BLAKE2b-256 |
2664df696805d198d2e003e16bcc6e0ec9eda6875d8e5aa47ecbcc1551183914
|
Provenance
The following attestation bundles were made for aiobookoov2-0.3.7.tar.gz:
Publisher:
pypi.yaml on taliexo/aiobookoo
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aiobookoov2-0.3.7.tar.gz -
Subject digest:
bc0f00af553babc920981aa2c850cfbe81a42ffc383823f9b449ab40dcabc2f9 - Sigstore transparency entry: 231875487
- Sigstore integration time:
-
Permalink:
taliexo/aiobookoo@fe230f3ed6f45754d8f15ffa7be380b21cd06cb8 -
Branch / Tag:
refs/tags/v0.3.7 - Owner: https://github.com/taliexo
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
pypi.yaml@fe230f3ed6f45754d8f15ffa7be380b21cd06cb8 -
Trigger Event:
release
-
Statement type:
File details
Details for the file aiobookoov2-0.3.7-py3-none-any.whl.
File metadata
- Download URL: aiobookoov2-0.3.7-py3-none-any.whl
- Upload date:
- Size: 27.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ab6a5d74024fdd3b9dd1107427d0afe46be55a0d0c40a73e857c23a5bed05f04
|
|
| MD5 |
c3d1fe69339eaae2157c47579a6e38c1
|
|
| BLAKE2b-256 |
0ec4017943047d16637c16653b4d8ded9acc7bf0ccfebd1e2d19431b9fd4e26d
|
Provenance
The following attestation bundles were made for aiobookoov2-0.3.7-py3-none-any.whl:
Publisher:
pypi.yaml on taliexo/aiobookoo
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aiobookoov2-0.3.7-py3-none-any.whl -
Subject digest:
ab6a5d74024fdd3b9dd1107427d0afe46be55a0d0c40a73e857c23a5bed05f04 - Sigstore transparency entry: 231875491
- Sigstore integration time:
-
Permalink:
taliexo/aiobookoo@fe230f3ed6f45754d8f15ffa7be380b21cd06cb8 -
Branch / Tag:
refs/tags/v0.3.7 - Owner: https://github.com/taliexo
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
pypi.yaml@fe230f3ed6f45754d8f15ffa7be380b21cd06cb8 -
Trigger Event:
release
-
Statement type: