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.1.tar.gz (227.7 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.1-cp314-cp314t-win_amd64.whl (603.5 kB view details)

Uploaded CPython 3.14tWindows x86-64

aioesphomeapi-45.6.1-cp314-cp314t-win32.whl (547.4 kB view details)

Uploaded CPython 3.14tWindows x86

aioesphomeapi-45.6.1-cp314-cp314t-musllinux_1_2_x86_64.whl (725.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

aioesphomeapi-45.6.1-cp314-cp314t-musllinux_1_2_i686.whl (748.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

aioesphomeapi-45.6.1-cp314-cp314t-musllinux_1_2_armv7l.whl (667.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.6.1-cp314-cp314t-musllinux_1_2_aarch64.whl (712.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

aioesphomeapi-45.6.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (716.3 kB view details)

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

aioesphomeapi-45.6.1-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (649.0 kB view details)

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

aioesphomeapi-45.6.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (706.2 kB view details)

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

aioesphomeapi-45.6.1-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (735.2 kB view details)

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

aioesphomeapi-45.6.1-cp314-cp314t-macosx_11_0_arm64.whl (636.6 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

aioesphomeapi-45.6.1-cp314-cp314t-macosx_10_15_x86_64.whl (643.4 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

aioesphomeapi-45.6.1-cp314-cp314-win_amd64.whl (564.7 kB view details)

Uploaded CPython 3.14Windows x86-64

aioesphomeapi-45.6.1-cp314-cp314-win32.whl (506.7 kB view details)

Uploaded CPython 3.14Windows x86

aioesphomeapi-45.6.1-cp314-cp314-musllinux_1_2_x86_64.whl (716.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

aioesphomeapi-45.6.1-cp314-cp314-musllinux_1_2_i686.whl (741.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

aioesphomeapi-45.6.1-cp314-cp314-musllinux_1_2_armv7l.whl (652.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.6.1-cp314-cp314-musllinux_1_2_aarch64.whl (692.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

aioesphomeapi-45.6.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (708.8 kB view details)

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

aioesphomeapi-45.6.1-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (650.2 kB view details)

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

aioesphomeapi-45.6.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (686.2 kB view details)

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

aioesphomeapi-45.6.1-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (729.8 kB view details)

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

aioesphomeapi-45.6.1-cp314-cp314-macosx_11_0_arm64.whl (591.4 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

aioesphomeapi-45.6.1-cp314-cp314-macosx_10_15_x86_64.whl (604.3 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

aioesphomeapi-45.6.1-cp313-cp313-win_amd64.whl (552.2 kB view details)

Uploaded CPython 3.13Windows x86-64

aioesphomeapi-45.6.1-cp313-cp313-win32.whl (498.6 kB view details)

Uploaded CPython 3.13Windows x86

aioesphomeapi-45.6.1-cp313-cp313-musllinux_1_2_x86_64.whl (712.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

aioesphomeapi-45.6.1-cp313-cp313-musllinux_1_2_i686.whl (739.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

aioesphomeapi-45.6.1-cp313-cp313-musllinux_1_2_armv7l.whl (661.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.6.1-cp313-cp313-musllinux_1_2_aarch64.whl (683.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aioesphomeapi-45.6.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (705.0 kB view details)

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

aioesphomeapi-45.6.1-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (657.1 kB view details)

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

aioesphomeapi-45.6.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (676.9 kB view details)

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

aioesphomeapi-45.6.1-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (728.4 kB view details)

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

aioesphomeapi-45.6.1-cp313-cp313-macosx_11_0_arm64.whl (586.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aioesphomeapi-45.6.1-cp313-cp313-macosx_10_13_x86_64.whl (601.1 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aioesphomeapi-45.6.1-cp312-cp312-win_amd64.whl (556.4 kB view details)

Uploaded CPython 3.12Windows x86-64

aioesphomeapi-45.6.1-cp312-cp312-win32.whl (500.7 kB view details)

Uploaded CPython 3.12Windows x86

aioesphomeapi-45.6.1-cp312-cp312-musllinux_1_2_x86_64.whl (716.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

aioesphomeapi-45.6.1-cp312-cp312-musllinux_1_2_i686.whl (744.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

aioesphomeapi-45.6.1-cp312-cp312-musllinux_1_2_armv7l.whl (664.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.6.1-cp312-cp312-musllinux_1_2_aarch64.whl (688.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aioesphomeapi-45.6.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (709.8 kB view details)

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

aioesphomeapi-45.6.1-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (660.6 kB view details)

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

aioesphomeapi-45.6.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (682.2 kB view details)

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

aioesphomeapi-45.6.1-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (735.3 kB view details)

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

aioesphomeapi-45.6.1-cp312-cp312-macosx_11_0_arm64.whl (593.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aioesphomeapi-45.6.1-cp312-cp312-macosx_10_13_x86_64.whl (607.8 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aioesphomeapi-45.6.1-cp311-cp311-win_amd64.whl (564.5 kB view details)

Uploaded CPython 3.11Windows x86-64

aioesphomeapi-45.6.1-cp311-cp311-win32.whl (508.2 kB view details)

Uploaded CPython 3.11Windows x86

aioesphomeapi-45.6.1-cp311-cp311-musllinux_1_2_x86_64.whl (731.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

aioesphomeapi-45.6.1-cp311-cp311-musllinux_1_2_i686.whl (767.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

aioesphomeapi-45.6.1-cp311-cp311-musllinux_1_2_armv7l.whl (673.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.6.1-cp311-cp311-musllinux_1_2_aarch64.whl (706.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aioesphomeapi-45.6.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (722.9 kB view details)

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

aioesphomeapi-45.6.1-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (672.2 kB view details)

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

aioesphomeapi-45.6.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (701.2 kB view details)

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

aioesphomeapi-45.6.1-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (756.2 kB view details)

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

aioesphomeapi-45.6.1-cp311-cp311-macosx_11_0_arm64.whl (593.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aioesphomeapi-45.6.1-cp311-cp311-macosx_10_9_x86_64.whl (605.6 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: aioesphomeapi-45.6.1.tar.gz
  • Upload date:
  • Size: 227.7 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.1.tar.gz
Algorithm Hash digest
SHA256 c2343eae47e6da656da41de55c0cbf6e7bd1178a968b1c36582d680ef1702630
MD5 4f3d1aa3604e4c3952be1c8471655b8a
BLAKE2b-256 153f74230e3d7333548535604fc999c30da4289b0cd8e376fa8864593fb91a2a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 dbe7d045c692cde33bb9860dc6dd1a2235e2886b2bcfb5911f86e59aff200b47
MD5 a92c50b238652afc5e3214482d65a60f
BLAKE2b-256 026f22ce242403f9357b7c1da1c15d35217affbaa2796c97a02caf82372d3a57

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 48d736c790bfaded86183eafcea06bf357bdf67ef3b9879a86f8a51fbe819333
MD5 b0dbc3b13a6d683fcb5d3ffe67e1127a
BLAKE2b-256 0d49e596c847aa254825c5b82bd7ca0a513e30834b5adcbd2c27ed3553ea3eb8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a27c9751232a6290c2f0088dc7e4c5f801067e74d37cfce3ee6896372f0be9d3
MD5 e6447a8b0d79617cedc930b7ae242494
BLAKE2b-256 d21464f0aff6fc0020f065ea2dd06701f4878d047206e3a1e3ee99a1ba68153e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.1-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5024c969adfa8649a275f5f27bc9a6c0612e29e603ba212a0405b928410fb0eb
MD5 483a1460e7c441a22c9ecd02efc857d4
BLAKE2b-256 e2babeba18377f5a752ab54b28866878a2e9611d377e256c64e348ad24d25fd8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.1-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 856c71a91fcdd554031af4514ab20bbba876f7fd97df5ced6d67e92f5435ee92
MD5 647353e887dac712b21109331d549e9b
BLAKE2b-256 b2a3dfc4260955564e1e1998c491927dfe5c0c9034e3e13cdc4f5044ad41d7ec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 93b1c0ec6398612e88e423278abc34df6d8b92975256d9fd0308d0cf3bd26d81
MD5 524bdf91169e5172be6b440c93d34de5
BLAKE2b-256 53fde56009eca31dd4a64a3da157d3e5ea8e4be378343ff841bec6b80a1c5173

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.6.1-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.1-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.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dc5f5ef50596488050189c5e0071b33c44605118bd29d99e79956a7b6cec7562
MD5 f5001e47150c2eb083ee329cfc12d750
BLAKE2b-256 3b0e3a67d306114a4ea8fbeb2e13c0f1e25034a731316ed07bb6a50bbaf26162

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.1-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 7cd551eea6df4efb3ba03fa3d6d7bfbea9f196861833659ec23a356a34575335
MD5 4a5a8791b8f36f912d46cc3c5c8d111f
BLAKE2b-256 a14e641f15c092808118d6ddbfea2113dc4d49673a40e449dd3c0227eb2d5011

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 04658bce19c6d4f459a757d6889d566558f76b3c788e0d534f7b233e8e0b6fd5
MD5 57185eb99f91805ce9684acbdd2a4aff
BLAKE2b-256 edb261dc727bd2f70c75d08580fb64c03f6e4b85f3b50b08c5a3116f613b11ed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.1-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 c07829b6e43020fbed646b65f88606f742193d2441ff9a9f22b4ee8063ec3121
MD5 7765b6a9ddcc173b5735b3ebecd2163b
BLAKE2b-256 8d7c192ed4491e91386ab3afa67799293cac6406e2b21eb16cd168b2090db1e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 404d86194e2d43ee9d3d1cb9a0b0eb872ea94b45ea35b594c9b67f4d3a00c5df
MD5 64bfb4217a626faf2252b94e14387a53
BLAKE2b-256 24aca838301feea4779cca923ff33f67c72b18186f7227167d83256d230c71cd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.1-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 6262717468c8539f4b285c23e7cf79de5c17ce00e0213d4c5d2eb2257df11598
MD5 0805e5b7512b9cbc12eb39294209cdf0
BLAKE2b-256 886c7b28f00a7eb61222f78ea3bf54d4067e8987bbb16b9fbde11829472b9943

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 a751384803a66547376667ff2356d911cd283d8dbd9c00ff0a25ddd208f992e8
MD5 4d871cd4344cad1f59660867548578b0
BLAKE2b-256 38c62d44a4babf4ca1ec0b4043e8f78bc1ab5f7ddae6568acafc7c729585e51c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aioesphomeapi-45.6.1-cp314-cp314-win32.whl
  • Upload date:
  • Size: 506.7 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.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 53220c700afd97874417beb4088159d88759199f6cbcaa6ab2b84cf5009c3a12
MD5 64a1414224b0a4f03d9df052efa35625
BLAKE2b-256 f2fa3eb4509e2e204bcd5aab29f7896954a65d1353b4a7688646449e48fb3e62

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b137ac716c38a4df0857359772537b60ac97ec2fae89df59817c9be3453d4805
MD5 86202405969b18edb77b2b4489f00001
BLAKE2b-256 f66053943b8d1377ccbb8db26814441225c5d8c3e8b520f13032e36913ac8b6b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.1-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4c11530710fb000880e22524981d816849ded7d298c5c12a38f71693a19a2d04
MD5 df6095779ec4995074e2362619e0c07d
BLAKE2b-256 6232f72b77c8e97d1e7108845abf8dfee3087176a2abceea9c2ebfb46f35fe9d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.1-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 602c4470544a0ec70c1ac5ca19d3d0adac3dfb696b17ad23bc558da8809eb525
MD5 c8f519616db2140020859ae2d33d8f56
BLAKE2b-256 3f8523fd4b4806af601cb629531e02b554a428517741140cbaf72f6d34a26541

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0bac31aa14b35ea739f04cbf2cabb089cd1f6bcd121588e3dde5e93e78831b1c
MD5 9364df4daca4d01744c677332479e082
BLAKE2b-256 8b157f8afff40f689ccb045f2a04a57c12eb86ffc091578dd22a827af77bd67e

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.6.1-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.1-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.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 52111eec3bf82aff30fcc2cdcfa8e2aca1e9a82014955d493d502dd43c2d8f51
MD5 3efffae0ff7b4e187318f7dd3b3c5212
BLAKE2b-256 42f27d11175037b61445b0bc461fc9a02ff95be4044a5a7c66385f98a14ae9f6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.1-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 d2066d7257b1766773282ba5c9b723cac888cb05caa402f2fd59d769de68960c
MD5 448164693e0fb772b99b61ccd178beb0
BLAKE2b-256 b657eeb4e05106611e670d122fe88950d066eb80a460bf190247d18b1b8659bb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 aa0ac9d3441f085bbbff82be5840db22cbed6d69d12ea5576de1e55c6a118f40
MD5 ac021d5e285f8a156434ff9e688621bc
BLAKE2b-256 45c47f726045c5e11d0fb4405b3483729b26521853f4ba8152c213f4a50681fa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.1-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 7752e7434e6603c443db3ddb48807fe6dd07b5e1d57d56acb97916a73044406c
MD5 515aec71cbc8eea17637ea65e60512b9
BLAKE2b-256 407987115a7af48de38c00c8015ec1c0547bd90a53f19bb3d41c3363fa0ace27

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 be3a4a6251adfb4a64a27fed95fe99784e747f16ce2670ae047b62d00e86a59d
MD5 e56aa7ae1fc518551f78513283c598c3
BLAKE2b-256 d3619aa6080bac1bc510ea194abdd06e62319f61b7dfe51552bbca0baf90d625

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 c37a426c3cffc987e934697d320abfb926f91bf9d2dceff60ada19ebcb36bfb8
MD5 f29dd39d2a0e743fdf660f03ae571840
BLAKE2b-256 2a3eeb831fbc62d19e22b3eb929e0bb61f1c1f8e8a9d29a55a6b19e6f6952808

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 6b9e9b936a4efe94183a3f296fce1d68854942d81cdf727a7b4d1323dd338a7c
MD5 e35282945cfb1db854069c4560eb4171
BLAKE2b-256 22516940b327f673f1b0593ecab5ce4d5e8da556ef150501fd4e761e6f092a2d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aioesphomeapi-45.6.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 498.6 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.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 9b7575239bebb30a3da225dbab8533606cfeff88fdaa89fa66f811d42fc77d51
MD5 5bdf4117345e0baff9482e65c3143614
BLAKE2b-256 ce19f4f522d09e0fdde8e06686439a88af763cb28bfbd2f7e6ff79c17ea78715

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 70106c44a08b2fd4e8d4a31ced51cac34a3c4d3b7896e1b92d628f84ffaa95bf
MD5 e6ec13db4c166d3878b6b73736914850
BLAKE2b-256 eeb0c40b669f117446afdafa77f1d0016a9a2f88d3d98f73c449a598910a72cc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4b41ea38b79c89751e93f8803d3cc275a3d50b98f186800f94f0ca086d7918a1
MD5 fabbc4294820eda7019673f68a204657
BLAKE2b-256 6cf3425a15970413a514ce15278c96c64eaa9ffcdb97792d12d110e1ad4b2d21

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f99db1161839913da12c7fd8d3448e84309e488040fec2ee72427c6c680b36bb
MD5 a141b126c450eb97567151d78b84b8af
BLAKE2b-256 ff4a99953a2251ed8d0c3fba10f6edefa26f47551144e32c0fc4e3e96f0f647c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2af193ec22fa3613399490cd3211239ae16fe7742f9c40192e1a02123c58096d
MD5 7b1225eeb454c1a17ceec301fb681b48
BLAKE2b-256 71ce20d971f8be021dc38cdd2b60bc1c99f968ca3df0844346cfed0f6be88588

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.6.1-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.1-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.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 05c33057fc5a60976b62f3786711d594142867f46110a7dfffbd2c9c8597f9c8
MD5 003d9bdbf0d52ba7a31dad3007520868
BLAKE2b-256 cb04c2d72ac22c5fe2357fe03f27ed19290e6b1270d7b4260cfd02a2c0148b83

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.1-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 29eccbd05f6c7475339008b00a8a19c36e9c7aa8b2294b8d561efe0b5b622e1d
MD5 8f5da259dacab8e12df0f11c420880e6
BLAKE2b-256 2bfac3c31b71ada262bec7fc0978afb51dfa53372fe97b594b8f67582acb420d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 668783d1e0c6e2d485bfb82f717e08a81d19ddd23efdaae8225b03d9e8a1e0d4
MD5 a870efa146abe0f64fc6501d696a629b
BLAKE2b-256 54e6c4eec98da1781ba07059d7ac47e2c09ff1a6d2d4ad123a2e1b000a5f9b5b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.1-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 bf625ae6c776403c10581d5de76c99cbbde51052a396395b16123c1024d810a1
MD5 e6524c37b14ccb751b6182386cbb9ea5
BLAKE2b-256 64e73cbf09ef011d633b4932d8c8d307cd65706a74caed0bcb0c084bef1eb837

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d648a1f96a142f36880948cbf9ed4c68a89f9d6a05fc9b03128dda8b80c161e4
MD5 8ee70533bd50b562a941137cd19f1472
BLAKE2b-256 0e9af23c0a4db49c29dc978ce9bf715d14181a5ad814e49ce1269cdc2b6d68cd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 e045fcf5142b079a741ed8d5102f5594d2d5f5edbf2163a5189bc9b323b968db
MD5 c6a35977b3018d75a4c483187a532297
BLAKE2b-256 778011e003f9ef8dfd496b927ea7cf8b3233a11c7b3df9ee59d10a098043277c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e55871ccc36cb8a96e415c625205439a92dc706f765ab34e338c896f4408a735
MD5 9c92460829efc650107e6194023c5a42
BLAKE2b-256 6edf45c55692c2c6ea1870a5fc3bfc34da8df1120e4d09c415be82ebf249feda

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aioesphomeapi-45.6.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 500.7 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.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 5040f6e3776cdb4dd6d884fc4d955d2ca4deda34f6d9f254cb806b54e98f0a4f
MD5 0d301aa40313fcd99df919810f972f81
BLAKE2b-256 290640241207d5754edf5f42d1a0a1f44570c588e83a14f62d62fa419ed6b3c2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 77fe1b277cd6e53e46b4b6add1e773dd0c9f6b36ddb6719a78fc5eb80fd02add
MD5 bc60fec9d13f3d3be579903d55660d25
BLAKE2b-256 f000986e38ff31afffa197920b1667b790f9051c62d4ac92bb6a0858ae6b35be

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2931077daa509bb848da68c3aec4840a3c727349b38531a2ece6f5e4308d04f4
MD5 08e8f4d5bb19152da85b07e599f8ec35
BLAKE2b-256 c731bdbdf1923ea9f51e09a2f5b1b75dc1ebcb8213e4f2eed08389eb506d8d14

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1d664f4f1d1a86494b373e440671c5528cdd8606b78b894c7416a7f6d659e8d5
MD5 d972901e9b1625166cd44da89b3a72eb
BLAKE2b-256 07ab58b9aeaa5328e2ddea4c3407b9a9a02dfdbd3a286f7b94d09a86fc9f515a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d4091e465aaba054685219347a94a762734c2d5384f2bd1bca62ad6ed9f73978
MD5 9b704cdc11342c26e573e9229359768f
BLAKE2b-256 b7c34cd80bd22cda5afcce3efa137714b06e4fcc2aa070aa17ef342c1173129b

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.6.1-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.1-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.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a486b080d27de593296c4e56906dfb61db15857c8e9b06b95ddeb78181bd87f0
MD5 87c5623c18a473827987a9b2fcb6e57f
BLAKE2b-256 ee86de53a9f478c8147f5e83c2254a347ebe894b2b02558e62938565c4ee1dac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.1-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 6d76c3dff0e0890ecefcc8c5bf2944e2e292e9a3c0fd201f6667b5628023aa42
MD5 b888d2488bb37c7e9a852ad8493e64b4
BLAKE2b-256 b20e3eb6b2c5e4d099ddf4894d5b763b7ab5a4825219322c6e58785141e2e968

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fa71922c59b51655c465b20c1495eb648f6802686fe62fd948330a56d01119c9
MD5 146a63a52442e88ff402db78ea1fddc1
BLAKE2b-256 7e2b9dbccf98b7dcb9f3f8ec20a63f2ced01597d9ede0880159d57f9886624f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.1-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 11208b708f627a09cc77dbf792be4abb1801bd18c5354aed1eaa4f8c9487bba6
MD5 669336a25b6495c88d93727cf1a78535
BLAKE2b-256 6eaaac21fc0e04e0357d7b36f0868f53cf54f54bf5c287221f4f73fb338680df

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ba7df2b8eed39fce0a20c12d2a278ac515d4279c411afdffb37c784494d36708
MD5 f43b75d287df27a41c7ff3419e3c9925
BLAKE2b-256 007dab3e4012e66ed3b1d5ac343314de93240efb17367a7bee39e02c3462a16a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b218cca1f025de7f00ed896bb57b14c5323630f078043cec1c87c939385cda6c
MD5 3c641a4ae83ab9dbaca898a2daf9955a
BLAKE2b-256 e98e3685e565ec2bdc40cc1d44ac67364fcc7f432e4d75b8946eb9b472eaa75d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e49772d804c04546c2e2e14edccbc5a97b1bdada6ebe15ced362466e7bdcbad4
MD5 58f447ba01babf22fed6eb3db4c18b2b
BLAKE2b-256 3ea2e9c4374ca949d3e1e99ae4cb34ddf329ac8f1407e29c505266b3d900d07b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aioesphomeapi-45.6.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 508.2 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.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 3a97aa19da1915b014a3304cdd94559eb5ab8cb3bff3f8ad49bab90bfd26ff41
MD5 f7011f91f9fc584c3e5946d3f34cf408
BLAKE2b-256 2c93e16d7ccdba1a1fd133cafd0e064fbbaca5bda6a0c345dbf31bea0c2f92d5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6665a274426beb46cfedc4a758ffc6982ebe2be00e6793d0492885a71c5e5ac3
MD5 ef4e5eb8fb3f5800f3e477f9e3e0d36d
BLAKE2b-256 a66505abcb2984cbb30a2ad1ecbe3b28e1df8583194c4769d937c7ea262bcc07

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 11e9048772009f26f7c8ef48fbbc85a76483e38f2357abc1cd80302e324632d1
MD5 6888b39bc2b1a0073199bd4f16eb41c7
BLAKE2b-256 7e346dfe96e266e9d2bef0c8b7a2f2d56e2c173b237992bd675312b736727ceb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3ef6a83a38b0c04307fd2c52bd641d658ea05e50329c9e916a323b5929f5c560
MD5 1f58884e18f071d8c555462717d9f999
BLAKE2b-256 6018be8f105e024a3ffed4de3413389e33aa96ca27ec8d156c9ef3dd68718131

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 51ee00d73a7c7305b35a909e94633214e2a337359b6f17c49a2feac3d5cb1c16
MD5 a57578734aec4c7e4cce8453d90dccb6
BLAKE2b-256 d3135cc8df19ddb25e6fc012c4979144bdfa80f882d921854a6131856a47be70

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.6.1-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.1-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.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f78428ae7ff6159721340f43d98645df2627fafbe8e9cffd2f67a2e80b7eebe5
MD5 68c3d8fc5743a8633f380a030f6c009e
BLAKE2b-256 948fe0a7b0fa1b0769bfbf4dd5ac1a8c5b9a2d1cbcea6672aafe233821864b4a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.1-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 50ff0c567e4febe3c3447549744fe560042ee72ebc024d9de43306ec46221072
MD5 accc3cc0d77ec3090fced8ce0be876e5
BLAKE2b-256 0f966fe874b17bce43e32aa27dac2b48c31f83ad6321a4adcfdc94faa1d7b3ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 573547029031c26646aaa9159006c5aeb5dc4384f70d918a6925b646ff5a4a73
MD5 342f9e61c858148c0ea3ffd66e74fd59
BLAKE2b-256 e0a44d1f4055b700ea93e956e8b55076ed3575c512f0750eb7dab70f04c57407

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.1-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 065558e40e47f3a37b16ba3ce32be65d524085ef5f7e461ff0b2b50f52bbfce9
MD5 0327ae8ae5a4222171898bb2151fb997
BLAKE2b-256 47d0597da4f7ffbd731975cf70af1ce85f9d60a5ac3160201ea0200ec865c61d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e5a9b376c71e998d4c4c4276aee0af96b8f54946b5e49dbd22a8e76770a27c17
MD5 403efa7d37fc4a312547f6f417fec01e
BLAKE2b-256 04555c3d0bc56235a825b8c831e0ab161624b9b55e569d3c52425587b5369a14

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 454bff900f7df89b55053f3a558020b4751bdc06ffc317a12554241f3b76c89c
MD5 8984a2e024287574ac8a8dee0f6fc0f5
BLAKE2b-256 3112f99001cf7baa369b64236cc8cfa2061dad6321f6db8941f1b53b46d95b2d

See more details on using hashes here.

Provenance

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