Skip to main content

Python API for interacting with ESPHome devices.

Project description

https://github.com/esphome/aioesphomeapi/workflows/CI/badge.svg https://img.shields.io/pypi/v/aioesphomeapi.svg https://codecov.io/gh/esphome/aioesphomeapi/branch/main/graph/badge.svg https://img.shields.io/endpoint?url=https://codspeed.io/badge.json

aioesphomeapi allows you to interact with devices flashed with ESPHome.

Installation

The module is available from the Python Package Index.

$ pip3 install aioesphomeapi

An optional cython extension is available for better performance, and the module will try to build it automatically.

The extension requires a C compiler and Python development headers. The module will fall back to the pure Python implementation if they are unavailable.

Building the extension can be forcefully disabled by setting the environment variable SKIP_CYTHON to 1.

Usage

It’s required that you enable the Native API component for the device.

# Example configuration entry
api:

For secure communication, use encryption (recommended):

api:
  encryption:
    key: !secret api_encryption_key

Generate an encryption key with openssl rand -base64 32 or visit https://esphome.io/components/api/

Note: Password authentication was removed in ESPHome 2026.1.0. Encryption is optional but recommended for security.

To connect to older devices still using password authentication:

api = aioesphomeapi.APIClient("device.local", 6053, password="MyPassword")

Check the output to get the local address of the device or use the name: under esphome: from the device configuration.

[17:56:38][C][api:095]: API Server:
[17:56:38][C][api:096]:   Address: api_test.local:6053

The sample code below will connect to the device and retrieve details.

import aioesphomeapi
import asyncio

async def main():
    """Connect to an ESPHome device and get details."""

    # Establish connection
    api = aioesphomeapi.APIClient(
        "api_test.local",
        6053,
        noise_psk="YOUR_ENCRYPTION_KEY",  # Remove if not using encryption
    )
    await api.connect(login=True)

    # Get API version of the device's firmware
    print(api.api_version)

    # Show device details
    device_info = await api.device_info()
    print(device_info)

    # List all entities of the device
    entities = await api.list_entities_services()
    print(entities)

 loop = asyncio.get_event_loop()
 loop.run_until_complete(main())

Subscribe to state changes of an ESPHome device.

import aioesphomeapi
import asyncio

async def main():
    """Connect to an ESPHome device and wait for state changes."""
    api = aioesphomeapi.APIClient(
        "api_test.local",
        6053,
        noise_psk="YOUR_ENCRYPTION_KEY",  # Remove if not using encryption
    )
    await api.connect(login=True)

    def change_callback(state):
        """Print the state changes of the device."""
        print(state)

    # Subscribe to the state changes
    api.subscribe_states(change_callback)

loop = asyncio.get_event_loop()
try:
    asyncio.ensure_future(main())
    loop.run_forever()
except KeyboardInterrupt:
    pass
finally:
    loop.close()

Other examples:

Development

For development is recommended to use a Python virtual environment (venv).

# Setup virtualenv (optional)
$ python3 -m venv .
$ source bin/activate
# Install aioesphomeapi and development depenencies
$ pip3 install -e .
$ pip3 install -r requirements/test.txt

# Run linters & test
$ script/lint
# Update protobuf _pb2.py definitions (requires docker or podman)
$ docker run --rm -v $PWD:/aioesphomeapi ghcr.io/esphome/aioesphomeapi-proto-builder:latest
# Or with podman:
$ podman run --rm -v $PWD:/aioesphomeapi --userns=keep-id ghcr.io/esphome/aioesphomeapi-proto-builder:latest

A cli tool is also available for watching logs:

aioesphomeapi-logs --help

A cli tool is also available to discover devices:

aioesphomeapi-discover --help

License

aioesphomeapi is licensed under MIT, for more details check LICENSE.

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

aioesphomeapi-44.17.0.tar.gz (186.8 kB view details)

Uploaded Source

Built Distributions

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

aioesphomeapi-44.17.0-cp314-cp314t-win_amd64.whl (609.5 kB view details)

Uploaded CPython 3.14tWindows x86-64

aioesphomeapi-44.17.0-cp314-cp314t-win32.whl (535.9 kB view details)

Uploaded CPython 3.14tWindows x86

