Skip to main content

Asynchronous Python client for Nespresso machines over Bluetooth LE.

Project description

Python: Nespresso BLE

GitHub Release Python Versions Project Stage Project Maintenance License

Build Status Code Coverage

Asynchronous Python client for controlling and reading Nespresso coffee machines over Bluetooth Low Energy.

About

This package allows you to control and read Nespresso coffee machines over Bluetooth Low Energy.

Supports the three Nespresso Bluetooth hardware families:

  • Barista (Original line)
  • Vertuo Next (Venus line)
  • Vertuo Mini (VMini)

The machine family is detected automatically from the advertised BLE service UUID. State is exposed through a fully typed NespressoDevice model.

Installation

pip install nespresso-ble

Usage

import asyncio
import logging

from bleak import BleakScanner

from nespresso_ble import NespressoBluetoothDeviceData, is_supported


async def main() -> None:
    device = await BleakScanner.find_device_by_filter(
        lambda d, adv: is_supported(adv.service_uuids)
    )
    if device is None:
        return

    client = NespressoBluetoothDeviceData(logging.getLogger())

    # One-shot poll.
    machine = await client.update_device(device)
    print(machine.status, machine.water_hardness)

    # Or subscribe to live push updates.
    await client.stream(device, lambda m: print(m.status))


asyncio.run(main())

Changelog & Releases

This repository keeps a change log using GitHub's releases functionality. The format of the log is based on Keep a Changelog.

Releases are based on Semantic Versioning, and use the format of MAJOR.MINOR.PATCH. In a nutshell, the version will be incremented based on the following:

  • MAJOR: Incompatible or major changes.
  • MINOR: Backwards-compatible new features and enhancements.
  • PATCH: Backwards-compatible bugfixes and package updates.

Contributing

This is an active open-source project. We are always open to people who want to use the code or contribute to it.

We've set up a separate document for our contribution guidelines.

Thank you for being involved! :heart_eyes:

Setting up development environment

This Python project is fully managed using the uv dependency manager. But also relies on the use of NodeJS for certain checks during development.

You need at least:

  • Python 3.13+
  • uv
  • NodeJS 12+ (including NPM)

To install all packages, including all development requirements:

npm install
uv sync --all-groups

As this repository uses the prek framework, all changes are linted and tested with each commit. You can run all checks and tests manually, using the following command:

uv run prek run --all-files

To run just the Python tests:

uv run pytest

Attribution

This library builds on the reverse engineering work of several projects. Huge thanks to their authors:

  • renaudallard/homeassistant_nespresso_smart — reverse engineered the Nespresso Smart Android app, documenting the VMini (Vertuo Mini), Vertuo Next and Barista GATT services, characteristics, state encodings and authentication. Its protocol documentation is the basis for the parsing in this library.
  • bulldog5046/ha_nespresso_integration — reverse engineered the Original line (Expert/Prodigio) protocol, auth/ onboarding flow and brew commands via BLE captures.
  • tikismoke/home-assistant-nespressoble and everyone before them who helped decode the Nespresso BLE protocols.

Authors & contributors

The content is by Joost Lekkerkerker.

For a full list of all authors and contributors, check the contributor's page.

License

MIT License

Copyright (c) 2026 Joost Lekkerkerker

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

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

nespresso_ble-0.1.6.tar.gz (14.5 kB view details)

Uploaded Source

Built Distribution

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

nespresso_ble-0.1.6-py3-none-any.whl (16.7 kB view details)

Uploaded Python 3

File details

Details for the file nespresso_ble-0.1.6.tar.gz.

File metadata

  • Download URL: nespresso_ble-0.1.6.tar.gz
  • Upload date:
  • Size: 14.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for nespresso_ble-0.1.6.tar.gz
Algorithm Hash digest
SHA256 40065f2146c94756edfebe7ed5340e57deba28b39d43d6f6a1fd236b48161b80
MD5 8fcfe7a4a9fbdeb42886de65a793230c
BLAKE2b-256 70e4fdcc5b5b3efa61e846f85f3fff90bdf24acf2d6037839f8f6cb2291e9367

See more details on using hashes here.

Provenance

The following attestation bundles were made for nespresso_ble-0.1.6.tar.gz:

Publisher: release.yaml on joostlek/nespresso-ble

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

File details

Details for the file nespresso_ble-0.1.6-py3-none-any.whl.

File metadata

  • Download URL: nespresso_ble-0.1.6-py3-none-any.whl
  • Upload date:
  • Size: 16.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for nespresso_ble-0.1.6-py3-none-any.whl
Algorithm Hash digest
SHA256 17f6018b2520013dbf038034ba611862fe2ad86486b48ffba7bbc07a96991c5e
MD5 7ec31a5dff90d2de943402fa8158af45
BLAKE2b-256 5aaad4851b49c2dd34706ff0eba23dd14789e93fba671f2df26539a3698740d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for nespresso_ble-0.1.6-py3-none-any.whl:

Publisher: release.yaml on joostlek/nespresso-ble

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