Skip to main content

Async Python library for Bookoo BLE scales

Project description

pybookoo

pybookoo 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.11
  • bleak>=0.22.3
  • A Bluetooth adapter compatible with bleak on your system.

Installation

You can install pybookoo directly from PyPI:

pip install pybookoo

To install for development:

git clone https://github.com/taliexo/pybookoo.git
cd pybookoo
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 pybookoo 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/pybookoo logs, set level to DEBUG:
# logging.getLogger("pybookoo").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 pybookoo.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:

  1. Install pre-commit: pipx install pre-commit or brew install pre-commit.
  2. Install hooks: pre-commit install.

Run checks manually:

  • ruff check .
  • ruff format .
  • mypy --config-file=mypy.ini pybookoo/
  • 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

pybookoo-0.4.2.tar.gz (29.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pybookoo-0.4.2-py3-none-any.whl (27.8 kB view details)

Uploaded Python 3

File details

Details for the file pybookoo-0.4.2.tar.gz.

File metadata

  • Download URL: pybookoo-0.4.2.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

Hashes for pybookoo-0.4.2.tar.gz
Algorithm Hash digest
SHA256 456c470b816063566ba30ece1a38f4a66f034533095a94fbc1b958e20daad255
MD5 ee23e37de4816e7507f94071cf053f29
BLAKE2b-256 86de10409f09b84f1ac6a3b4ae029b6f0cbe839e43989a157b51cd9b493d7963

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybookoo-0.4.2.tar.gz:

Publisher: pypi.yaml on taliexo/pybookoo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybookoo-0.4.2-py3-none-any.whl.

File metadata

  • Download URL: pybookoo-0.4.2-py3-none-any.whl
  • Upload date:
  • Size: 27.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pybookoo-0.4.2-py3-none-any.whl
Algorithm Hash digest
SHA256 57ce9c32da541859826758554cc7811bac2a0b647331f2c8c336390572ad7f56
MD5 e8b431efa7b73278aa5f9f99cf3bdef2
BLAKE2b-256 c8b0fbfe7536e69662345a570a29a578344756ce4751f5fdd68f542b6444d615

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybookoo-0.4.2-py3-none-any.whl:

Publisher: pypi.yaml on taliexo/pybookoo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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