aioesphomeapi-44.17.0-cp314-cp314t-musllinux_1_2_x86_64.whl (658.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

aioesphomeapi-44.17.0-cp314-cp314t-musllinux_1_2_i686.whl (677.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

aioesphomeapi-44.17.0-cp314-cp314t-musllinux_1_2_armv7l.whl (606.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.17.0-cp314-cp314t-musllinux_1_2_aarch64.whl (646.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

aioesphomeapi-44.17.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (650.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

aioesphomeapi-44.17.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (590.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

aioesphomeapi-44.17.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (639.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

aioesphomeapi-44.17.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (666.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ i686manylinux: glibc 2.5+ i686

aioesphomeapi-44.17.0-cp314-cp314t-macosx_11_0_arm64.whl (571.2 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

aioesphomeapi-44.17.0-cp314-cp314t-macosx_10_15_x86_64.whl (576.0 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

aioesphomeapi-44.17.0-cp314-cp314-win_amd64.whl (519.7 kB view details)

Uploaded CPython 3.14Windows x86-64

aioesphomeapi-44.17.0-cp314-cp314-win32.whl (463.1 kB view details)

Uploaded CPython 3.14Windows x86

aioesphomeapi-44.17.0-cp314-cp314-musllinux_1_2_x86_64.whl (643.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

aioesphomeapi-44.17.0-cp314-cp314-musllinux_1_2_i686.whl (667.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

aioesphomeapi-44.17.0-cp314-cp314-musllinux_1_2_armv7l.whl (590.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.17.0-cp314-cp314-musllinux_1_2_aarch64.whl (623.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

aioesphomeapi-44.17.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (637.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

aioesphomeapi-44.17.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (585.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

aioesphomeapi-44.17.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (617.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

aioesphomeapi-44.17.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (658.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ i686manylinux: glibc 2.5+ i686

aioesphomeapi-44.17.0-cp314-cp314-macosx_11_0_arm64.whl (531.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

aioesphomeapi-44.17.0-cp314-cp314-macosx_10_15_x86_64.whl (543.2 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

aioesphomeapi-44.17.0-cp313-cp313t-win_amd64.whl (578.2 kB view details)

Uploaded CPython 3.13tWindows x86-64

aioesphomeapi-44.17.0-cp313-cp313t-win32.whl (514.9 kB view details)

Uploaded CPython 3.13tWindows x86

aioesphomeapi-44.17.0-cp313-cp313t-musllinux_1_2_x86_64.whl (656.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

aioesphomeapi-44.17.0-cp313-cp313t-musllinux_1_2_i686.whl (675.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

aioesphomeapi-44.17.0-cp313-cp313t-musllinux_1_2_armv7l.whl (605.3 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.17.0-cp313-cp313t-musllinux_1_2_aarch64.whl (645.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

aioesphomeapi-44.17.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (648.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

aioesphomeapi-44.17.0-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (588.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

aioesphomeapi-44.17.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (637.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

aioesphomeapi-44.17.0-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (663.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ i686manylinux: glibc 2.5+ i686

aioesphomeapi-44.17.0-cp313-cp313t-macosx_11_0_arm64.whl (569.5 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

aioesphomeapi-44.17.0-cp313-cp313t-macosx_10_13_x86_64.whl (574.2 kB view details)

Uploaded CPython 3.13tmacOS 10.13+ x86-64

aioesphomeapi-44.17.0-cp313-cp313-win_amd64.whl (510.2 kB view details)

Uploaded CPython 3.13Windows x86-64

aioesphomeapi-44.17.0-cp313-cp313-win32.whl (454.5 kB view details)

Uploaded CPython 3.13Windows x86

aioesphomeapi-44.17.0-cp313-cp313-musllinux_1_2_x86_64.whl (640.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

aioesphomeapi-44.17.0-cp313-cp313-musllinux_1_2_i686.whl (666.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

aioesphomeapi-44.17.0-cp313-cp313-musllinux_1_2_armv7l.whl (596.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.17.0-cp313-cp313-musllinux_1_2_aarch64.whl (616.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aioesphomeapi-44.17.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (634.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

aioesphomeapi-44.17.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (591.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

aioesphomeapi-44.17.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (609.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

aioesphomeapi-44.17.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (657.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ i686manylinux: glibc 2.5+ i686

aioesphomeapi-44.17.0-cp313-cp313-macosx_11_0_arm64.whl (526.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aioesphomeapi-44.17.0-cp313-cp313-macosx_10_13_x86_64.whl (540.3 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aioesphomeapi-44.17.0-cp312-cp312-win_amd64.whl (512.8 kB view details)

Uploaded CPython 3.12Windows x86-64

aioesphomeapi-44.17.0-cp312-cp312-win32.whl (455.4 kB view details)

Uploaded CPython 3.12Windows x86

aioesphomeapi-44.17.0-cp312-cp312-musllinux_1_2_x86_64.whl (645.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

aioesphomeapi-44.17.0-cp312-cp312-musllinux_1_2_i686.whl (670.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

aioesphomeapi-44.17.0-cp312-cp312-musllinux_1_2_armv7l.whl (600.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.17.0-cp312-cp312-musllinux_1_2_aarch64.whl (620.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aioesphomeapi-44.17.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (639.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

aioesphomeapi-44.17.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (597.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

aioesphomeapi-44.17.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (615.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

aioesphomeapi-44.17.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (663.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ i686manylinux: glibc 2.5+ i686

aioesphomeapi-44.17.0-cp312-cp312-macosx_11_0_arm64.whl (530.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aioesphomeapi-44.17.0-cp312-cp312-macosx_10_13_x86_64.whl (546.2 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aioesphomeapi-44.17.0-cp311-cp311-win_amd64.whl (514.0 kB view details)

Uploaded CPython 3.11Windows x86-64

aioesphomeapi-44.17.0-cp311-cp311-win32.whl (463.9 kB view details)

Uploaded CPython 3.11Windows x86

aioesphomeapi-44.17.0-cp311-cp311-musllinux_1_2_x86_64.whl (659.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

aioesphomeapi-44.17.0-cp311-cp311-musllinux_1_2_i686.whl (691.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

aioesphomeapi-44.17.0-cp311-cp311-musllinux_1_2_armv7l.whl (607.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.17.0-cp311-cp311-musllinux_1_2_aarch64.whl (638.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aioesphomeapi-44.17.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (652.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

aioesphomeapi-44.17.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (606.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

aioesphomeapi-44.17.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (632.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

aioesphomeapi-44.17.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (680.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ i686manylinux: glibc 2.5+ i686

aioesphomeapi-44.17.0-cp311-cp311-macosx_11_0_arm64.whl (531.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aioesphomeapi-44.17.0-cp311-cp311-macosx_10_9_x86_64.whl (544.8 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

File details

Details for the file aioesphomeapi-44.17.0.tar.gz.

File metadata

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

File hashes

Hashes for aioesphomeapi-44.17.0.tar.gz
Algorithm Hash digest
SHA256 ebfe5f2a74958880f0b31c4a6a52e10422edc26a27c79a4932839f1b396fbc9d
MD5 df37ea3957ca880f9e070d311fe2f29c
BLAKE2b-256 1b46909993c3c6195955f16df137cf031e4c40f009085af4a2ab535393c226b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.17.0.tar.gz:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-44.17.0-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.17.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 4b9978b2608b122b291a6dd5723909b4bc9db2bb2c8914b25ee38bdd5717ef03
MD5 a0b8ff9a223212e350624227681ace69
BLAKE2b-256 bb4b756b16226695fec76a23dacd29b30b1d10dd56221b9a79a7025bc44962cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.17.0-cp314-cp314t-win_amd64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-44.17.0-cp314-cp314t-win32.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.17.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 3e5762342f9019e13b7719ec9473d3803fba12977b388fb9f0cfb6a96e2ce099
MD5 9e1f66ac978f7a1bdcfa24df2ae5b32f
BLAKE2b-256 13c12c3db2de891bf82d1d3052c66ad84f97bb2a893bc0eaa3dd3e612ce5bec3

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.17.0-cp314-cp314t-win32.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-44.17.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.17.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ad1b7defcaccad023dcb0e6183297881d308b5af4db6ad4966aaccd54250fa06
MD5 6025f71514a6dba25de61870c4908e88
BLAKE2b-256 1ed276ddd520391b24429d2aeea5ce6fd6609ae7f28a749ec42c8dbc58ebe211

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.17.0-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-44.17.0-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.17.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 190f76230ae91d31e0bcbca6704f905f6ce8ff0569c3c944ac1b9d7d389f522d
MD5 1882635e1831da8ed87d5b77ae6215d1
BLAKE2b-256 1c2b1b54333b7a1ed2bc3fae9c8b51a540d72582c25bc1471cba17ec1c2dd872

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.17.0-cp314-cp314t-musllinux_1_2_i686.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-44.17.0-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.17.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 509bb659e88431c5362cc6705e84799461e8f61142c8532f5f393132a6d872e0
MD5 087fcc69a75b81604f5475b0a4edb59c
BLAKE2b-256 989caf848ff98f6a58e3caeec9b69bff211031ed84868a9aab405d4e41cdcfdc

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.17.0-cp314-cp314t-musllinux_1_2_armv7l.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-44.17.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.17.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2fd5cdbe8cd4f42f31498285bad4d79b8da38f4aff44f3f2342d057cbe20e591
MD5 fe52177194b3c23031cde617ee7c08ec
BLAKE2b-256 9218ed2d72f79bcd49b3ee3f6bf370ce46429799f661fc9cccc22e20f68b4f10

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.17.0-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-44.17.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.17.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 635f4ca45671585c99cafd4aff162d8b2e51fcf99cc9731b361c1d327d5c7bd0
MD5 056e381e5b36f9cf913ec927186970e3
BLAKE2b-256 03e9fd323a7d8a6458ac3705e46157c1719a0a8be7eebd747756d3ce9fc9de57

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.17.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-44.17.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.17.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 637677333ddc8ecd21caf004e1e71764272161f2934677d8e0d67a97fff5b0be
MD5 28cd1343ce378b04dcb2f69dc6c63c6a
BLAKE2b-256 3ae58a3ad0527e48371415dd6078d2a06fdbd7684b9aa194a1d192ba19f5369c

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.17.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-44.17.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.17.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a570bf7deb1553c5cf3ff9855827bdaa782bd60bf1aea1118febd04936751f61
MD5 b42a21ee2c3cdbc8b29f1f950abc0eac
BLAKE2b-256 cc6faffec9db23a148697e98d442cb75dc344a4b349356a49193d4925b2ec6c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.17.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-44.17.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.17.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 3bbd95bc9b6d74c71063db6aafd2d0811ff4720e06f1378a96a9a4eccc890a72
MD5 ab9025f6b6aef5daa51a24a199e706e9
BLAKE2b-256 5c215895daef754d3aba9d4aedb52f73c21b447125b7ab29981615d05522ee9f

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.17.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-44.17.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.17.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 585379e24ac15d0f63fd28c5d6b830624b99724f1c033bee14f00ae11614f3fd
MD5 92cf10d7e767c8ea9bcfeee248205407
BLAKE2b-256 8f2c3c70a787249c3a10ee308a9b1d883f4eee9e0c0ba3f13dd7a3b8ca1dcfa1

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.17.0-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-44.17.0-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.17.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 dc508d6eaecf2179fb0a655b6e0d7355a886b071f4dab36b31156cde1cfdd252
MD5 72c4cc4ef081894050859a77e5bb4745
BLAKE2b-256 3351ddad13601e4ee45f1ae79ee9daa5463f70fddcda3c7c2f8673fd1700e010

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.17.0-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-44.17.0-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.17.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 b563180c1048b093462d98f69f2a450b02eff70116f87fdf31b390b0354d25f9
MD5 0957aace5d36be7b175d4774d0937a1f
BLAKE2b-256 d9b8ae4ff176b64b07e088d37d77726ca3908e1312800eb40bacccfee859889a

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.17.0-cp314-cp314-win_amd64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-44.17.0-cp314-cp314-win32.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.17.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 cc7aa0e09903c5bf1b92cd66ffe6bb6347f59a78e6eaded3ca5c88d96d389332
MD5 4b4c0adf171cf1596f5c0a1683eb512a
BLAKE2b-256 315b0ed2a868f238256744584ecb8d4c315e9098a9a34c298ee617ccb6174814

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.17.0-cp314-cp314-win32.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-44.17.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.17.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 caeccca12cda20997892bb52b2c16bc6b642e0f910f7eef5f84abc1e3e47520a
MD5 9f87e7e7b0f2dc8c3734dd24950a2949
BLAKE2b-256 15051a8c3f154d32da131742f979a3540de0af0a6bb6485d0d20445c4faaaf1b

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.17.0-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-44.17.0-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.17.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ab2c62a3f2b4637acb97b498c4af71c452e794d820b4374cd3df26add4daca25
MD5 f4bc976f9436364184f030fe4bef528e
BLAKE2b-256 e6866ebad8bdfaca0959d902b79a884e539e61447160989413f59f3aa52d0713

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.17.0-cp314-cp314-musllinux_1_2_i686.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-44.17.0-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.17.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ba64666d12d2585b30f5cbffeeb25e7112ee3ae5b80ebfacf7fcffaa811df194
MD5 510d505f6be93b77f2751b78dbdfa78c
BLAKE2b-256 c02e564dcbfc20b5970afc8139f2be54c79ce37f497934e6362d086f3d42a186

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.17.0-cp314-cp314-musllinux_1_2_armv7l.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-44.17.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.17.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d440d435b3ad30fd2f2046bded9140bb7787ab76996a0e42fed89c890bc3c544
MD5 9bd2db8ac26463f3cb1433bf40859106
BLAKE2b-256 c78cd076ba47a77f620c44205952109831cb001f27fd3819face936d05cb7b82

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.17.0-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-44.17.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.17.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9a524d4ccd2cbb7bc31183c95e1f95fe03e308654fde493da434f49e20766918
MD5 4ec2d701bb76fa39076a6961f1585310
BLAKE2b-256 dc0309543850dcf6d481fadaeee74fe4520239aa90ab15571fdfd2ddd98d57f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.17.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-44.17.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.17.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 3d8376798b124e6684a926b392ee0ab77088788114b362ec898917f7f4a3b71b
MD5 ab58e18da010e2a86a350b49a43ab27f
BLAKE2b-256 1907e04c245d7abec707f3555c08695674523ab220b453a9c56e7fafaee97b2a

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.17.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-44.17.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.17.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 caff94b3975be5e6f6e1a79e94a61a08f55fa717af7dbe59ba22d09a13ad69a5
MD5 426b2674937ae6d47e8b21d8a800ed8c
BLAKE2b-256 4e81ea3e40fde040e905c53f8c083fb27bbc3aa71d746772eee07faec6ae4edb

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.17.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-44.17.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.17.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 7954f3695dc0642b5caa8550451981e00b6c41d656cac9c1bf16403b7b5578f2
MD5 f50cefc6ae7fd08ae2566ea1bb30d976
BLAKE2b-256 7373df46119c9d75230e4b573d11614e3e2fca08edfcc6a69ad3d1f640b98a55

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.17.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-44.17.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.17.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0fc9424826e4fafe9f0146fe84d49a7873be0ed74754cbb106315eeeea91c114
MD5 eccbbe55051ed3b5dcee8f2fb97e712e
BLAKE2b-256 a83b2aa1b3ca876611bdedae924999f69bea856b058173e1444634d58e1e39c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.17.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-44.17.0-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.17.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 7dc2937fe5331649ba36119c4c5269d4505450ca2a83a4c6e811426ffa4007c7
MD5 7ee820858d4f6c0775dfaa72fabb9ad8
BLAKE2b-256 35be15d009c568c162c46be8f9a83e24904af227376cd948b96cd39df1e5d913

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.17.0-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-44.17.0-cp313-cp313t-win_amd64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.17.0-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 4d3e37c75a14d7838b71bf2057853a592c1d476764b3c1210f5c3b8000bd4b6a
MD5 f916fbf43e9fed71b51492385833e459
BLAKE2b-256 1f7d8b2e51a5ad619b2d3f963cbb96eae54a30fb1e407c55e3246ce39202611f

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.17.0-cp313-cp313t-win_amd64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-44.17.0-cp313-cp313t-win32.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.17.0-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 346e5a3bbf2a53559b4cf8c9bb1fe6e33336ced6ff2ae694fb70a1ed5ddd24d0
MD5 73bae37a51710c16653987dda8c8aa0a
BLAKE2b-256 9136bf897080921c660e7a9f787445d82cd1be01f9c3623408a211cf5aad90db

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.17.0-cp313-cp313t-win32.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-44.17.0-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.17.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 36962672980230ea277670a1bd825bf546c03d282ccb088bbddc06797d930eae
MD5 a054b413371d7059da99ef3c223c876d
BLAKE2b-256 8fafe25537e77eea9d130d1884d492504e138144e0fd25ed91e25bf3489ce95d

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.17.0-cp313-cp313t-musllinux_1_2_x86_64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-44.17.0-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.17.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2e134d88c16a24c7daf2d7b98a9868786cae41d6cfbb258cabe3e09a30fff980
MD5 7edb2d44d566b8b72024ea9e12872568
BLAKE2b-256 4a4764a6e96c10b8707baf5eab5d0dc50758f0f29510b883cf492e4e40056973

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.17.0-cp313-cp313t-musllinux_1_2_i686.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-44.17.0-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.17.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a663a2da981393f0c56ec69662f7b0903a17571bd8a5fd4acfa832e8de4e4b9f
MD5 6d7eb051c63c8f6f72c0776308579b71
BLAKE2b-256 5bd1d368d1bd1d379a314c39771e17d5b4d22c64964e31c5c2b39d71398f6dcc

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.17.0-cp313-cp313t-musllinux_1_2_armv7l.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-44.17.0-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.17.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ccfa8c6a1a49cc6385dd3e121007162c64bc166e3322012c5e25e5076da5dec2
MD5 293f7d38ee8274aaf186b8f1602c5023
BLAKE2b-256 00268bf3d5639dafa365bc36fce6db05da19ad2ce94629d9fef16ad1ed4d2c11

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.17.0-cp313-cp313t-musllinux_1_2_aarch64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-44.17.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.17.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 827188d5aabb5e6c434805fd2c69eb2f40e660f6cc69ac704b4661b94599fd45
MD5 f0f8dd9f64b8b0b6a1428699e26e43d5
BLAKE2b-256 a37300bb54e788425255411d8d27637c6911762bf69a67fbe1383595f793350c

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.17.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-44.17.0-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.17.0-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 683822c9b1595202e5d301b4b4734b6f2bdb044c93efc659cdd588602fc8bbaa
MD5 e2aba6f86bf452bedaa493c27a270389
BLAKE2b-256 7ff1e300f15669c219cb9ff3f92eb4c22cc48cbf2e8e832d2af359014a4563e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.17.0-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-44.17.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.17.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 53f383cc427efd7139cfc368507ae739c052c4b4c021020b94eff1bee5be553d
MD5 b1ce789edc427d1489dd06bc6cf730c8
BLAKE2b-256 89328511cd67f16aa50a7f0a205f2639c81006b95c474774d64bb9abb1455d28

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.17.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-44.17.0-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.17.0-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 730c642d3d5f9a737a8dd1adeea70cc7d55acd14006149fd38d8eb675bfa2285
MD5 415a6ac5e55796ad4d244f93c0a544a3
BLAKE2b-256 567e03c8013898b93bb2b00e15341b5553085d4f4eac8c1bdfd335b760382495

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.17.0-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-44.17.0-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.17.0-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 50455a52f963b3e3d26e8a9d65770da7a459be950ecb884c94ec5a8f67d66be4
MD5 010f08f2cb147def78b9fa61b0b544a9
BLAKE2b-256 d1dbfb027b501a3635d8aa4bf5d39f632ec8c97ac93a5e2d9fd5e6fdca162902

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.17.0-cp313-cp313t-macosx_11_0_arm64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-44.17.0-cp313-cp313t-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.17.0-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 ba82c4ee88d69cd63873f0caed8b3e8688ea205d3ea3e1c359f5e67f85b200ce
MD5 4b6ea7e8dc1317ca1d9eb30528891b42
BLAKE2b-256 0047657c92963478e2d73616ecbd745344969c6c2e491c6ee0f47ad696274b8f

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.17.0-cp313-cp313t-macosx_10_13_x86_64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-44.17.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.17.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e9478f75d5d5ed245241edb6311c769e635210f8cfad839b5bbb0c5e47ba3343
MD5 19cb6383eb18136adf0179df67526dfb
BLAKE2b-256 de1f503ff33f0fe62ddcc6cb844e1a4e3d9222db39031d6a68c96ce1b465d1d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.17.0-cp313-cp313-win_amd64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-44.17.0-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.17.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 93e99f89c09ee8210d75347aa9f4c3a4c061c1d1f68570bb4a82db69b6effcc6
MD5 944d4ced48364e1b3a8f51f6370c4cb7
BLAKE2b-256 6edf2dca0c8f23afabf8592be69d8a08c7d48934c8480a597af75efec9e5c078

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.17.0-cp313-cp313-win32.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-44.17.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.17.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0aaaaaeac5c899321f262ec3ebd233006583d1926250f159cdb07ac9906c6b9a
MD5 0e94ab4156f8540a606bb1ca18a55fc1
BLAKE2b-256 ceb8f658d962582354ad6c9c9dd07b481c051ae8e66dec7b1bbf026fdb7b5913

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.17.0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-44.17.0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.17.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a45af87f2d8714fe625a1d8120dabe82db639648c7a89ef1ebd87407c8ebd4f1
MD5 6f827e8814c1f1f99ad119f53219ca11
BLAKE2b-256 0cce7a88741349851dc5562b5d7b3d5c352eb1c74e8545f21093b4363342d795

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.17.0-cp313-cp313-musllinux_1_2_i686.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-44.17.0-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.17.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6d89423ff24e3db2d9f12669d8059b9295c7325ca741fb245d90754f8a34f8a5
MD5 097ea93f032f4c320b476d8d64f88a40
BLAKE2b-256 2248b36b661413f39c241acef478945e4a93ef5bd3e973e1e09c83fd68336006

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.17.0-cp313-cp313-musllinux_1_2_armv7l.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-44.17.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.17.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0e42c83cb929ae71ac8f487cb9e501520d7b108139e3c7c25352ceef24a76905
MD5 f1647803ae5472557ff1ef27038289c0
BLAKE2b-256 c991fdb9d1ba10d35b8855cc59d86f29f42a22dd5892012773cc18b97df65497

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.17.0-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-44.17.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.17.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 23eaa9b67278d311bda2579fd5ec9af3920235e81b3cd2dd66370e8f2aa2ae85
MD5 8bfde343784ae4b735d9426f70ba2e0f
BLAKE2b-256 9bd15d1c47936b75820cc88c39689328ab84741163b8492965a768b1c116424d

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.17.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-44.17.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.17.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 2e00c07a7384257664e0c74b842330fca9f4d6fadeed85fbbfdecf1370f895fb
MD5 4254da329f301bba586e9fcab59aad1a
BLAKE2b-256 2453d82a4386096869b9c7a9ee13124f4247513c5d6540613558f63a26bbfbeb

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.17.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-44.17.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.17.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 dd3e7aff062b38f140c73d863931698e2d7eb4bc65b80b4f039d54bdc796708c
MD5 29478008a589d5b5d9b7da5a7ec58e0c
BLAKE2b-256 24b594360d88c6c6980ceb396c3d66551657b2525ab0d8c6694b8c83b3ebf5b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.17.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-44.17.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.17.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 e3ef4c17c563f7d0fbcfb614422db84f39600e4a62b6a511a14295c20949063d
MD5 3301e5a3133d9ce63d3e16acb15315d9
BLAKE2b-256 525e16d3c39897fbf3b7865c44338d81146da3e43f510572dc1f82f01b097c8f

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.17.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-44.17.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.17.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8efa6193294e0ce3078afd0f51025a6fe94a413a18e17e2816412e1f45480a36
MD5 d95a859edcce9d53e2178c50b6848b07
BLAKE2b-256 c58f7b389ebda6b3c1c2b15c2c761378ab1fec24ecd5049ace76c643aa9c5ff4

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.17.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-44.17.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.17.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 24693efcae6aff9dfa5601ae0c2aecb4e4dd11f293e355c9d0ce289ac9e47f1f
MD5 649f0c8143988a8dd545f41caef2db5f
BLAKE2b-256 0c5643dcf2f3563ac34ce86eb9a071f782fe3caecacd28b6ebfdb5385c79281c

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.17.0-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-44.17.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.17.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 48cba07770346a65b166bd15bb605c396b9f716691f52c3d446429b5fdc6acec
MD5 8ded72c0eee497243882d1b87155e2e4
BLAKE2b-256 9a18e24de33bd8340c288127dce9cf07234ae3cb7ddda8f96cdd033935c9e328

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.17.0-cp312-cp312-win_amd64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-44.17.0-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.17.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 36c6e058cc204582cc6723fccab5e44f98571077c134fe0f9bb910575b4ba748
MD5 fd2c0daf45a2e2b45f0ae2fa36863ffc
BLAKE2b-256 34cccf0104bf0e1afdb67eb1e7306a000503669da4a76cd624b0e179beb092b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.17.0-cp312-cp312-win32.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-44.17.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.17.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9a1ae90eecde4615c9946fdfae3bcbf9f19696653a42705ae8305508da07186f
MD5 3d5b825f2fcbe9740edbf17dba6d4bd2
BLAKE2b-256 34ade4b705afa2d4b4ad94a810e5958975aeb8d5acf71dfd57fe9835589f1f47

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.17.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-44.17.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.17.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2805ea46d9d4227e4f3ad68a3de293c52ceefde8054f8a8f0d757d6601350eb9
MD5 87482ca17b0cbb75770b41380432cbed
BLAKE2b-256 97fa8746ba989aac706832202d69019ee57978178446ce42250aba5d166ffabb

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.17.0-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-44.17.0-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.17.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 037cfaf2d5e05e080de5ea2fc0b33864c35faeec8ad918688a2ca101b685d09a
MD5 41cb63eee3f2ded8cdec9b1b9037e6c9
BLAKE2b-256 6ef5d06cdb881f6b5c0198fc2e3662d2ba9f0b4bee980002a4e70b09bac67784

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.17.0-cp312-cp312-musllinux_1_2_armv7l.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-44.17.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.17.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d2716bfc4c9de02d3cf2bad7488dcdafdd6181ae1322e5a3c1a6e2208a636427
MD5 c77e3d6aa66eff10a59d8ebb177cd1ff
BLAKE2b-256 c34c57776f1d646b9df332320fa55ed3898a69a7870250faa06d1bf06e1c361a

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.17.0-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-44.17.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.17.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 aa0293eb994101445e04161d8236c5c308b88f6796752bf0c67c666a1c636aed
MD5 e129950b1d2c39cae08a7b1c3840e4ea
BLAKE2b-256 6a5c16d9f331bb40647c03d749e3b9b29203dfa79dcb7867d8f6289a19eb6fa0

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.17.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-44.17.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.17.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 0d1af5368776afdec4705ee03ded2d6ac63c0643f58b7641e4e15bba1b4fa91d
MD5 fc95bf0d9624032ab12ef7ba4c113005
BLAKE2b-256 f7b28c43be91fec1fe4504a51b32a92a0006883147ad67e8eeabed31cbcb15ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.17.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-44.17.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.17.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 65eb5b0c76ccf77147a5fb17f1ad359fa8d28e3d14fd9cd3b1396211e16975c6
MD5 dc6495b29a69f161393677fe227da7d8
BLAKE2b-256 ede4a75eaa4b7bd75769e7a7289522d39d4bb7c35b97634b3629020e33f8bcab

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.17.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-44.17.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.17.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 ebb1453a1f31ccc0211e8a0818f6ca09dc5699a77d3447268b596980d1bbeacc
MD5 4dbce6f063c878ffbe5f2733e5e28a84
BLAKE2b-256 82cf08e51d354deff75a5f0aeaf65d776d697b73091f8222537e113615480731

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.17.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-44.17.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.17.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2276def4da6d19d0c233887df87f93927d14ea9c23a7ebe7d50947e378abb1c0
MD5 28381ee280a92dccf1b26a8dbb87e457
BLAKE2b-256 8ec3b15e49b5d7d0a2bce55f38edc2e716f9b12c967879f24189c3e27aaa4e6e

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.17.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-44.17.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.17.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 10f89300ab76ac4903ad410d27a630982e06e47fe16cd518984a7873d87ea015
MD5 6bd0a32e6d8c50348630b930591a0b15
BLAKE2b-256 d0b7422242adbe3ca4768f8776e7317ba1ee951587ace7c44556922f2f0a6f25

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.17.0-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-44.17.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.17.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4bbed1a45779d8f859a668c87ca3e20f8f66b539ea8e99fbb5cc20f0b400394b
MD5 25cf2192309235394f126b9c882ddc7d
BLAKE2b-256 7173274268b0780ece4207aadc4b09873267419f09e8a8ffa14b1e9c4b73b79c

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.17.0-cp311-cp311-win_amd64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-44.17.0-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.17.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 de8522943d57a3f4c19ac7dcafc6f352367665a1162aab0997d0b2a09150f0ac
MD5 3e850a42a8814903690462f288526d3b
BLAKE2b-256 f97e11bb29189d01b5d5cce18bb23d106492479017aad1881718503fdbfad093

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.17.0-cp311-cp311-win32.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-44.17.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.17.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 631e8a2b7c60b2e3f0bcfe2e259a511655a0830e48a595154ce8d8fd07a3ea09
MD5 56b94032b817fc01efa442e1779ca471
BLAKE2b-256 a9375e5560427e25a24ca028a58887ca85510f7f1a29c1ffe67c31db3554b52d

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.17.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-44.17.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.17.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 db41ddc97ebf811fbe3a9ca2cab47398190840d501cf99c56038ae8d86e9b368
MD5 6e8cf549c939faa9dba5cdf07f4b0737
BLAKE2b-256 9d8673a2fd46011fec3ebe0f82299767ad17b004dfb8cf27b2ca507f63f28859

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.17.0-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-44.17.0-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.17.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ce44575083ebec00c5c0d4d6f5a7f479915696578b235075cc0947bfa514300a
MD5 9c3ff03bf006d69e5c790ce35ee0b92f
BLAKE2b-256 33afd5592bd20cbea520893099134ce81574da4fa7bc84b9a6f60aed3e82c199

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.17.0-cp311-cp311-musllinux_1_2_armv7l.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-44.17.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.17.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c9774678c857b526712363fdd63eb7b3754109c98957ceb8ef3e814b0f0dd070
MD5 3021505b4f9ba653964584eb4343df4b
BLAKE2b-256 071a8d06aee005b828130bd646f618f29320da1d46ff60bc774c4771da5a62ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.17.0-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-44.17.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.17.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 524f97e1617f820e80817366c257a9641c838c1ece4a74834f6191419631a84d
MD5 ecf2e0eb11c8bcc79ce9f3577b989a32
BLAKE2b-256 7f2a630981025df8ec145394ea503524622d8b4137ec57fa180df49318a2074f

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.17.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-44.17.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.17.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 796e8fe0cd84ff55d6b63622f72c722038c3bf30dbda3cb1111e844f45aa3f36
MD5 e5a9409c6b7a94cb49898eda585b5f78
BLAKE2b-256 c691969b5d61f0befb545cdb01001c2b7ba52edc9080ca5203db9b3016f5861f

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.17.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-44.17.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.17.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6e79836bcf5aeac0700cca73b3af680afb0696fba651278ec9a527d84bbea9a7
MD5 1f68f0f17f988133126a0e5f00e26ca0
BLAKE2b-256 ab26e446c300698baaf08177d8aaaff3a39754a247f9af1620ac38162d905289

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.17.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-44.17.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.17.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 ddf7f0fc1387465ad15ed4ec7fb401e86ffb118d8089ac5fd624e3518fb7aea0
MD5 1a8c54ca3355dd054ab8e33d09f9c4df
BLAKE2b-256 6c736987c5895a97d6ff705d39a5ba75c0b686846bf8fb6ee2aa7b0344a061f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.17.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-44.17.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.17.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b82649e3c0f3bcda89e17dc3e51ed390c4d751805cc7c13a71978fe823dc07b0
MD5 98effffdda136d911311c8193a092de4
BLAKE2b-256 86e659c328f8fd9a6c8d1bcb0e29f19212de33a1106f345df3cb7dcd9688552c

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.17.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-44.17.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.17.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7f5138053d6c78c2959e0fc706357779011648c6fb855886ab851d5805a16b97
MD5 f1278c863166a2719a88fc02f42e7c50
BLAKE2b-256 749ef99390c42bff45b7ecfd4729a794e19c7c3e8659e47da3001321af978bee

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.17.0-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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