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.7.0.tar.gz (228.6 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.7.0-cp314-cp314t-win_amd64.whl (603.8 kB view details)

Uploaded CPython 3.14tWindows x86-64

aioesphomeapi-45.7.0-cp314-cp314t-win32.whl (547.7 kB view details)

Uploaded CPython 3.14tWindows x86

aioesphomeapi-45.7.0-cp314-cp314t-musllinux_1_2_x86_64.whl (725.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

aioesphomeapi-45.7.0-cp314-cp314t-musllinux_1_2_i686.whl (748.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

aioesphomeapi-45.7.0-cp314-cp314t-musllinux_1_2_armv7l.whl (667.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.7.0-cp314-cp314t-musllinux_1_2_aarch64.whl (713.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

aioesphomeapi-45.7.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (716.7 kB view details)

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

aioesphomeapi-45.7.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (649.3 kB view details)

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

aioesphomeapi-45.7.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (706.5 kB view details)

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

aioesphomeapi-45.7.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (735.6 kB view details)

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

aioesphomeapi-45.7.0-cp314-cp314t-macosx_11_0_arm64.whl (636.9 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

aioesphomeapi-45.7.0-cp314-cp314t-macosx_10_15_x86_64.whl (643.7 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

aioesphomeapi-45.7.0-cp314-cp314-win_amd64.whl (565.0 kB view details)

Uploaded CPython 3.14Windows x86-64

aioesphomeapi-45.7.0-cp314-cp314-win32.whl (507.0 kB view details)

Uploaded CPython 3.14Windows x86

aioesphomeapi-45.7.0-cp314-cp314-musllinux_1_2_x86_64.whl (716.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

aioesphomeapi-45.7.0-cp314-cp314-musllinux_1_2_i686.whl (741.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

aioesphomeapi-45.7.0-cp314-cp314-musllinux_1_2_armv7l.whl (653.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.7.0-cp314-cp314-musllinux_1_2_aarch64.whl (693.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

aioesphomeapi-45.7.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (709.1 kB view details)

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

aioesphomeapi-45.7.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (650.5 kB view details)

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

aioesphomeapi-45.7.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (686.6 kB view details)

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

aioesphomeapi-45.7.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (730.2 kB view details)

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

aioesphomeapi-45.7.0-cp314-cp314-macosx_11_0_arm64.whl (591.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

aioesphomeapi-45.7.0-cp314-cp314-macosx_10_15_x86_64.whl (604.7 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

aioesphomeapi-45.7.0-cp313-cp313-win_amd64.whl (552.5 kB view details)

Uploaded CPython 3.13Windows x86-64

aioesphomeapi-45.7.0-cp313-cp313-win32.whl (498.9 kB view details)

Uploaded CPython 3.13Windows x86

aioesphomeapi-45.7.0-cp313-cp313-musllinux_1_2_x86_64.whl (712.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

aioesphomeapi-45.7.0-cp313-cp313-musllinux_1_2_i686.whl (740.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

aioesphomeapi-45.7.0-cp313-cp313-musllinux_1_2_armv7l.whl (662.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.7.0-cp313-cp313-musllinux_1_2_aarch64.whl (684.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aioesphomeapi-45.7.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (705.3 kB view details)

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

aioesphomeapi-45.7.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (657.4 kB view details)

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

aioesphomeapi-45.7.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (677.3 kB view details)

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

aioesphomeapi-45.7.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (728.7 kB view details)

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

aioesphomeapi-45.7.0-cp313-cp313-macosx_11_0_arm64.whl (586.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aioesphomeapi-45.7.0-cp313-cp313-macosx_10_13_x86_64.whl (601.4 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aioesphomeapi-45.7.0-cp312-cp312-win_amd64.whl (556.8 kB view details)

Uploaded CPython 3.12Windows x86-64

aioesphomeapi-45.7.0-cp312-cp312-win32.whl (501.0 kB view details)

Uploaded CPython 3.12Windows x86

aioesphomeapi-45.7.0-cp312-cp312-musllinux_1_2_x86_64.whl (716.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

aioesphomeapi-45.7.0-cp312-cp312-musllinux_1_2_i686.whl (744.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

aioesphomeapi-45.7.0-cp312-cp312-musllinux_1_2_armv7l.whl (665.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.7.0-cp312-cp312-musllinux_1_2_aarch64.whl (688.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aioesphomeapi-45.7.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (710.1 kB view details)

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

aioesphomeapi-45.7.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (661.0 kB view details)

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

aioesphomeapi-45.7.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (682.6 kB view details)

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

aioesphomeapi-45.7.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (735.6 kB view details)

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

aioesphomeapi-45.7.0-cp312-cp312-macosx_11_0_arm64.whl (593.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aioesphomeapi-45.7.0-cp312-cp312-macosx_10_13_x86_64.whl (608.1 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aioesphomeapi-45.7.0-cp311-cp311-win_amd64.whl (564.8 kB view details)

Uploaded CPython 3.11Windows x86-64

aioesphomeapi-45.7.0-cp311-cp311-win32.whl (508.6 kB view details)

Uploaded CPython 3.11Windows x86

aioesphomeapi-45.7.0-cp311-cp311-musllinux_1_2_x86_64.whl (731.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

aioesphomeapi-45.7.0-cp311-cp311-musllinux_1_2_i686.whl (767.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

aioesphomeapi-45.7.0-cp311-cp311-musllinux_1_2_armv7l.whl (673.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.7.0-cp311-cp311-musllinux_1_2_aarch64.whl (706.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aioesphomeapi-45.7.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (723.3 kB view details)

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

aioesphomeapi-45.7.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (672.5 kB view details)

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

aioesphomeapi-45.7.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (701.5 kB view details)

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

aioesphomeapi-45.7.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (756.6 kB view details)

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

aioesphomeapi-45.7.0-cp311-cp311-macosx_11_0_arm64.whl (593.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aioesphomeapi-45.7.0-cp311-cp311-macosx_10_9_x86_64.whl (606.0 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for aioesphomeapi-45.7.0.tar.gz
Algorithm Hash digest
SHA256 66be75dc5962a9fec08a41f375039834b1bfd210bfd5b99efe3404da05002aa3
MD5 93346c034a471e93e8eaafea63279711
BLAKE2b-256 2ba7f56796e0bb67be336eec23749a9ea0b848ffb805d38ebdd52563cc7088db

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.7.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 34d18a0dd6fc7b7548bde87e350ec612aff3580a9cb3abf2d53db4213644f4c1
MD5 0e07ded374696efbcd3d9d233a5af71a
BLAKE2b-256 5e87406acdb97f8c6391072210aacad830f70172786cf58526c767d1e4ce0074

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.7.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 0dc2ed1a36e78c45393dfbd12a22c01a262b773e5af1fe28f90fef18795c7bda
MD5 bb78dc1b2f3d9c2f77e4c3259d6a439b
BLAKE2b-256 e597169eca88a07199579353df2058c1099b33344b198b406c5478844ab1f42c

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.7.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 465ecf4a04862c24e1147c1390aa79cece6d3d5ed15849cee588a7d9eb705ef1
MD5 8229ef99e680a18269bd9916a1bc3ff3
BLAKE2b-256 fcab2facb5d37978b50d2620e0349696bdc8562cb64c8a71bce76074914ec1dc

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.7.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9dbdd29afa203c1d1f69b4c38d3596394f07dd2bc4650e69e2dbbafa7269bac7
MD5 8ed0a6999d647d42b12a9c215dcecbf0
BLAKE2b-256 de7c43dfc4f938017f4d7f87039916d49364a8cb509b616a86061c2fc30b5696

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.7.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 feec9b2912727313448b0fb745ac1b72d4288509ebdd02778cd149294ecb4b66
MD5 1081a67d52b613b74ce8f0e4888d6be1
BLAKE2b-256 33d77d6346b26aeb3d04b8f4f3c096c528a02a02186a69f0d0efd8a5af516f1b

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.7.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2d74deeebb2fc292c878c480638c2e2b0e4bbe8d621a60f6a79c21fff1c276fc
MD5 8f9a506210e527caeb7f7ce74c665fb4
BLAKE2b-256 743d132f84d6265cf449caff3c76106f838140796bed0b56cfbeba74a8b2db51

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.7.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f94455617073751fd9fcfa5cb28bb5022bc3d425d98f205c27413994624909de
MD5 ad66b9b664574779b8656809bb7a29cf
BLAKE2b-256 5ada35622fe5362faae626034d4a97f02c0daf2ae6745fd20af0ea34bd13ee47

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.7.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 f9b5d544641f19de0bfce0614a2008933cffe21b57f4d026f2352f3d74c8caa5
MD5 64856ff5228e31547419bebd0029dfbb
BLAKE2b-256 6e9226d22e909f0b03dba044f22bf08f04221440cf3fcef8cc3671830cff82bc

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.7.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 73a5931554efff1ae487b45e30c95bebb80178844139013235dbd881f1ba97ef
MD5 d197afa0237094b42055c8ca96dbf826
BLAKE2b-256 dea7d959bf4fea3aaa626893a6776d2dc0fe33eddf5804d95a6eab94b1ba57a4

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.7.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 790ae99474a39e9271d69d052fb45a4763a395e4c4a30e96d17166867a524f62
MD5 dff575510c93b588967fd4fe95f8fa92
BLAKE2b-256 399617778621b7ab83071afd10cb9df4c665ba9fed38ffee3f719bd9bd58a5e7

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.7.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a5ea700f4b6f22fcbab48f7fb7fc431e9047c99139abaf330d0c892c890f21b3
MD5 c2e47656e63560aec793d819a5502b63
BLAKE2b-256 fabe64844dcbb431d4a29ffddb939680aaa6f9e91fd49077b8c2d8cdf6ce1fee

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.7.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 149e2d2f997c6005ea75c87a8de2a545dd0efe4ccc8a93b28720d2b9ed06b927
MD5 74b8b172a8004a70ea85483a7a139724
BLAKE2b-256 e4c68f7fa919858cab50d32ffc9b7f7a477f8edf8c2a65b21cd4cfb449867d75

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.7.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 4adafd27d84453b33db68e9b3ed63f14fd6f18a1454d3719744282b330d0aced
MD5 b7ac74f0cd6efdd16672596dff4eeead
BLAKE2b-256 b3323b3be0d53a4a2971562041e74f604046beecaebd1f2ab947b6a24b3b6243

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

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

File hashes

Hashes for aioesphomeapi-45.7.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 43454fdae654227f97d18a3b0372fa66c1fca90bc3cbf03a300c946607d2f3b6
MD5 d8ae6f7b72a51ea54fdfeb6d32f02dae
BLAKE2b-256 cbedf1424b828b82a5f0f03a2da0cf68a5ca4a18bd6127c9cdd7f9da2e83ab8c

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.7.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b840ff4955f962536cf4eb64880ced645c4562bad11c0ed02f89901f5ab79f35
MD5 408153bff1903c65a3e6a593cbb4936a
BLAKE2b-256 131758061cf979b735e0ddf0597d90c79f9a486e069cc5990aeaedb6058fa40c

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.7.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 be049a9e3c589948f7a40d6416d3bfdcbfd56bb1f18fe65a2ed0354fbf4dddf6
MD5 1e1b630b6afedc8ccca4d61a92fb5ae0
BLAKE2b-256 4232ded2823e924984c253d8c3681861db054fb446d1f8734833c92018ebf779

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.7.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6e63936d5dcd3ca366639e57162dddcacd3faca91d8e52b46b0113542e54a83e
MD5 316d5643e517ceef323cde725ea45abb
BLAKE2b-256 829581563cde1ba27a91f4cf3b1ad82ed79fb38e6e742f1035b9cb7430b11a22

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.7.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 28db377501b9e6070c52a76768b84febb03e03f40256bd402aa7910cbaa676cd
MD5 795e899a35a11568d4a6d696117379d0
BLAKE2b-256 43ce4c8c89ed1ccc0b4347920565288342babd991a96caf0ac96fd1e5836161f

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.7.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6fe78beab77202e99a0bd6441d3ac3e7645590686eb54ef390d4143d735902cc
MD5 5d5f8167aebcc22c84ccffebb9744b15
BLAKE2b-256 8d410ec8e4334d7599dd110927afb30f3f56a976f8646614bf2144d06f8a5033

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.7.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 c1e42a029dbb296fbcb0237d5b76357eafff12ca427b4a8f62d8c909bd171537
MD5 880ebad269c09a7e28f7ccf0bc1740c8
BLAKE2b-256 7c151a8255422ad7b72b9039156ced65a1541263143181b326ceb803209793c2

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.7.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 333dc55417a5a9924a7d24ae85df41d8a8458b5dc0cbe485c17cff5c3f79e07c
MD5 29c0f195ac418a150e4e3c79f280b384
BLAKE2b-256 7d7bca9e909b408304e5cfd4a44af3fe537b45a4b5f03facf9f7eb338360d258

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.7.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 a46aea70ba0a036f4a5e98b4e5c9b48176aa5b3a754b45009178344f66e3dfc3
MD5 191b5f79caa443df9a4b02ddea5b7637
BLAKE2b-256 9486f341c94e05f093d1a28748955f51dea968649483dd221321ce9de8c6c254

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.7.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fdafe13fe7462ea6477fe79b33ce1ec04ef30d22aa3731d7bb889c90c83c9fc3
MD5 79144ac3aebe97a535650c8c16785ce2
BLAKE2b-256 1b2e018734f40f92d47ab7dc60061e94d017fa1a8547c302ae79b7b983847f0e

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.7.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 48173741e14165b849163c73fdbd4ab376f5a56d38c694f50588a992fc0cd548
MD5 f480bef5d3c6575dcb7e92f93276d3e0
BLAKE2b-256 267bf5a4dcd621b0af94358a88f3ecd2036b6817566487422c7a869081df8c80

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.7.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 bd36244102de9d06f635ce682868e45a4b8e38126792d902b02885eefe67ddf0
MD5 1be057110a57cc6a3f18206198a4f0c3
BLAKE2b-256 72e3b3d7071c377f203c2f6934a284639a9a637baa7dedae5b06d87a0ffac7a4

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

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

File hashes

Hashes for aioesphomeapi-45.7.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 849f941cbe0e7a77f92eb26a6eb792198ad4445733f60304a33ece016b5c7c1c
MD5 922c5283849a00ab33c1c80ec17975d7
BLAKE2b-256 ba42189a5791131b6bd971949654681ab15a98db2d816a6c43614911027ae34c

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.7.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d562813ded6cc7d51a607f065f648f296818c988f5c9d3cd0825bc3369dae136
MD5 a13dc8fc3d5a6027b04473cb920646ac
BLAKE2b-256 ef6cd5c3e6c2f9ed097d90ae499c45bec072555e9d3bcfeb7e14dab43fe0c3f9

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.7.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bc13d4e2555cd1486bd82f1a117244535b341117ff7a3bcf25497a0f58c180ff
MD5 8f746e3293245143d7f259bdb01dc635
BLAKE2b-256 afb1de44658f9f27e3e01e365a65990e13054edbcc54e73237ab07e6ea26d12d

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.7.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fb4cf4e966e66794ec067f614f0b09a3b8efd5aadeb77dba2fbb7a5419d6ec9f
MD5 931fed8b3d95093e2e993456c6e624b2
BLAKE2b-256 673bb880c703b90e4023b2a150c68e5897769a5eb26bc8181c167ec83f50e7e3

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.7.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 370c90f34d56e69d01fe5550b594e85abec150668d9c8585b8909371f81fb48e
MD5 362d6f834446b5186ca43fcdbcd55f11
BLAKE2b-256 bb67d80bef41ea059b8e1415c839153aa58d606771dcdf59aa6d20a369b6cd40

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.7.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 af3f99b4455ff8ad9235e0d48119f31a48749c4b7b5fb3f6cc05b206e2e27efb
MD5 db1962628d5ac1a2e6c01813e4aba659
BLAKE2b-256 203e5c64738bf0aa3dcedc544b793023818ce3d49cd3a0204574ddcf551ebcc4

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.7.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 084d4fb73241b13d4a483d851b24885380fc69bf76831ceff1089cb520be7cd3
MD5 4a9d2cc85cde200bb623a8d5a1bd844a
BLAKE2b-256 5b5962c50bc1eb3e0afed9ee454a8a9a37b08449c4ebadb3238776d594a5ecb6

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.7.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 03159622b596791d75bd39be9dda764f8dd87831f4dd08f352ec9918a5bf5a69
MD5 d2cada37e993aafe26c01a7fb86a655f
BLAKE2b-256 cf27a07f54d0ae1a1867bcb1c01df9846a2d4955fb0dd4dda877e684d07674e9

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.7.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 78de87f3d81b128c94f777a576187a766bdc53d1c5b32df752369f7a0020f695
MD5 9692af619d151408d7955cb51af27fd0
BLAKE2b-256 aba881aafb0676ed1e61f9aa5b7f051ca550d4ab22fd3e63455ae5ae18ec3b79

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.7.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 442b408bc48a83fc684c140c926fae6646ae206cdb2bd7622972ad1efb3559a4
MD5 4c7e0ffb1549456692e4061322f8d74b
BLAKE2b-256 cd88ee25418d0f112987328d10e61e0af0fa5ca665cefabd9332527051280c22

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.7.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 5e747584c2fa95bdaec609129fb22b062d12afe1a9cee538056602836db7f1c9
MD5 0b9ef1048f5260a7e74e269e6b9418e5
BLAKE2b-256 409127c95deee6a6754aa6eba2702b4bc6ae60c50956462998a1c79ee1330079

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.7.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ab7cc497f0552b04771da59ab4c78c93cbc75a8c004e2477e7e13336d2a261c2
MD5 7fb9ecf7d6bdd9da0336d7dfc4a6b441
BLAKE2b-256 a2c3475dbab023415afa24d66d745e7d4273642f25f6f1821ea5d05a0e4ba6db

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

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

File hashes

Hashes for aioesphomeapi-45.7.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 7bac8ea5698d6032e9b1fd4228cf8b44e82df874b43f0770dd1389ae72805c3b
MD5 a4f7df6f5d8dc4a9d80d97d08709faf6
BLAKE2b-256 2b15b5d17e7a18fa2259e0b76a7bd88297ff10be2e1c6eb868b733b5eda14636

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.7.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 93937d27688a6cb44affe50fc388d04a73dd452ab0017870f10c37331e723954
MD5 c6d2cf2d49e10eb315a6ba5b1e75e613
BLAKE2b-256 91f10f5447aee10c4e51a930459e105a51359ab82cde18289daba7d498dff577

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.7.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a71c6d6da845f42089da441de485acce6b97fa4241ffe1140d5f67e6ae05c7f9
MD5 4979b1b212515a4370a5b934733bac4f
BLAKE2b-256 79ff51f9ee5011651315d29d241daa2dcf9424ec6204b2b2c7215aef7160f945

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.7.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 37a01be4928fe4bc64bc30459c4b29110c30a88af436b2fbb88bbedbf35baf2a
MD5 3b65e62f47d48f1c64620404924d38aa
BLAKE2b-256 8717763427e080467247f5d249b03006e2d503be06aebe2863f77492861107fa

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.7.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 299f8f4490885fa9a21cf1a07e51ed6235562dd21e7a04ecab5d766962eae22a
MD5 d5760d8331ba69ecb095248ff64f6e21
BLAKE2b-256 818d722c2ef6fdeba93d03bfe64712860fdc64a4cf2ad34a0515f1c9ebf15e69

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.7.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c12914509e105d4ad7eae12fdc5946ac8731dc9fc250b4050ab9dcb0b34887ae
MD5 ef62307d20bb7f45546f336c8ed798b3
BLAKE2b-256 53ae5d709a8c9a261b146a5aedbf3ccdbb7073b2c85ed6d12405bad08626c8d1

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.7.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 a2dd25671fb7ed2ae673f27f751670c54961cf934588635723288c42bd286e0a
MD5 c23a7f707ccda4adf64458f4be9ba5c9
BLAKE2b-256 0711d17bf12ff61b0c1a7f48bd0d9b98a3a646e52c33b7bded5ea06df902e48e

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.7.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 adda0ce7aa483f66b9363ecb38737782cd1de615f055b7e1b9122bfaf7f4ea6f
MD5 b65d71e7ba7db38edf39da6e1e49c039
BLAKE2b-256 74658390cc6df9c2a1aeb9ab6c573937428642a558db783159a56633466b5a45

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.7.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 57cc85949829c258b0780cce6f93e8f01cb0e6d36abe48edcde83725b18d1517
MD5 038bc924cf2ebc8fd41c971ef6f4625b
BLAKE2b-256 d82263f55d072ef01c3a85b36217173c89f968a9cd95a7a6bed58a4be8feb420

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.7.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f89e1e2aee1410275661f571ca9f71412b0e633b9b64f3a5118da999cb25affd
MD5 e54132d478e57980264f6c3bf4098541
BLAKE2b-256 2a294a599b21378bb986ddc0297d3e3cc45544fa77b71f6b91ba44bb18d9e593

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.7.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 44cb4dabcca4468eabe74940461bf28b24b3fe214dedb88a7cb6f4cbcbba0583
MD5 3648c2eab0f7c8f5bffdfcea95b14da5
BLAKE2b-256 010bc3b5e3bacdd47359381744108617845efe315a5819230523f79e1e5736eb

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.7.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 73b206659111a7464f6b5dfc06800777bb4b747bce5f2b4f87fb1ca420924e82
MD5 f8bc23628090205f0cdb270929c50e40
BLAKE2b-256 cffbf689d3f87f51bd9fa531d9530582082eb7509bd1421668edde3dded23a40

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

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

File hashes

Hashes for aioesphomeapi-45.7.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 97d44cc87b1c5ac7348a475c6add616a3a73fd1ead8f3584864ab3d5e38cd803
MD5 39a621ae0c4f0891436fddf09c3c9d9f
BLAKE2b-256 f7958be42ffa1c59d10ca973a51081a5c62460bd638f91d06a045bc90eff81d1

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.7.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5429d0c0dc0fbfe3ae2c52f9513907dfa2761d85c88aab3a4ce6d4377c425a17
MD5 584ff5400856aa17991d82489964eaea
BLAKE2b-256 7de0f7a128be37b815ac8fca3444d58c7b812fb3ffecaa9d7380bc394218ac1c

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.7.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 13ec8782fb85650f12aedf24a462cdaac3858e75d8a5537873d2d02cf0bd65f9
MD5 fef0dc102fd555f81ef405c39a14e505
BLAKE2b-256 4af7111f3b9728083178a6efbf481f51f605634e5af99a5a173753d657320394

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.7.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ce6ee6c4af91070af45122d856b04684988eb75082d2507af4850c1c1bead249
MD5 a37be4435092deab6ea6f1a3069c43bd
BLAKE2b-256 b41deaa4f32d45cce318d322ee47b6ae2bdc313b83ea476c0033dd079ee2610d

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.7.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0696759c6b7e71fd390d6f4f459e927b30dc99bb0e96dd7b240eaaff8451764b
MD5 bc5c62858514922a22e2c9d173d86eda
BLAKE2b-256 8c867dc822c67ac8c54677e7e233aa82aec8502e5257214e9f186a95a9c23dc9

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.7.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ed355e00f9324b472e4c46fdd043a57936b33fcac33ba6bc3d354c4305cc6b8a
MD5 54eb232e2eda7602aec4b3e414275651
BLAKE2b-256 037052782d9007daad2e111e28cae4a3a97426c072ef18fee115b2ebc9220236

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.7.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 9dda996ea2de12a0222ab55b8c0b2925bf84fabc19d084a02f34092d9a9ac9d7
MD5 392f99bf68734e81182cb182c28f2203
BLAKE2b-256 e24b04d5ec232ed24fc89a659a2cab5abb24e5759bd72e6012bd766fabefec74

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.7.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 de1d16c38807aff40e7dc3477f9ea5be467c80317497de1ec9b32b822aae4a07
MD5 9965887e7331e618fb9ad1648c6910dc
BLAKE2b-256 c16d17251127b5fbafbc7ac8a4130cb5dfe37435260b28268b204b2cfa395f76

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.7.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 5df14679c36652f1f9f4a7bf47f7e90a8baa31eb919ebd7de59ee30f13b0e477
MD5 52836b404e7470eece7f42d079b9805e
BLAKE2b-256 f5c9e09013e188b67834ff2df0ffa807905ed31a5dca7ab8d77355c6bf855483

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.7.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7b248e24b98e9a609a3f7b2a5e6ff7080de97b00c3e7c292f6f887d4e3287be3
MD5 cfd77d2c2ea3167a4187a9b0d6559d8e
BLAKE2b-256 df789081f81450e1081b1119e4a56a2310266b1d62df9a1ba94df5476dfe51e2

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.7.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 83ea38d8442e86a18edf69a542092d31c36ba390bc325959f6a6d24eb2c5869d
MD5 c1d582ecdcea257697376fa23cbda978
BLAKE2b-256 f452675eafa23c4b78d8e532d7ad37ef3ea1e3d55fa06012c406336391af8cf6

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page