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-45.5.2.tar.gz (226.1 kB view details)

Uploaded Source

Built Distributions

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

aioesphomeapi-45.5.2-cp314-cp314t-win_amd64.whl (598.0 kB view details)

Uploaded CPython 3.14tWindows x86-64

aioesphomeapi-45.5.2-cp314-cp314t-win32.whl (542.2 kB view details)

Uploaded CPython 3.14tWindows x86

aioesphomeapi-45.5.2-cp314-cp314t-musllinux_1_2_x86_64.whl (719.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

aioesphomeapi-45.5.2-cp314-cp314t-musllinux_1_2_i686.whl (740.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

aioesphomeapi-45.5.2-cp314-cp314t-musllinux_1_2_armv7l.whl (662.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.5.2-cp314-cp314t-musllinux_1_2_aarch64.whl (707.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

aioesphomeapi-45.5.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (709.9 kB view details)

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

aioesphomeapi-45.5.2-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (643.4 kB view details)

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

aioesphomeapi-45.5.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (701.2 kB view details)

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

aioesphomeapi-45.5.2-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (727.0 kB view details)

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

aioesphomeapi-45.5.2-cp314-cp314t-macosx_11_0_arm64.whl (630.0 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

aioesphomeapi-45.5.2-cp314-cp314t-macosx_10_15_x86_64.whl (637.1 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

aioesphomeapi-45.5.2-cp314-cp314-win_amd64.whl (559.3 kB view details)

Uploaded CPython 3.14Windows x86-64

aioesphomeapi-45.5.2-cp314-cp314-win32.whl (502.3 kB view details)

Uploaded CPython 3.14Windows x86

aioesphomeapi-45.5.2-cp314-cp314-musllinux_1_2_x86_64.whl (708.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

aioesphomeapi-45.5.2-cp314-cp314-musllinux_1_2_i686.whl (733.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

aioesphomeapi-45.5.2-cp314-cp314-musllinux_1_2_armv7l.whl (645.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.5.2-cp314-cp314-musllinux_1_2_aarch64.whl (686.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

aioesphomeapi-45.5.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (700.9 kB view details)

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

aioesphomeapi-45.5.2-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (643.7 kB view details)

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

aioesphomeapi-45.5.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (679.6 kB view details)

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

aioesphomeapi-45.5.2-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (722.2 kB view details)

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

aioesphomeapi-45.5.2-cp314-cp314-macosx_11_0_arm64.whl (584.9 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

aioesphomeapi-45.5.2-cp314-cp314-macosx_10_15_x86_64.whl (599.5 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

aioesphomeapi-45.5.2-cp313-cp313-win_amd64.whl (546.8 kB view details)

Uploaded CPython 3.13Windows x86-64

aioesphomeapi-45.5.2-cp313-cp313-win32.whl (494.1 kB view details)

Uploaded CPython 3.13Windows x86

aioesphomeapi-45.5.2-cp313-cp313-musllinux_1_2_x86_64.whl (705.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

aioesphomeapi-45.5.2-cp313-cp313-musllinux_1_2_i686.whl (731.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

aioesphomeapi-45.5.2-cp313-cp313-musllinux_1_2_armv7l.whl (652.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.5.2-cp313-cp313-musllinux_1_2_aarch64.whl (676.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aioesphomeapi-45.5.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (697.8 kB view details)

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

aioesphomeapi-45.5.2-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (649.5 kB view details)

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

aioesphomeapi-45.5.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (670.1 kB view details)

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

aioesphomeapi-45.5.2-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (720.5 kB view details)

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

aioesphomeapi-45.5.2-cp313-cp313-macosx_11_0_arm64.whl (579.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aioesphomeapi-45.5.2-cp313-cp313-macosx_10_13_x86_64.whl (596.0 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aioesphomeapi-45.5.2-cp312-cp312-win_amd64.whl (550.8 kB view details)

Uploaded CPython 3.12Windows x86-64

aioesphomeapi-45.5.2-cp312-cp312-win32.whl (496.1 kB view details)

Uploaded CPython 3.12Windows x86

aioesphomeapi-45.5.2-cp312-cp312-musllinux_1_2_x86_64.whl (709.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

aioesphomeapi-45.5.2-cp312-cp312-musllinux_1_2_i686.whl (736.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

aioesphomeapi-45.5.2-cp312-cp312-musllinux_1_2_armv7l.whl (656.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.5.2-cp312-cp312-musllinux_1_2_aarch64.whl (681.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aioesphomeapi-45.5.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (702.4 kB view details)

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

aioesphomeapi-45.5.2-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (654.0 kB view details)

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

aioesphomeapi-45.5.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (675.5 kB view details)

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

aioesphomeapi-45.5.2-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (727.0 kB view details)

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

aioesphomeapi-45.5.2-cp312-cp312-macosx_11_0_arm64.whl (586.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aioesphomeapi-45.5.2-cp312-cp312-macosx_10_13_x86_64.whl (602.5 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aioesphomeapi-45.5.2-cp311-cp311-win_amd64.whl (558.0 kB view details)

Uploaded CPython 3.11Windows x86-64

aioesphomeapi-45.5.2-cp311-cp311-win32.whl (503.4 kB view details)

Uploaded CPython 3.11Windows x86

aioesphomeapi-45.5.2-cp311-cp311-musllinux_1_2_x86_64.whl (725.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

aioesphomeapi-45.5.2-cp311-cp311-musllinux_1_2_i686.whl (761.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

aioesphomeapi-45.5.2-cp311-cp311-musllinux_1_2_armv7l.whl (667.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.5.2-cp311-cp311-musllinux_1_2_aarch64.whl (701.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aioesphomeapi-45.5.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (717.0 kB view details)

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

aioesphomeapi-45.5.2-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (665.1 kB view details)

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

aioesphomeapi-45.5.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (695.5 kB view details)

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

aioesphomeapi-45.5.2-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (750.9 kB view details)

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

aioesphomeapi-45.5.2-cp311-cp311-macosx_11_0_arm64.whl (586.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aioesphomeapi-45.5.2-cp311-cp311-macosx_10_9_x86_64.whl (601.2 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for aioesphomeapi-45.5.2.tar.gz
Algorithm Hash digest
SHA256 94a529c5fdfeafeaf6190f02f04fb262015e9d2cd6f2b624a1966cde91e1e34f
MD5 9d5b06cf6e6d864446c7f9237be4aacf
BLAKE2b-256 c690a65412963030de71de19bc2c16bb3da4c2270ec410a52ef25886da9ea897

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.5.2.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-45.5.2-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.5.2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 8ec7e948d002a7d8da07504585d28f26b0e7b941e5df1ccd22d61a52cfcae7b3
MD5 3049fcc612f0e752395b40de4f9c8a8e
BLAKE2b-256 3e71a7f1fa4569a64a81c10903529e95bde3e75dba31994f135e562c6c6c424e

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.5.2-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-45.5.2-cp314-cp314t-win32.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.5.2-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 bbb5a4c7684180d729bf9fe4cb9c57782742586cdfa5c50c6b93f5bafa1e0dd2
MD5 e322e9395543ea4f23c50eb6d8ad30ca
BLAKE2b-256 ef1af5c079daeef99273f672901d123d97273ad9fbf4e763116616918d847d9a

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.5.2-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-45.5.2-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.5.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 87b624210f41230a6652f0c70387bad6f207134d11b9786ac994bbd3d0c87f6b
MD5 427f2dd0830d59a5704847c9177a097f
BLAKE2b-256 bdae3fd2fef6dab6cd98b1285557f01df012769b8268e48507c9d739073359ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.5.2-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-45.5.2-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.5.2-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 55bc40eb22b049ae0e31434910ccbf70636d2c9312a6d9e24f2e53a2d0eca33c
MD5 abdfb6e66aa3bd5e152aba5e545ed137
BLAKE2b-256 e489c4a5486116e30f9a1c9b1076fe37eefe7944fc18709744993c5733e161d2

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.5.2-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-45.5.2-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.5.2-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9ab01f1492fb2fb1aaec87487250927675ff0ce3a47e50a058a5a23f77e75fd8
MD5 094c7ee5b37a115698c8acaf0760f095
BLAKE2b-256 a2c0005b57baa03fdfaafde4ac317aa88bf303436db758b30f222bc6bcaaeaab

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.5.2-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-45.5.2-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.5.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1a2d28a05f89ff167bb55cacc609a1b0d2d25b8b8ac13420b9cefebef02a7a0d
MD5 4584aeeecc7d268581017518faa1d117
BLAKE2b-256 8d07ab744e1c3b125c924aaed86f76990bd319b9a6eddab4c96c653525d15510

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.5.2-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-45.5.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.5.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7ca674245c0f3987285f0af1aac1ca306030c6264459452478a898b756b95092
MD5 737ebee1c0008e142d4e6f5e61306afd
BLAKE2b-256 ed64a9445be4b428683f18b916734f4f309d387b14e7af34ea62c7479ab6dd1e

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.5.2-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-45.5.2-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.5.2-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 1239798233813ce3595e982f3932a06666ab882019a77744b9e36ab28fcc0e62
MD5 149532c3c09891a70dcdf205891ea496
BLAKE2b-256 c6fc122037eb39f35157eb294c69ba57cfa09a291cd9abbcb23a9bce1eb0fe16

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.5.2-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-45.5.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.5.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1308d1eee08c4cf36522789f994a05b6c8cca494a2247d6988df6a0badb6a0db
MD5 f72c7586ddaec07239175d209ff0c572
BLAKE2b-256 c5dda5c214a0e31c70a6ee42179f969425320c666db6f99743bb51950f738b52

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.5.2-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-45.5.2-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.5.2-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 9598e60b11cfcab753f5275d29654f48a65ea013c5d94ac5fd1a4df7e2436049
MD5 d1cc8f566fd8eb648d002788eab9c6d5
BLAKE2b-256 e126f5052bdeb3e0cad5cf8d8b2529be8cb9799f5702ac492d83409af033082b

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.5.2-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-45.5.2-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.5.2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 315120c878f8196ae141923be2be29464166aaff2cd9658a0d52ae71d1486673
MD5 23b6d54afeeee557509d97bbd2850320
BLAKE2b-256 6772dbd9a1c7f764e476bca187daae5fccbabdedd356f5e0c2d14bc546a0828b

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.5.2-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-45.5.2-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.5.2-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 98e2fd6b1e23983ca34b6ded172934ec6d7db01e7f2a66d7918897b73c46f820
MD5 8d8725415f912eab36abb68d71d0c013
BLAKE2b-256 ab1c02f81f8956c9bdc60506e2641ffdbdccec4fd0ba3d7b0484f77912362ddd

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.5.2-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-45.5.2-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.5.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 d60b1b02d9a56b4cf9d357a1b626c5b1927a996bd4382e26612cd528458e6cb4
MD5 06e26260e47872809b7dddfc1b4bff59
BLAKE2b-256 91a93774935982946d93db7874f575bab5303341dd4b32c9d37148b6bd1ba54c

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.5.2-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-45.5.2-cp314-cp314-win32.whl.

File metadata

  • Download URL: aioesphomeapi-45.5.2-cp314-cp314-win32.whl
  • Upload date:
  • Size: 502.3 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for aioesphomeapi-45.5.2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 522e6955d9000f71a217aee24e7e4af3cbba4771a72aadc3c1b584fc45be6393
MD5 d8758e44d263f474160d49b1ebc3d7ae
BLAKE2b-256 d08fc40162942d8e8e94c556299ae2b1e4a87a79660d0db31f5a6830b97804d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.5.2-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-45.5.2-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.5.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a1a1e0d3fc82f78f2294914d02fa275c3b70f8f58f041b4ac4f25b1bf514b3eb
MD5 ecaaec8aac6b773111ec9fe1cf36eadf
BLAKE2b-256 8b500befac47643b7e69e82c14cf616219808d42fffd72a441c75e59f8a10a1d

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.5.2-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-45.5.2-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.5.2-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 98b2fdfb5fe7be557eb7f782baaa5fc5ca5e11a702ebbc1a7fd0d1f2c69e77f1
MD5 8954214c5ef3d59343454b6f0341fd4e
BLAKE2b-256 8c22cb286e5e7e0f60f842bec29330fbab5ee587f730563f8d25bf7faf1a53e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.5.2-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-45.5.2-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.5.2-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d9687946ee7558c9429eb24662adb509c0a022e5db8acd164ca40103aa7a532a
MD5 93bb7bbd84c0b17d00cec7b2058da47d
BLAKE2b-256 959c7292e4eefb9336443d8706fa548b12d7f26f53f48664e920555924b461db

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.5.2-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-45.5.2-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.5.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 177d6575c478872159d31a525669d3bfb0b7fc4a85245c9f737d0fea454f5c2b
MD5 307bb022124c1045ac5e707266786d5c
BLAKE2b-256 260585f6a255b71e7ec0d92a899be300ef44aa35267fc2a1c5afc95e533a4e61

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.5.2-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-45.5.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.5.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a519aa3100efb4b174ba1747650ae40f0a70fc44284bc819d5a05092769215f3
MD5 0cc1de2724ceec0b77f6e79c507fd6a3
BLAKE2b-256 cbe95762ebaa09170191202bcf0ab6a3a22f7be671c59899d5f55978beae0ff8

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.5.2-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-45.5.2-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.5.2-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 cfdbe76cddccd62a923b2164687e60328ef63c7a62ef2c9aae928645672b0f49
MD5 88ba3f5206a37b612023870d06cb193f
BLAKE2b-256 83011de1d7712cfb6d5e0518af15d13550d9fe650b7bc839fd711ed5482a77c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.5.2-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-45.5.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.5.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c7cd4b25bc16222c51b8dde8c3d900a4bbe5828dd56dfd8a09e1399e2922fce8
MD5 0f7c383f46eac9b2e1af9a16901cdb7b
BLAKE2b-256 731a01263b3b8de40185a1222c670180191cc7f3fe8a69d785326c92d1fbfdda

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.5.2-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-45.5.2-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.5.2-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 25ef3676976b9466859ef424b5a81a70acfce021511fcee01cac4da6e63df8fd
MD5 6b3435a39ad2e44acf45c00c2c550f84
BLAKE2b-256 3a921853ac01102f9c08588993e5be907ded15bc773b6ae9b25952afc1d22daa

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.5.2-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-45.5.2-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.5.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 72cc474469cc07911671226a89bf3e9813df4e51261e14c7226c65a5c1e1415f
MD5 31e94182de50f9f8f313ea5ef3a00c85
BLAKE2b-256 fc3a3a3ea2cf9c1781564995de567fd1a4a050ffe0f21ed746d585cb4f81a236

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.5.2-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-45.5.2-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.5.2-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 103873e48dd06caa7a0e49fa2be26e5c248c86a9e3bc8d084d6c6323dd9439c6
MD5 0f19cf040e5e91326b790e9acaf34325
BLAKE2b-256 cef9a9c23fb2f232f1925b71a0c6c6951ca48f56e0e1c3ea0b0fa78a41695bf8

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.5.2-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-45.5.2-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.5.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 01e9bbc5b7da7b2f4c645b4bb2e6e4a267b022f0d8f198a5c51d6b55fa21be84
MD5 b6e3365e5f082d7478384a24f8179bf4
BLAKE2b-256 a8f870936296c60c42df2bf2ca5f58c1332b123491655085f5849d438bc2dec5

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.5.2-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-45.5.2-cp313-cp313-win32.whl.

File metadata

  • Download URL: aioesphomeapi-45.5.2-cp313-cp313-win32.whl
  • Upload date:
  • Size: 494.1 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for aioesphomeapi-45.5.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 66c2a1b56dff2e109c0bc4c198810ee051575ca862c20a4ea7df88509bcf7509
MD5 a5c2a81edbb24b6aa42d675deea2983b
BLAKE2b-256 e56946d83eece5bf45d7a6a745f7f03e677dfe54b221c18a582a9507aa881d37

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.5.2-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-45.5.2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.5.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cbf87ac7b48ded39d93f912a32a29136346a1647f8edb12b3d5715d2c40f6289
MD5 73189ae2cef97c7b01a000f927169a37
BLAKE2b-256 71c7059bd503e2b92392f59133dd733ccd8fb01c625db8bfdc55a245723eb095

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.5.2-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-45.5.2-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.5.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6a2f1aa8c0879c2f1cc7093a99ac57a4b8ba30a61240741c6fada616386f05d8
MD5 627c05d3e1ff10e9ea847a2eae01dc4b
BLAKE2b-256 cd8dcea727f97a1dd29af0d4a26be43bc3c3542359a757490984b50bd41b7055

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.5.2-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-45.5.2-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.5.2-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2be0cacd90b0349fac5a9e5a81930a7b6456be0fb21d328fd51552dfe9018021
MD5 174c7fe31df1d0dfc969e6f3223456b6
BLAKE2b-256 68f2c74d744b494404d18a74661f360689a4b4afa75dc6cca1e75b120d5cd37b

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.5.2-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-45.5.2-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.5.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b9f7b3317880e8c23551b08f2c06eb476e4ee23f8c8d07912446e9956c8dd21a
MD5 f0c94e03ae6e2caa0a9b4d519af1fdc9
BLAKE2b-256 20301c4863166b442fbd1a7658413a66748863c77848a9341263f245ff137db1

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.5.2-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-45.5.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.5.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 90c162999f2613cc6c4375dc9b36c0307d37109c6030798c93a80edaf341c699
MD5 7afa857255d61cba7729f583a3e752f5
BLAKE2b-256 c18383b6e5de93b1fa466526e90f887b9d4cf8bb77507a31fc9d325d5c5f54e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.5.2-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-45.5.2-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.5.2-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 abccbe3c0cd0bbf8e95e4ca83534ab201ea3e92b300d8514f8792468607a222d
MD5 55841d46008681855d6d24e159b990ae
BLAKE2b-256 e41655164c942b455d5299f5d63d0faf3ae922e3d96f25faa7f039f020c480aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.5.2-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-45.5.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.5.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6cc32d3ad8e97c2ab606ba71e35b3fc6c057b0fcc640eab05ef039c9a43d77a3
MD5 abaaed4246a5bef37274df95a6f0edff
BLAKE2b-256 85d4d4dc284ec98731be214ffef7f79a0c4443990ad49a8c4c530019af281742

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.5.2-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-45.5.2-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.5.2-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 8640e72cd731ea24735b9ed22abeccec8a679b528919665f20ea4e20f3f9593a
MD5 35553834ebcaa1f07b2fdee432c78d30
BLAKE2b-256 6d268651d6e1b0204969263da86545239a57fdd7a47c1827831d7ce2a30ab452

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.5.2-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-45.5.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.5.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b4c4e27b4e72de869c2c312d10f3f0652b488c514ba6fe027a11c40257933fcd
MD5 ccd102af9eb9d6fc8e92ff8a5d225963
BLAKE2b-256 66bad029293ddadaa57b21145af7ccf486760cb83fcc10338527c9f6652d8bb2

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.5.2-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-45.5.2-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.5.2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 95b984706c0284a84a2f18f834fb33b709d58c675ab930aed3bce09789d541f6
MD5 b0384c0c6a86b707b7c4a8e3cbee1d4f
BLAKE2b-256 e898bf8a1b39a171032ed1192a47d23a9eaf128be56bc12b78693dcdcb654bd9

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.5.2-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-45.5.2-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.5.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 5be3b905c84fe31d01d1f818967a6e6991182cbf02b58228d759415b385a96b8
MD5 843a3d6c935fec22e3c4466f038b03a0
BLAKE2b-256 684e7d2e92e8ad856bca05388642be06d18e6a775e09bb380e7247a3f89e33d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.5.2-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-45.5.2-cp312-cp312-win32.whl.

File metadata

  • Download URL: aioesphomeapi-45.5.2-cp312-cp312-win32.whl
  • Upload date:
  • Size: 496.1 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for aioesphomeapi-45.5.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 5cd41b5cb8bf8dfc48666f93c170c058a68249f8c56e413ab2fe63503bfb51f6
MD5 688056c998c82244962828a061dc4784
BLAKE2b-256 6991dc7a035c396cc58c58f7d77806f48be62cf0224952e483eb6b66a0878563

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.5.2-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-45.5.2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.5.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ef3f64e5e3c3a9ad669200242566522bc63e4440dbe40d09ede1985ce50a001e
MD5 17cdab9d670226c14db47c3069a5b71b
BLAKE2b-256 5157f3b1a9b7deb90baa7556b5a439568511efddee02eae162a7158891551cbc

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.5.2-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-45.5.2-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.5.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 743e8cf640fa2a3a9f07bdd8c53135aa9ab195e0bbbba160e3bbabb63c97116f
MD5 e78c2bb38f189f9271a75f08a178923d
BLAKE2b-256 d3dc994abe0c05cdb970e603295959a8e1d621b138241a9ffdb7d18dc95aa5a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.5.2-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-45.5.2-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.5.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d8eee0006b370da39204d9a5e237563efe8997fb9e1d6c57aa9234b4515869e7
MD5 42c83572ade08ddffe8f8f730d971872
BLAKE2b-256 33c79632c7335acbeb68833532219e0f3e792989f27c0efc8b7943816f1760d4

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.5.2-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-45.5.2-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.5.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0a9f2d2c0fd044c8ab841ef31852ec1d1e1284196163922251413e12f656abff
MD5 032c729234757a0f3bc39bd31943294c
BLAKE2b-256 ea2d1f00a11351ec09c8ebcc3552deb53813de950ee465ab0491c24e5746d4e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.5.2-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-45.5.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.5.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bc6feeb57b9312b5cdb9690643d63d41a0b4acd7a97a450cc8bdb7bc5401fedf
MD5 b9d27d6d1c81da3700d43258122c1df4
BLAKE2b-256 d3c1941cf242003744e9e94fb116fe2477554aef7b7b3d1b665e8b89c59e3de7

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.5.2-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-45.5.2-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.5.2-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 3e39f19e2ee61398b208a503c1da70e4eed24871b6a45b083d293ec6266d4ec3
MD5 fe9b56ad97b32274675f44801d72d854
BLAKE2b-256 c2ff36f8555ff514fe7fc6e415530e293ab25757dd49eb6c2da343416fbdc90f

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.5.2-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-45.5.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.5.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 34bf4a729b5f5c808803a05ea471458d1a827cb786101f2dad548cdb99829b28
MD5 c7fc3573c54f38cc841d6a3c6b10a283
BLAKE2b-256 3a1827f0afe955bad2928757d9737ce6914f1c7d079d02bf781dc3f2416bd62d

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.5.2-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-45.5.2-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.5.2-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 dcd50224bd882daceae382b7e6959baf001f291b749499847927ba4f94f8e649
MD5 2c292bd6e5f3b39fe413c683ea6e0008
BLAKE2b-256 b2d6f3faeb8487c0d6ef1d209eeb71161db30b8ba264a65b1edda50ce8afd47e

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.5.2-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-45.5.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.5.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fd5114fa664cd9532169ebae16470f3ff1648e50f31e6ab55c856d919959d0ac
MD5 c0523212853daade8adf61c2818d3082
BLAKE2b-256 e703a7c905502796001a2d1a46f640373b068717380a360257854ddcb22a3c43

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.5.2-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-45.5.2-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.5.2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 877ff734889c51f4987329f1962589d33876dfaeb774c6c5edf3521528a7ceed
MD5 35e76bbe152b837a7085e0ace447093d
BLAKE2b-256 6e97f93a7692152a9bcc7610f9905dbd4a31fdaeb1af0c2e8d9674e249818f83

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.5.2-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-45.5.2-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.5.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 92b1a2c5cec638334ec1a6524529e1bafbd4521af9199577f58c31bf137750a7
MD5 73bd11f78aba2032e103378e5ebd9887
BLAKE2b-256 0061b0897997b7513da5c23dcb95871ef31eca452db78a8a5026f50feef6792e

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.5.2-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-45.5.2-cp311-cp311-win32.whl.

File metadata

  • Download URL: aioesphomeapi-45.5.2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 503.4 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for aioesphomeapi-45.5.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 0533e56343e1731c5c4476b9a2fecea899c537874ff8e0cb1d3841754aaba2f3
MD5 32dc22962b67e76c220143305df52da3
BLAKE2b-256 63f49480e6a02f86ecf04b6222880ca27e95d5760840fad1ab0df98531766ce7

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.5.2-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-45.5.2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.5.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 63810efda10b86910519a13be494ea1fb3b9a129d4c64ff015e537b8df483877
MD5 73b240b1db72cb21543c238bfc4f8f07
BLAKE2b-256 7468da145a818c37b2b6091c262e64114a3213ba0e0e31be63fea7d899c0d2fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.5.2-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-45.5.2-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.5.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 952eaa61f88eb3ea41e96570a135fbb268bd9b8c24337e673d5fe80a8410ec9b
MD5 cb48f4be54b7c7fa9d859154ed7ff1c7
BLAKE2b-256 2b3ce56b593d77216b3751d0d557ce1e0b7f94c76e645a9fa7487d5a991312d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.5.2-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-45.5.2-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.5.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cb7043dc696e3e076add78ff6c89f7954dc000a36b2a873e9016fe1ad5ec6fda
MD5 b8003a3a43df79121259a7a65519a9c0
BLAKE2b-256 278a9e5780412e943536a7d3c8f6a4919d111aeb247b46dd93eab169260bb6a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.5.2-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-45.5.2-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.5.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 473aaa68bf36b037b24886fba082b206c5322c5699021af393d7024c13af1f5c
MD5 bf0f04cb79fef1fcb1f4b9d33d0d63fe
BLAKE2b-256 9e488ba71235bc0f9e5113587a69fec66332cedd8e13b8ea3d40dc660008b731

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.5.2-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-45.5.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.5.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 738d695e09e12405e7e272c8c14bab6c003e95446c8b51efd0c9f0c9ac61af33
MD5 3798e70002829195ada2b494bb3a5294
BLAKE2b-256 e053f8621b993275886c100df5a51232a24cd10a411eec1e05e2e99f25465f70

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.5.2-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-45.5.2-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.5.2-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 2a4be893cc78a2ec82a28a9c9d119e01d8f6642cae32e15193a9108012f866d6
MD5 24e127e97f27654af3fe4d6021e1f255
BLAKE2b-256 6ae253c5ed873d772f4afd93bd5490e807c064a508dadaa012e3e61c0e84efbb

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.5.2-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-45.5.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.5.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b4a48644c2c17c616bfd69f1187831d6ea5c7064edb8c2ededde7a941aa749f4
MD5 a7d560069a288bbc733c27b286045c98
BLAKE2b-256 7d49cc519440d6aa8a7b404c88ab2f42757fa43ea3d0fa677a900c58fb1c171e

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.5.2-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-45.5.2-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.5.2-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 a76c769a53153f68a7bba0311b9f2d4498fa0edf6eacf6d081d9d964d51567f8
MD5 f4c7c82a29b6c78ff059014642db96dd
BLAKE2b-256 67f6a89ce39c2d625cae2d533598125928f84bff84975ee9fa77817fbd897e56

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.5.2-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-45.5.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.5.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6bd6cc6f040dcfba634bfb32f70a45807baa73f404794107cceee86e59ff8d52
MD5 3bdeaa5b2b3cc4e0485737702b41f929
BLAKE2b-256 e08a0b6c708be3c204b40b73fc28f3f71a9344605c9929e46dc58a395b07db5e

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.5.2-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-45.5.2-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.5.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d9f71e3d8617e1c2005569a3a9d516f8ee3319b579e762aa5b497ff97a33bc8b
MD5 f10b5e409c6d09526333d380102cdc8c
BLAKE2b-256 ff00266be834e31cba50d840fbdac5ca32c9e612a8c2a3541184707404ad7cc3

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.5.2-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