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.6.2.tar.gz (228.0 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.6.2-cp314-cp314t-win_amd64.whl (603.6 kB view details)

Uploaded CPython 3.14tWindows x86-64

aioesphomeapi-45.6.2-cp314-cp314t-win32.whl (547.5 kB view details)

Uploaded CPython 3.14tWindows x86

aioesphomeapi-45.6.2-cp314-cp314t-musllinux_1_2_x86_64.whl (725.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

aioesphomeapi-45.6.2-cp314-cp314t-musllinux_1_2_i686.whl (748.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

aioesphomeapi-45.6.2-cp314-cp314t-musllinux_1_2_armv7l.whl (667.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.6.2-cp314-cp314t-musllinux_1_2_aarch64.whl (713.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

aioesphomeapi-45.6.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (716.5 kB view details)

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

aioesphomeapi-45.6.2-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (649.1 kB view details)

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

aioesphomeapi-45.6.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (706.3 kB view details)

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

aioesphomeapi-45.6.2-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (735.4 kB view details)

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

aioesphomeapi-45.6.2-cp314-cp314t-macosx_11_0_arm64.whl (636.7 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

aioesphomeapi-45.6.2-cp314-cp314t-macosx_10_15_x86_64.whl (643.5 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

aioesphomeapi-45.6.2-cp314-cp314-win_amd64.whl (564.8 kB view details)

Uploaded CPython 3.14Windows x86-64

aioesphomeapi-45.6.2-cp314-cp314-win32.whl (506.8 kB view details)

Uploaded CPython 3.14Windows x86

aioesphomeapi-45.6.2-cp314-cp314-musllinux_1_2_x86_64.whl (716.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

aioesphomeapi-45.6.2-cp314-cp314-musllinux_1_2_i686.whl (741.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

aioesphomeapi-45.6.2-cp314-cp314-musllinux_1_2_armv7l.whl (652.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.6.2-cp314-cp314-musllinux_1_2_aarch64.whl (692.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

aioesphomeapi-45.6.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (708.9 kB view details)

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

aioesphomeapi-45.6.2-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (650.3 kB view details)

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

aioesphomeapi-45.6.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (686.3 kB view details)

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

aioesphomeapi-45.6.2-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (729.9 kB view details)

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

aioesphomeapi-45.6.2-cp314-cp314-macosx_11_0_arm64.whl (591.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

aioesphomeapi-45.6.2-cp314-cp314-macosx_10_15_x86_64.whl (604.4 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

aioesphomeapi-45.6.2-cp313-cp313-win_amd64.whl (552.3 kB view details)

Uploaded CPython 3.13Windows x86-64

aioesphomeapi-45.6.2-cp313-cp313-win32.whl (498.7 kB view details)

Uploaded CPython 3.13Windows x86

aioesphomeapi-45.6.2-cp313-cp313-musllinux_1_2_x86_64.whl (712.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

aioesphomeapi-45.6.2-cp313-cp313-musllinux_1_2_i686.whl (739.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

aioesphomeapi-45.6.2-cp313-cp313-musllinux_1_2_armv7l.whl (661.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.6.2-cp313-cp313-musllinux_1_2_aarch64.whl (683.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aioesphomeapi-45.6.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (705.1 kB view details)

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

aioesphomeapi-45.6.2-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (657.2 kB view details)

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

aioesphomeapi-45.6.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (677.1 kB view details)

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

aioesphomeapi-45.6.2-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (728.5 kB view details)

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

aioesphomeapi-45.6.2-cp313-cp313-macosx_11_0_arm64.whl (586.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aioesphomeapi-45.6.2-cp313-cp313-macosx_10_13_x86_64.whl (601.2 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aioesphomeapi-45.6.2-cp312-cp312-win_amd64.whl (556.6 kB view details)

Uploaded CPython 3.12Windows x86-64

aioesphomeapi-45.6.2-cp312-cp312-win32.whl (500.8 kB view details)

Uploaded CPython 3.12Windows x86

aioesphomeapi-45.6.2-cp312-cp312-musllinux_1_2_x86_64.whl (716.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

aioesphomeapi-45.6.2-cp312-cp312-musllinux_1_2_i686.whl (744.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

aioesphomeapi-45.6.2-cp312-cp312-musllinux_1_2_armv7l.whl (664.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.6.2-cp312-cp312-musllinux_1_2_aarch64.whl (688.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aioesphomeapi-45.6.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (709.9 kB view details)

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

aioesphomeapi-45.6.2-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (660.7 kB view details)

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

aioesphomeapi-45.6.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (682.3 kB view details)

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

aioesphomeapi-45.6.2-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (735.4 kB view details)

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

aioesphomeapi-45.6.2-cp312-cp312-macosx_11_0_arm64.whl (593.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aioesphomeapi-45.6.2-cp312-cp312-macosx_10_13_x86_64.whl (607.9 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aioesphomeapi-45.6.2-cp311-cp311-win_amd64.whl (564.6 kB view details)

Uploaded CPython 3.11Windows x86-64

aioesphomeapi-45.6.2-cp311-cp311-win32.whl (508.3 kB view details)

Uploaded CPython 3.11Windows x86

aioesphomeapi-45.6.2-cp311-cp311-musllinux_1_2_x86_64.whl (731.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

aioesphomeapi-45.6.2-cp311-cp311-musllinux_1_2_i686.whl (767.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

aioesphomeapi-45.6.2-cp311-cp311-musllinux_1_2_armv7l.whl (673.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.6.2-cp311-cp311-musllinux_1_2_aarch64.whl (706.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aioesphomeapi-45.6.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (723.0 kB view details)

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

aioesphomeapi-45.6.2-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (672.3 kB view details)

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

aioesphomeapi-45.6.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (701.3 kB view details)

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

aioesphomeapi-45.6.2-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (756.3 kB view details)

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

aioesphomeapi-45.6.2-cp311-cp311-macosx_11_0_arm64.whl (593.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aioesphomeapi-45.6.2-cp311-cp311-macosx_10_9_x86_64.whl (605.7 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for aioesphomeapi-45.6.2.tar.gz
Algorithm Hash digest
SHA256 d09d89101d46cddb6ed07e4f038fc85d2e20038f041c098141c4f8f051c1567d
MD5 c0ba7db01028e4e4d41359f2cbbedab4
BLAKE2b-256 9aa583619d21e0e9850251dafb8731b6c15b6fd4615d9a50fd3979d36f0e3932

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 762680424709644a1fb856cecad4dc4b96c694cd2e236e1aa1690d6d854df5d2
MD5 7b384ef4cf10d8cdbbf7974a3d8264fc
BLAKE2b-256 59072b29a5ae03cb31895e46f48955218fac42ddab34b17200d323d676d015e9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.2-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 35290028ed88e09007a10d7d746ad628713217e2f445c2199cbf54a7073b5570
MD5 4cede955723d66cef42636abcba79aa1
BLAKE2b-256 5ea90965c0908cc6ef7a5ba1674c46dd9e833dbecd7f819fce746ffe872168d2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bae31cc12e93dc0b79bf93b1bdcef7913375987541d8d6a8bed4eda2cee5a1e8
MD5 7f14a149b85c6ba42323e267955ff345
BLAKE2b-256 40d4e3d73197d16b8a7f582275ae3501b75227386b6d1bb7a4a81fdde4506793

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.2-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 dad7d84e976d6914efe2fecbc09acb58cf0bc34ffddbca351911610b20797f73
MD5 3170d4aa6ae946aed68626a1a39c08b6
BLAKE2b-256 7eadb0815dada247bd13d7bfdbaec4ef5b1fcb19d27b069a6e417085a906c7d0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.2-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0226a84a26debaf203c4cd5451dbf87f79cf9e1a25c86f27fdf61614777b2c9e
MD5 7cd45fa05754f8dc82af251b80790f4b
BLAKE2b-256 aa8620f9ea15c66a72b1b7a64dce6d74a060e906e1f2b20b06d4e42750fbbe0b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1123dce733508feee2d3825d3ba5d389bd744812e25bbdef74673f38b1ff995b
MD5 0a4f985da77775bf9a4169aa8e22cb93
BLAKE2b-256 b068b0f13355f8ee1a028412d29f0bf33a0c7efbafc67a8120e846e458f59832

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.6.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.6.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.6.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b41cd9730806dea3ffe95fef0a4a6d94e9fb1a8af388b30a00939cca9b2a806f
MD5 e8c770b5325e913a7d5cbb7ed7cf12a4
BLAKE2b-256 15c8c6bea60cedb338467c1e8fa9fe679beb4d89abd9156e3666b3f0d4ddc17a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.2-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 3c8f8b2d5f7642ef654c20ef88c7911ac8dfe6eb98188c196a88ea9bb0ea553a
MD5 10a99afed978beeb3fcbd7ae04c8852b
BLAKE2b-256 6cd92766ba0fa17899d6ab93092f33dfd088009e0b7a17a183a7aec2d197b655

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 842c711b5ac65963304f24595f2c4447033bc999aac951c2de16589f9c759f88
MD5 f07123ea0fc558a437a0ac398073f9c8
BLAKE2b-256 3ae60cf1056632df166144ff2a998dbbff6b768f6c34882132a4c8f4391ca842

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.2-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 61c4c5471c4d4b44b774947bfff6be2729a3324768d3e482b377df5dbab4c64e
MD5 202f48d7b8fcb35339539f8a3dbe7dd7
BLAKE2b-256 8d6fcbd23f736a845c7fc02e174ee6edd304cbe145e28dff81bac7c49beecb88

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 383cfd8a4286d8fc7edb1b46cb4e0d3e78cbce18f7f3818acbed5f053e944a9c
MD5 31393154548ae5909775cb4b66697355
BLAKE2b-256 b697bbe64a88bb95eae309069a0882cdaf82c9b96683917968afa2fb954e6fa5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.2-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 02239e55f360420f01fa43c3de07cb3dadf898ec6219c57281e83611f096634b
MD5 8526ca4f7c8b941973d6279d68337fbe
BLAKE2b-256 d18bf3624153f134dc5e0c571c5294dd6dc3aa0c15d5b06fc41d2443aaa5434e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 c0b023d7f7b5df9cd488283cea7901478ff3ffaae8985e8429ecf4e4fffd89b8
MD5 bfb3e9de8824dd145a7614a914381e51
BLAKE2b-256 cd521c2f04b5ca22a2e857459015250aacc6d54685ec9b61fb5f7fc7f9e89dc4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aioesphomeapi-45.6.2-cp314-cp314-win32.whl
  • Upload date:
  • Size: 506.8 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.6.2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 ad0e22fadeeeca276b9bcaa621439018d653ba3ec566511d874c1dc70343f20f
MD5 353a796601ea1e94e32c2b9551b2a37f
BLAKE2b-256 e54a082dd7cdd6a2c14dce7e11f011cbc43c59ce1a7eca0d327355281c9b2aea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 16b25d74c6567be34a00cc3f1937583c6a981cdb25b53c599eeac52a449e0103
MD5 836fd646e938712994770a4c8ac0013e
BLAKE2b-256 44030eb286760e7b86f4b65ef8caefa97e6e92ec783c9a464aa6c8f69c9e0e1b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.2-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 108223b281a0a8da5ce71a3ab2f0e188dc0eeb3d65fd681361d7ce025dc7a61b
MD5 a9fe2e1add502d73ce54bc0f6b8ba222
BLAKE2b-256 d47fcd99da124f6b0bbe7e55b9fc8be72d41b6353009fe84e5c3078657627207

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.2-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 35d105a933c574105e27884e7f2edd30fcafa860077d5bfe35708e78b728cc58
MD5 a8301f71e4f393f29d60bd6ff6b893da
BLAKE2b-256 b211e526ae3e3afded83e0d3131a11ac9a927aa3bf444923e4bcd5c24da64791

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 60ac73a3786b645434abb23c0db44e77bc1a2fce05837bc246757726d9c2f969
MD5 4c6417359ed5066e2e7762080423fac3
BLAKE2b-256 df60c081bd63933e3130809a908841504c9d93bb0c2189d9e8b4ae04a4938344

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.6.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.6.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.6.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8ce33434514b242ef1bed9a269b2b634db92a5be0a04727728c15689bbbb45fc
MD5 df36d9919f7a383073f5bfd6d9df398e
BLAKE2b-256 8f88109ad5e8163f1c122f7e7d523b7a1e05a06f0a32eb197a188b61cb905742

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.2-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 7489db89b23de0ce23905b44e34ef86e63b4ff41cfd4b1344de4ededaf41c5a2
MD5 79e5915a0aeb22f93018712a40e46470
BLAKE2b-256 7f535a423525e2aece2e51ddb5675bb7cc5ddbd199ac4aa4484abd2f11008658

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 aca2218b2db0b87d80b9aec0326e1413137723b2c1875e4e7719b346731213b9
MD5 b5021549a937b6b8a4e20a94de2c91a7
BLAKE2b-256 3cacc164e43b0501e0a28e27f10aec70bc65b0f12cadcc33c855473af8d06b14

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.2-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 bd2f196555086fa4d205e24500f10aa33a2a44a0be05dd347045d8790e31aedb
MD5 e626270204995b93b87c79272d0185b5
BLAKE2b-256 cf34108a67c6c6a051944ff7ae2fc3b1dbfa87d84f9771770d5367d01e96f679

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cc565c040bc4b84789d57a799291db2b4d19a09edfe8cfe919796ebbab87c8a0
MD5 0b79b305f45a6634a05ae923f32c16e1
BLAKE2b-256 f216bbe4031bef960280bfad4c057f8c305787279c809bdbf571c5165595fbfd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.2-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 d9409c84e8f9a47e512815f3e82d59baacf8fb4831d70f109962dabebc567f76
MD5 32679da42f989d59d08dcefe44241b4b
BLAKE2b-256 aab9cf336b2fb98e0af7373aa3446bf9104765941cadbb598707fc2d27eca941

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 1645a61118da949e4bd7a463be36920dcebd1b1880ddc4107d14475a9033805f
MD5 3336b4a09ed917f1b231c09e55af340e
BLAKE2b-256 88dcfdb4585c67d9dbb363b79beaeea22c66316a06cf56c60800c8d2e9a97e8e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aioesphomeapi-45.6.2-cp313-cp313-win32.whl
  • Upload date:
  • Size: 498.7 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.6.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 201452c36d6c3507137a2c78a222fc8de14ab75cae1c774a265ebb09d58e3a86
MD5 9ccead71d4e69831924202a63384451a
BLAKE2b-256 1f2c4f61f1fcc5ed38829e8c45c718500f31d1053b6d0bff16f456578d61bbce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3a8108dc5ed710b08a53c68833a0a429faccae08e102ed074d1f1f2135593d3c
MD5 2dc5221a7f818937a430cfce824726e2
BLAKE2b-256 fe17a793fc00c8fe8a0227b1deb972b6da3c1755e79c1b11ab8f5ac99308762c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0cb13c54758ab68863058846614a2b533e7547dc479d674d60f5775d55ee0884
MD5 c0c0eaf67aee5bca9d8fb27c5d9713d9
BLAKE2b-256 68774f993ffa388bf2741bfef923401b8ec29771db2d0e2e0b0e00ff18346560

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.2-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 052f8dada796050f05677034f16b88f2e9946991e1fd32f113a5ddf7d78dff91
MD5 fa2fd47a4327ab46f33c0c28d4470c99
BLAKE2b-256 12e094b1a4f4f839c4f8591b9321d7cfe6e92a47fdd1a156b95580fb3facda44

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8c5f008b7df78944700be6683cc241e1210e1d1257b70021297c985e4a828ffe
MD5 b6b7b54d6a2c0aa713e1537af683ec17
BLAKE2b-256 15d1a60a0feeedc957c9aa3146390b63b0016eab9b7ab4d4c7921065c449e9b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.6.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.6.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.6.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 47fa83933be0a3b2907fdd9f06c8ab486e1d47c8b3a71155a8545b4c30cc7d19
MD5 eb447b5ff587b95adb2440668002b56e
BLAKE2b-256 bfbe84c5a61a05b055ce2c9d785960b789781efe53cf19a67ce25b9648a59a00

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.2-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 acb5aec2369d5f4a3daad90da6ea38e2a2dde56d484be8319133083f0170fa79
MD5 5050a9f875349f32c24b83e620b973e2
BLAKE2b-256 423230c24181c144147c27e2accbd69b8d20b177605a8554cc68f0bb6de1f215

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8ecdecbec3112e1ae5a4ae329e010a2b6a832368d15e5e9322c8c0e5cea4d55c
MD5 3551412b35d7c28d6152b2b2f08af207
BLAKE2b-256 b8d998792bb3e915386e9a94fec6bc0c21035059770d4af485d9643312f90e4c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.2-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 d8add63f1f927027f242e3ed70ae0f8500ba484952c3cd546c13653d0a0b9c5f
MD5 41bd3a574a4484e8a5c746fc6eb82067
BLAKE2b-256 30df42fb1fd29a65215b51d1ae7c2d5fb4c8d657582a9cacf261693530c651df

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d76f1bad5f2f40e1b052ef8575c600a5f33df8ffc46c1a7b4c3119ffdedd3491
MD5 f5f1efbeacce29e577a0ed6051fe3bb2
BLAKE2b-256 6292abc1ccdf9ea4fe566d66beebc7a50c879111cdbc495cfdcaf63e6214146b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 4167791d37518afca085012dfa4093875ecf7244feca25e9092640879971b961
MD5 e2d6950305d857f8576d858f969ddb5e
BLAKE2b-256 b4931f088b708127a542b2d5c7761bbf0516bb16322bd87315f8eef2d33410ac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 058a974677b7885fcaa1fc276a2d3cd0adf787260f276576334d7ce6db8c1201
MD5 2637ca4310b4dfaa040ddd2f3cdc667d
BLAKE2b-256 0ea7683745c4ac1e6c4bda8e34c68e16f62b71e2bc278ac36ac0f6d686e5d340

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aioesphomeapi-45.6.2-cp312-cp312-win32.whl
  • Upload date:
  • Size: 500.8 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.6.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 5bb6d50f5b8bee9b1a725b65cdf24a5ca15662879500bb930f233edc6b93a0a1
MD5 5f73904a29bc93a50901b139312fd997
BLAKE2b-256 200b834b8f2e90674b5030362a4d9df15acf45e06441dcef1c392cb0514ef0eb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 699f120b45c905ff53cbb3fcf8515fcc8ea4ea395e7ef4d1fd30315e174f1491
MD5 e34e8bad1b4c7852813f492bdebe12b1
BLAKE2b-256 1d8c0f2d99cf74e4f34615c95e009a316b646585dfac24b4fa0b52ec7c124e05

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 eae44506d4e522d73c1d2864e38173e47f755480e6145dd4330136a087784a1a
MD5 d4a9fe6e5ac4f01e4bd5d36e10c8ca7c
BLAKE2b-256 c20381b2ed62f9ded1ee271cc5b2949212265a7ae43b24425fca8c0979974c39

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3c9671518eaabf54934bebbe209d6d706d6889d95eedb520f30db75fd898b1fa
MD5 c857a34c1c682f2da6ad295f6cb4ecc0
BLAKE2b-256 554e64e01ce6376ec1b61d7ab1216f530ccd274ced3258a7cce83319d415a21e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 470868fd034318b15abd15f47596aca40127738b24ab166ce3c62d46b5ba8382
MD5 480060dcde34a23b6bbe958519aa45a9
BLAKE2b-256 f9274f13772db48c617f5f77cd51ccef047b8e7ccb803893cc8c952bca101d71

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.6.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.6.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.6.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bb15c580c86dd0f0177bf72ea334dac669bc1f0f6883195bb3283141f112cb8e
MD5 ef3f0095b3581f1e1d8829f910ce62dd
BLAKE2b-256 4194c06feaa1a0da602e9ec81ea98d3cc5c9d908605446105e5cffd686aba781

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.2-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 9f22e383999145a89905f956aaa4afb3547945745e8088be8e0e69ef34ea599d
MD5 6e7406e42a5ae57911e87a4313091ef9
BLAKE2b-256 46462309cb1b0045820dd0ff8d967c4c45504175bb3da90b23d320f78eb4448c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 da6982de8057b767e601282c6532f497839b7b24ffb7c618959e1327b703520e
MD5 8ca8dcc6810b441d43782e2165921559
BLAKE2b-256 9fd914b384f330198292b130622f88a070645d69054356095e9cc1518f8280bb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.2-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 501591a84407bf0a352b48b206a8ee23bcc42acfab7683b4cacee41ba138b2f4
MD5 2c01419af6ee2501dac9c76ab282f7be
BLAKE2b-256 d48113a69802c9ed9bb6f876730185b22778dc61f990f757bda4ad85b3bf13b3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 06aff61c10f79b1e23a1fe231ce946281879f3c3b8dbd56e8fe4ad50f5068dc7
MD5 1baef88d24e59bd1b1fca5f107609cec
BLAKE2b-256 e9012ae406e21f2b393f47284c9cce48290638c6c2025f20cd70daab0f626ca6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 0bda7305583eea8eed3f455ed9c3b3f425f3d74bfbf37d92740b61d61edb56de
MD5 ed4a93bf4d493d2e5b0f0d07f4cb7fe2
BLAKE2b-256 e4c514b36019b2d3627abcdeba558fa43fafeab0ec78ebcbae19891ad249a7b5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 40c85729b8a5b61c3a33984737803f92c57e4d2880455283b092890018d836a7
MD5 db31dea5afd02275f54e08f5646697d4
BLAKE2b-256 0d29c603fd7d4ef199db90aee013d9471d5870ce70498837f7047bc6b596af62

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aioesphomeapi-45.6.2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 508.3 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.6.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 6ce6062b8fcdcb50c230d4dcb55b1a6754b0ae523c5f258ec4dd1a301051ceea
MD5 e372c4cfe25382b358d9660a6e43a8c1
BLAKE2b-256 ec47de277794992ffef148071f9c4fe0e2db7003fc1d8480ef51f60baf584124

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2ae5f87dc3264e49a5973f880c3d29ca4e25a72df214609cf178f4b01ebdc1fd
MD5 ddd3074be1069d6ca22bc0dded55b0f3
BLAKE2b-256 67b9d2c9053fe1bc118755b57439ac36b62af27c2ed098b0e90f54f159661237

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2c24c6b0a8c605d9a061e794882b325c26651b4c840b012676957776f16dff00
MD5 8e4daca4331491115f18235e79846889
BLAKE2b-256 6dc8bbd1f4d137f505c0afcebd8842f02a7a268e4a51e27d6966bcb3d1c7897a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a8196e4b2c6dcd90a6e6eca0b60c2d25fe470a78b99f31f59cf66421c43ded61
MD5 5958441309d3e2db4b7c0b13a983e0bb
BLAKE2b-256 ef7a6bab8aaa81d724e88746baddba5ee26fefc56998efe8ae11e95ce11e35de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d35811fbf6ad83d1aa00d8f3f18ae46451d1303c0372c66e0099742f065da84c
MD5 a3c971af75e0bed8105cf0d4c6eb845a
BLAKE2b-256 ea183b0d7a8d48536999c29e4838e9e384e9583f992d228bc86e04ef81572c22

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.6.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.6.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.6.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 52b914a9700e215060fe4b376b6e662d1883a7161bb818a467f24849e7f76dbc
MD5 77fe020aa2bcd6aeeb6611789195861d
BLAKE2b-256 ac1c320836914aa9b7d8f02915f74bd13efbf31fe2dea916801593f24202bb7d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.2-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 da3ef7211645a15d668effce03acf5e5bc531ac3fa7c4c73701cf4672d305fc4
MD5 28c5b75a10872b6ff9f8dd89fce715d4
BLAKE2b-256 0e7a0935a3144d648f97f609419083b5dc6505540b0fb6539bbeaeac74de2851

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 75131004d104bc474a23fe3633e3080efeada751429dc2ed96a512c5c973fca8
MD5 b56b5782817eaca9581fd3a21d6b48eb
BLAKE2b-256 7021d17b1719d68b8c66d7ba332f512bbc32f45ae40b9e927d51fccf0abc4de7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.2-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 35a84295c17166714952d9eb614132183969b025b9d74213016376a000ff3fd1
MD5 955b76fdc3531030b7152198c940f690
BLAKE2b-256 05495dfb681ed599d25321194a3a0fe10f409afe47664775013f427bf0300d4c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5696a551da1c36766cdebee7bfcabd7e0cfd3de859b8981d137ab036775353c9
MD5 1225664795ee79bbfbd0af1c76f40dcc
BLAKE2b-256 1a167eb4a3fd767fe3061e3c1a91592e603a84231901d76dadcb61dc5f403b42

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9100b6b057375ba2cbfe8e16dee07b6d29239cf7bcc729cd2b08e29362be6fa2
MD5 16505f7f4750cc708e6f2ee12b533132
BLAKE2b-256 0dfbb0e32c64a90e25ad880e622ec4618b3adbd90cf665920e479ac5bd8d4a37

See more details on using hashes here.

Provenance

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