Skip to main content

Python API for interacting with ESPHome devices.

Project description

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

aioesphomeapi allows you to interact with devices flashed with ESPHome.

Installation

The module is available from the Python Package Index.

$ pip3 install aioesphomeapi

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

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

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

Usage

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

# Example configuration entry
api:

For secure communication, use encryption (recommended):

api:
  encryption:
    key: !secret api_encryption_key

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

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

To connect to older devices still using password authentication:

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

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

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

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

import aioesphomeapi
import asyncio

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

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

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

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

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

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

Subscribe to state changes of an ESPHome device.

import aioesphomeapi
import asyncio

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

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

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

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

Other examples:

Development

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

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

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

A cli tool is also available for watching logs:

aioesphomeapi-logs --help

A cli tool is also available to discover devices:

aioesphomeapi-discover --help

License

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

Project details


Release history Release notifications | RSS feed

Download files

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

Source Distribution

aioesphomeapi-44.21.0.tar.gz (189.8 kB view details)

Uploaded Source

Built Distributions

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

aioesphomeapi-44.21.0-cp314-cp314t-win_amd64.whl (612.5 kB view details)

Uploaded CPython 3.14tWindows x86-64

aioesphomeapi-44.21.0-cp314-cp314t-win32.whl (538.5 kB view details)

Uploaded CPython 3.14tWindows x86

aioesphomeapi-44.21.0-cp314-cp314t-musllinux_1_2_x86_64.whl (661.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

aioesphomeapi-44.21.0-cp314-cp314t-musllinux_1_2_i686.whl (679.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

aioesphomeapi-44.21.0-cp314-cp314t-musllinux_1_2_armv7l.whl (609.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.21.0-cp314-cp314t-musllinux_1_2_aarch64.whl (649.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

aioesphomeapi-44.21.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (653.0 kB view details)

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

aioesphomeapi-44.21.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (592.9 kB view details)

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

aioesphomeapi-44.21.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (642.0 kB view details)

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

aioesphomeapi-44.21.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (668.5 kB view details)

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

aioesphomeapi-44.21.0-cp314-cp314t-macosx_11_0_arm64.whl (574.0 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

aioesphomeapi-44.21.0-cp314-cp314t-macosx_10_15_x86_64.whl (578.6 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

aioesphomeapi-44.21.0-cp314-cp314-win_amd64.whl (522.2 kB view details)

Uploaded CPython 3.14Windows x86-64

aioesphomeapi-44.21.0-cp314-cp314-win32.whl (466.1 kB view details)

Uploaded CPython 3.14Windows x86

aioesphomeapi-44.21.0-cp314-cp314-musllinux_1_2_x86_64.whl (646.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

aioesphomeapi-44.21.0-cp314-cp314-musllinux_1_2_i686.whl (670.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

aioesphomeapi-44.21.0-cp314-cp314-musllinux_1_2_armv7l.whl (592.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.21.0-cp314-cp314-musllinux_1_2_aarch64.whl (625.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

aioesphomeapi-44.21.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (640.2 kB view details)

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

aioesphomeapi-44.21.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (588.3 kB view details)

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

aioesphomeapi-44.21.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (620.0 kB view details)

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

aioesphomeapi-44.21.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (661.4 kB view details)

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

aioesphomeapi-44.21.0-cp314-cp314-macosx_11_0_arm64.whl (533.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

aioesphomeapi-44.21.0-cp314-cp314-macosx_10_15_x86_64.whl (545.9 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

aioesphomeapi-44.21.0-cp313-cp313t-win_amd64.whl (580.8 kB view details)

Uploaded CPython 3.13tWindows x86-64

aioesphomeapi-44.21.0-cp313-cp313t-win32.whl (517.4 kB view details)

Uploaded CPython 3.13tWindows x86

aioesphomeapi-44.21.0-cp313-cp313t-musllinux_1_2_x86_64.whl (659.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

aioesphomeapi-44.21.0-cp313-cp313t-musllinux_1_2_i686.whl (678.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

aioesphomeapi-44.21.0-cp313-cp313t-musllinux_1_2_armv7l.whl (608.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.21.0-cp313-cp313t-musllinux_1_2_aarch64.whl (648.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

aioesphomeapi-44.21.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (651.2 kB view details)

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

aioesphomeapi-44.21.0-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (590.9 kB view details)

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

aioesphomeapi-44.21.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (640.9 kB view details)

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

aioesphomeapi-44.21.0-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (666.2 kB view details)

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

aioesphomeapi-44.21.0-cp313-cp313t-macosx_11_0_arm64.whl (572.1 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

aioesphomeapi-44.21.0-cp313-cp313t-macosx_10_13_x86_64.whl (576.9 kB view details)

Uploaded CPython 3.13tmacOS 10.13+ x86-64

aioesphomeapi-44.21.0-cp313-cp313-win_amd64.whl (512.6 kB view details)

Uploaded CPython 3.13Windows x86-64

aioesphomeapi-44.21.0-cp313-cp313-win32.whl (457.1 kB view details)

Uploaded CPython 3.13Windows x86

aioesphomeapi-44.21.0-cp313-cp313-musllinux_1_2_x86_64.whl (643.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

aioesphomeapi-44.21.0-cp313-cp313-musllinux_1_2_i686.whl (668.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

aioesphomeapi-44.21.0-cp313-cp313-musllinux_1_2_armv7l.whl (598.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.21.0-cp313-cp313-musllinux_1_2_aarch64.whl (619.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aioesphomeapi-44.21.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (637.0 kB view details)

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

aioesphomeapi-44.21.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (594.2 kB view details)

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

aioesphomeapi-44.21.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (612.4 kB view details)

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

aioesphomeapi-44.21.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (659.7 kB view details)

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

aioesphomeapi-44.21.0-cp313-cp313-macosx_11_0_arm64.whl (528.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aioesphomeapi-44.21.0-cp313-cp313-macosx_10_13_x86_64.whl (542.9 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aioesphomeapi-44.21.0-cp312-cp312-win_amd64.whl (515.3 kB view details)

Uploaded CPython 3.12Windows x86-64

aioesphomeapi-44.21.0-cp312-cp312-win32.whl (457.8 kB view details)

Uploaded CPython 3.12Windows x86

aioesphomeapi-44.21.0-cp312-cp312-musllinux_1_2_x86_64.whl (648.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

aioesphomeapi-44.21.0-cp312-cp312-musllinux_1_2_i686.whl (673.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

aioesphomeapi-44.21.0-cp312-cp312-musllinux_1_2_armv7l.whl (602.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.21.0-cp312-cp312-musllinux_1_2_aarch64.whl (623.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aioesphomeapi-44.21.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (642.5 kB view details)

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

aioesphomeapi-44.21.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (600.1 kB view details)

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

aioesphomeapi-44.21.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (618.3 kB view details)

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

aioesphomeapi-44.21.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (665.7 kB view details)

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

aioesphomeapi-44.21.0-cp312-cp312-macosx_11_0_arm64.whl (533.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aioesphomeapi-44.21.0-cp312-cp312-macosx_10_13_x86_64.whl (548.9 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aioesphomeapi-44.21.0-cp311-cp311-win_amd64.whl (516.3 kB view details)

Uploaded CPython 3.11Windows x86-64

aioesphomeapi-44.21.0-cp311-cp311-win32.whl (466.3 kB view details)

Uploaded CPython 3.11Windows x86

aioesphomeapi-44.21.0-cp311-cp311-musllinux_1_2_x86_64.whl (661.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

aioesphomeapi-44.21.0-cp311-cp311-musllinux_1_2_i686.whl (694.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

aioesphomeapi-44.21.0-cp311-cp311-musllinux_1_2_armv7l.whl (610.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.21.0-cp311-cp311-musllinux_1_2_aarch64.whl (640.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aioesphomeapi-44.21.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (654.7 kB view details)

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

aioesphomeapi-44.21.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (609.3 kB view details)

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

aioesphomeapi-44.21.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (635.5 kB view details)

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

aioesphomeapi-44.21.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (683.7 kB view details)

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

aioesphomeapi-44.21.0-cp311-cp311-macosx_11_0_arm64.whl (533.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aioesphomeapi-44.21.0-cp311-cp311-macosx_10_9_x86_64.whl (547.6 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for aioesphomeapi-44.21.0.tar.gz
Algorithm Hash digest
SHA256 5953ced22bef42d3dbbc9952eb1baf1992e5fcf90e50ab62cacd504d3ec7c8d5
MD5 0fa815da2755edace52847fab2cc68aa
BLAKE2b-256 0dc272605700c4f08bbc4ad3883d7181f5ef4e5b3597b36a77e17a1172e4704f

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.21.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 052c1c830046bb5e6778d7427d096644b3c2f90653d9ddaceec4a82345965bc3
MD5 dbe2fbf10b6dbe584a7ef391e86041a7
BLAKE2b-256 de62d1326b1554a6c5832601e94e11a791276bddf1698aae8cc3330b2865fd85

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.21.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 cb45300b3cfda39218a3e780c92f9e867e0734c1604ab9afac6239be8cbd9c85
MD5 14b510341d3685d846b68870135eddc1
BLAKE2b-256 36cb2f7a2227e94a098a38221d4e17b3396155f65d2454e4e7a39f62b4499bbf

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.21.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 44a59a5bae583c163e2fd5f001c1cbb1126004946308732212f04d918be1db84
MD5 4d8ce9e16fe6ad650919d27b589acb3c
BLAKE2b-256 92bcd978b0fc2cd12e051094bbc668f0d05bb91566b8ff86685c484e008c132a

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.21.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9231fcfbc8222e3a552b513845878d0d62674eeb99c39a58c5b619e58a7e234c
MD5 4c4d50238f9c1efb014e4ead8db117bb
BLAKE2b-256 ab55495563abfcb27119f72dd554da3e607cff017379973f841fdc0507317c12

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.21.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 315bfba8169225943c4058038129da3f5ea54d8e0ae1f35dfeb27468ef5ca081
MD5 948777f3f23ac069803bbb157c9cd302
BLAKE2b-256 da70f45923ac93053b7a402a99a4bba5f8db0244013e9702d6e4cd483e801f97

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.21.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d2bc7966f61d5c298c436050670190585209882f24ddc32bcb625de5d79b9ef0
MD5 99d0f1948ceac7c11285e6c67d0e04d0
BLAKE2b-256 3cf92848c994331fbb5cd30d319a28aff17664b00333616fd2b6adf814c40a64

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.21.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 39a2f21918567e071bf4241377a8318ca07585be0ec6779750ad2bc3ee091d99
MD5 11b171cccdf2f8ed1a32a4dd3a96f5e3
BLAKE2b-256 2fd12a1c402f03c7ad5a47889b1dc45cfececf37a7bb11842197b2a6af7a8739

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.21.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 33c4845e4bbaf9e8765dd499c16077b4405cff9411199a45a20310fb4b1fd30e
MD5 ab5e1871d32f3d16bc420ca2a6374a01
BLAKE2b-256 d195e3840608a2478a2cc9e917aff0a1adcda7d3a8bdfd6b2901266b57ea21cf

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.21.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b966e86160f2b6df24b3ea7b2f4c4ac011ed94436fa9128d893dbc88723ccfc3
MD5 f16765bb1529e28e4e75b27515790c10
BLAKE2b-256 2121ef058fd3b1ad43fd79467b0ff651c6984cd12db48bcb3d343698930c9427

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.21.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 f3fea464347a5e0b70bfd65d8baccab2ee1e550a4c9236122a50d844ad3f357d
MD5 cd299dd8450e8aa7a0d60cb32bdb21fe
BLAKE2b-256 11b57e9d6c215bc7be4673137742010556005383852eea639f59149dff85ed8b

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.21.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9fc1a459c17d8913f5511380e2ece410a3df3c8772eef04bc9201622c47f0628
MD5 a1c847efb25dc901eba81f36092d69f1
BLAKE2b-256 f777d0391754b2facdcfd3151d5faf8efc82775a3ba77d949db23cebb2ef502c

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.21.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 b246f1577c85fc33049282b067f2ab363ad0090e786393f983ec02f4a36c1c60
MD5 6b6beade02828891ddfb51ce7d4639ae
BLAKE2b-256 8a940d960b0fb1cbedd629472376800b7706b5745feabf61e0e45ac562a592b1

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.21.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 beb7d2ec6809c50f68e18d5cef338497e833940b0123d5dd2cfb7df6d27a1ee0
MD5 a0e51b8fe4d7ca2b080328a821c5d170
BLAKE2b-256 8d7ed65c39fa389a5c1e41180ad0a9593effac312c01fd33acf4885dbcd7071d

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.21.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 b618666d14416294668ce85894410d846762ae680896dbee078663109d2e5467
MD5 93df9a9ad8222659dfdffc77e844b44e
BLAKE2b-256 3a5bf45088bb8058802100df41d83cdfac761f8d9d3c2df7c310e18be45c981d

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.21.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 18aed10089046fafd421613e2fb53108dda831f7042d3807efe5df3126ee1c36
MD5 71f2ce936bed7abee916a9e5e81f1039
BLAKE2b-256 9627d2cdae3e4526d79a08eb8039e35a9585ce0fed2df18c79a6bce86f6044df

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.21.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4c14a8e01f2e89df5b40a643572886292a8691b609337d7204aba613d01a142a
MD5 503c7c380487406e2b6645998a2e0918
BLAKE2b-256 87597f4826fece9aa0e56c941efafc8fb09c2dd4c114ffaf220ffddf0954f47c

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.21.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 38f8a925026752000e10f455c1eac0a14fed095bdc22f5a501819c756927dd5b
MD5 7eb5e0f7aed6344bee41cb411626c5b1
BLAKE2b-256 713158c80af330e09b9d45e9e01a86e7b83d48619e6e2559694678609615b0ce

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.21.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6a78205ebb1cda26649ab3e95cd00b4d91bdac268188661e70ec783aae740bca
MD5 ed0bf994ae03f68131890778ead0ace4
BLAKE2b-256 2b9c0b041aef77a64df46b0b31b92c74641fafedf70781cd934b38f6796077d8

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.21.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e93f19b4d210e96af169912eee63fd0baac8497eff64ea01d2262482ca669fbd
MD5 5a5e53f967032e5f4734e7c0cfd0d71e
BLAKE2b-256 1f685da71c1a5aa21e0b2b6c4e6c14b501cb9615b92a4be33510d7e558d86b53

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.21.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 4eb73dbc340e02ef570fadf8e8fac0ded7853dc679a4ad95ef19f2aeee50eb0a
MD5 097a8276b7f6f2e45b1fa5a8bf2e5e74
BLAKE2b-256 6d8a83bed4ba40211e729f37e428d77e01d4a073c7fb9ce3fa97faf31bf4f9f1

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.21.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 46a0c2ee293461654a4bb05bb51d28bcf5d6001913861f6e55fcdd678398d6de
MD5 e71237e631cf335e9d34590e7380f39f
BLAKE2b-256 706852379a4163b153bae136835779940fa8434d2f85b188f1301833d0893817

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.21.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 7a71f9e7aaceaa8ca20842f62cd5bb0e52991674e80d8d1d950e505d560e534c
MD5 4a4963d241e0eb6d9a31cc5814f3374a
BLAKE2b-256 fb1310f41f28dd7e02a060ebd8599fa81fd1fdc2fcde94f82da0c368f1f2665e

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.21.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aed3838cdfe58f4f52f744463bff707920b7136019331f08830287a2c7d7f305
MD5 9911b2a80e17fb7bead2f2119518f181
BLAKE2b-256 60487ab84aa5d4fbb948b60eebe10a733bd61f65348967ae703b8ca59fb73e7c

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.21.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 428bb8e10ab92c34261d621fa60ac1c820cd82095904dd28d856119b7496c67e
MD5 346634ea4bdd80bca135366dba054dc0
BLAKE2b-256 56a1b3bf5e85213c3de2db40218a3a190d19c8ff261d6238c52db4480143ae41

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.21.0-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 bb383a17eac4642cd6194c404dc89306e7538801edfb4c4be7416e0b910e06c6
MD5 a6de308a78a35dc7369ccd5737e16a2f
BLAKE2b-256 3ca759099f8a5037f19feb3bef29b002600a719916f3b88460a30a61715c4857

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.21.0-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 9cc8253ae001c23afd4c3d59149e3038a6b9423c987c032fa9f58a006622bd20
MD5 959ee2b13912e426781a9ed15a97abd7
BLAKE2b-256 a4dbe371039cec01f626fa625435c81c81cc955b3eb88637e19a5050f97f7d6a

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.21.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c6f69c8699e242a58009ac9c4a07525e92f067bc03c9f9819a202dc0366915d9
MD5 b630e66cd44292b53a22e1ada716c382
BLAKE2b-256 3851013d353fa8240bc3e4c702c519b9a64fed28219be7955184509ea087191c

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.21.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2be7032c99e957471aa7fa61c42ba3dd4d800e50f60c515e67783bb3deac54a0
MD5 a94cfbef811488c32a44a1616b7d9fdc
BLAKE2b-256 c7ec30f4e8fff3ad80a68dbd2e927ae610234f03d111d3c22ab3c17f18894329

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.21.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d2eb59fd07876afc0f56285b8f33a25a8bb7aa948ce33bfda05485e85c209591
MD5 ef9e7a394cfb8815c60e763f8834be53
BLAKE2b-256 c0ec6ac659a4ce21f042dea2251cedf59c3183cfd73200926f1ed7a28228df00

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.21.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3f5a52f257a5ee5cb330e32251844b1f11757574874463f629f94ec381bee475
MD5 d14dcc77ca887019bef66c61387aa4b9
BLAKE2b-256 f1f6d4e1b37078cc7e11b4e1c3a4b4c56ecafba84b8353f33d1f573d37c106fc

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.21.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cef391e0e8de84b29d6f4fa4610642c4c2aa087e7a7e814a7eebb8e191048c2c
MD5 f9231d3ed344444a0dfdceae98df5eb8
BLAKE2b-256 d4544d1bf084de953370db948eeef7f251abb6f68095f3695c753039fe6d65d2

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.21.0-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 a60299cdf538217b6e9e4a369c5b3f71d98cfc17c95f11c9d460456f7f7bacc3
MD5 5b9159ebf6ba5ad74b148dde1f175f64
BLAKE2b-256 e7fefbee0821d6d11ee99dffb4f4e533ee7d3a40c342866b43a3fd6f2ae67be2

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.21.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5a5737629d4b03589978303fad12f0d5d0a73efb1c868ba76c206418591172aa
MD5 2b7ec930760e7cb104c6aabb8850edde
BLAKE2b-256 1e01da44109b54c4d877581c0f829cbd4251a36a3b0bf7803d8c7345eb439632

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.21.0-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 bd351913a08f7af8f510398b001c41b23b9385f2aa971e7124414009d8a2748b
MD5 b25e182afd2c6cabb0f1a7a8c327488d
BLAKE2b-256 d682aa8a66ae7f565ca4c97097061476d89a4d3b97d27385d32074a4ab598e2e

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.21.0-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0d0b84cd1ac4d3fe9e5c3e50f5df7ded906e8d7b56705ab2e1ba585a93f93b26
MD5 27d0ffd0dfaaa8c6b0292dc1afefe707
BLAKE2b-256 9bf73a2480a5871b9f81ce02703ca9c086f25c69bed553da6d834a5be02b1b66

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.21.0-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 24107fe45100a2f9d2f5a8f2ec5292cca0c286c451e777d560a55700773fb5d7
MD5 ea534f7d8bf2fd7e8b69ccff18598643
BLAKE2b-256 187ce710ff302877b9c085540d0d079eba83969ff329d4d7c5970f9655f3b625

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.21.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 86c662b466c598d875b77af6b05908d0bbd46220fe6990952f718c3a31054e8e
MD5 fccb0641b54895ad30860617890c7a49
BLAKE2b-256 40cd8f350895227d4fd4c3ec07c5c6c26820bf80ab72fc41b29962a666475aa8

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.21.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 c28a7beba18c2150eb82087f9de8268642b121ffb6740e41970240c389715998
MD5 deddde10f29db0f7b444c443b13b44db
BLAKE2b-256 cf924eb9762e7f2e39cde93d6cf62fc139f5b2748c9dd712aadb813262809b6b

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.21.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d546b67e92785ae8de538abd0a1224952d6c00bdf5263ad2e79abaf46cf5ef14
MD5 b111c762a73dec63d7e3548954574f2b
BLAKE2b-256 474df3fb965f1a68187248f9ea672b839556284b6576ccd2c66ed9816389218b

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.21.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 80e80a9f70269a898ff94762377b1f2dcf7389703fe0f68b365913268e7b6e14
MD5 6e8137b994ed03115e7793b57e32e1aa
BLAKE2b-256 4ded90c3082d75afa12ed6bbd0b31591c0e18b772b452468213f77e8db70e773

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.21.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d87c012e25ba2995547af4d417115dfac34a658d816bbfc72d3dbdd526de94b5
MD5 95dc3da2a21642ea1859032b2d0bfa4e
BLAKE2b-256 9637911dc8394257999ff2430bba4cf2d2664a53ff1f274ef3f4889c596479aa

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.21.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0b1dcb5b2ab5f37ba118a91df5cfd85f55281abb75311acff2e3f3fc9495d069
MD5 11915516efcea9af5bbafb42d1ffac95
BLAKE2b-256 fd8f87299df991ad7759ebe1a114ab6320d7491882f106a979eceb43f8647692

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.21.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4cb278c6ac617a6ec609b25e86fef77c886155967ae2bda650d8c3e2f52f5a3a
MD5 25b7e3915bb564ff941de38a3ba48be7
BLAKE2b-256 e337e930b71da33c993e72e80006bbb428252a3e74019be2669f20cbbbfc416f

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.21.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 10962e706ba192065113c479710a7d46a39fbea5317373d3b1d7cc02ba177d0b
MD5 3f8427785ec6649387729f4d61d47f6e
BLAKE2b-256 ab4ec5af5307134e472583c18e83e7227e78f944e5d1e90a15fc6adb02bd57e9

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.21.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cb51a8e245646506f58a343e31e25351978e51d198d72750334e69cf6843a465
MD5 36684bcc83443ca063b3f0e47d5ee3b5
BLAKE2b-256 20cced9be146d14f575d172003c63cdfe3c15f5f534751e39037ad2598d0f10a

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.21.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 418dd5cce9c6e352be904a0e5a42d10524c746a068b5c6f90e2dfcb8fa32407f
MD5 79a82ad10f2967bde1270ec4c3f186d5
BLAKE2b-256 f40eec9e913368bcc156bed360fe6ce13ec8f8c4bf638ee29a2dee80c64e2db8

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.21.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8c96375c7eb7e60ea2820ed863caba3553775cd35b5dbf59ab29e87fe536f8b5
MD5 a68bdafeb5fe77ba31b6d02c88c5cc1b
BLAKE2b-256 4caaf24cfd454a058e31c8c643735a44303d8939ccf650372e7ec26c0647835b

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.21.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 660168d7ffa827fd7fbdd5bffe22af01ad09c3dfa010f4b3ba4924bd57473b97
MD5 962c1f8ef5dd79c8190a998e5ce5f4e4
BLAKE2b-256 4a7d44116c21d031646a8268bb301f5ac98c998df79a096c76eddd7258f6dca2

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.21.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 66db25f5a6cff154656456183b8bf299f9bf8c07bba78259bd522e8bc8f84499
MD5 b2c87266ed1df3fbb2412c1eb910848a
BLAKE2b-256 5a8b428054344e29b26c69f66068fd900699cbb08fc589b62ebd073e7459fcb0

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.21.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 42f90ae4f5bec54cc54953e2ffcf459197d18e03312225267420bf79e03fcd0c
MD5 459713d88752aba5d5d618eeea042d2b
BLAKE2b-256 81912a704c7a241cf426e7c3444395b61ff9007085f628f52c0b8bd04013e58b

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.21.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5321f1a22e46fd3878f909f5c3e56f1494da2d6f7f897821bc14e99e0a4891db
MD5 b3f2e3506ad4c41af103bd1c334c5c8f
BLAKE2b-256 9915b5127d2c4cf216d94e28354752eadc741340fa1ed93d69a03ce9f14b6a8a

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.21.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0e682e34debb8156f7d3abcd29ecf8ead3df7a0f62624b66e8ea6c090794f809
MD5 0f0a6fdb6a0aae6bc3d55b34bc934b8c
BLAKE2b-256 872f64174c8be29216d2c92be16b06743f8e5e1f7aff36c25e729908d0362657

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.21.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cef3b22095accaf94afb44c684dad22400bbf21ef3e550b4598642691901bf2e
MD5 3dc3340891568fecf833a1ae59126e5c
BLAKE2b-256 709a509713d1641431d72ef485cbfa5639f51c59534973e8c9ee4abcb34b3860

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.21.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 26192b0a511788e0c8ad15c21d778c2ee3065e30cbe2e868d133c7290bb1a190
MD5 2efeafb731f1bd5ea58e1ba45ed600e6
BLAKE2b-256 21e1cb373902acdb608d0ae170c79dd0eaba52e0c5cdd6c88c10a098b5fe55ba

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.21.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9b09e79fa1d78751c1c38f44e8dc9e9f15c46e53d765d8cd8e09048a69f3e5f5
MD5 152b93a8c63f60ee66e67791a2020b12
BLAKE2b-256 16901a1b7a8971b01683fefbc11794ab229f2659e0627465bf2eea8b604fd81b

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.21.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 e26181809ea27230c494241d2c6d15242c4e08e398ca238b20f7cfb4e8b71404
MD5 f32e6f0391b159083619fdaba7afa492
BLAKE2b-256 ec1d613d210b5dea7bd165f99b6b462c088251117dc12d5b20f03a190df2e1af

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.21.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b2a9d545123d300f1ba97060715ac8a00211a84f77300234cf4e6b4bc3a46149
MD5 0862ce488a9adaa077c746ee8e679dd2
BLAKE2b-256 fa54e3741210232fd420156f2d29404c881207b7e1b37f1af56549e9e0db760d

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.21.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 9c1b2211800efed8bb558f1ba59885e098ff923a8ad4f4e3b89715572a7a52ce
MD5 c4ac26e3face996eecc69528c895ef75
BLAKE2b-256 69427f94e256a9a616ff3202bea8c34b8b7c76c42a869cd1e2ee1c5d90f17ee1

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.21.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 87a0219bfe0a834a416657c1d82db93357f8ae01b093a89b66bf3b5013886059
MD5 b99b8978311596053359faeae02adf8a
BLAKE2b-256 fd8006e11c5310c6140c9a3bafd0e6e3fe676973330fd9273d1ff00e24ef0700

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.21.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9b317af321629df4566be9716785b1520fa7193dad06e5c24955c10c41eef512
MD5 57f879c6044022eaaff3a7abf87eba80
BLAKE2b-256 a69e91d592b37080a1dcd12daaa0ee86f31839d0453f9cbbf4b0912de8f0e521

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.21.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a1f16ceb8b4f9a2b3b7141002a5cba8d73d3b32857d4afc12070420625c400e4
MD5 ff694f68db0226de4238a58b5b330971
BLAKE2b-256 2881ab590be4453ef0fe707bf14c8efccec2d1dcb869db0ec2b3fc9354edc1ad

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.21.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 c6301fc10c5cd89fe9be81b3ef2d06a4b3107baa94890fa88b3b998707bd0025
MD5 5cbd712de5b91cef956285251a34ca76
BLAKE2b-256 28937573a7dcdfc703843caf9a65d48bf33fc18feb495e60c63f12449d1bcae9

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.21.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4085453128e79d350036c5b6f106a33ef54b8a73bdfc2d4cac9eab289958d58c
MD5 0ae67ca21298771556ac7739f6ce92da
BLAKE2b-256 66c8e17b679224ad393be2de58033e6a27076c555cadb388caf0c3d52f2b61b7

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.21.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7844294ad330fc47f8234f0fa3e90b413a9faf8553c7128d2552fa63da3cf7b2
MD5 95d379eaf94163e050b7237ef3dbd486
BLAKE2b-256 b32d691f34209555fcacb7a84b6cd914bf6b424221f95e8b125b4fc3f38f2d4e

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.21.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 81a3c4f470bc73b269fcafed9cf717e67904cf4ff5dc6fa90a6c7bd3010ae51d
MD5 8fed3d887227f6ffcffd9a6f49251ded
BLAKE2b-256 9d6a13dcd307d4980c52e701a9cdcea3830c986a78ee3f4e1e367c8e4fd094df

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.21.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7ea3cb28277022017b6eff122ed4bea5a42ecae696ce71a8af86de019b5228ba
MD5 87651cbe1ec81aee33db35331c0b15ee
BLAKE2b-256 52eb865f25ef42b1bba6133ec1c475073c565af8bd5f075d811db331889a1849

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.21.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f8b355b07ee25db14c2698509215bae3fca7f019aaaa84fe4785f7a080439814
MD5 75aed9c9c37afa81a95b1c33cbcc73fe
BLAKE2b-256 24b49606fd49bd49227965084acc4603c147c2f26a5da583c2d4f320e1ba2a82

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.21.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 1d87f38798be0b7a0780b7a505e109060a4cafd81758165fabd3c99360d096e1
MD5 bfd327699afeb3f8762aa12ed54410b5
BLAKE2b-256 4c489c2589fa1e7978a115fc0a1a6bc5c74f2cf3a25893b8ec310b5663e50560

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.21.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8b05bb2f7a08658a0bbd443af947369441e4f89ecf04ff1135d8a221584d2811
MD5 3e8ed4308c7ff56f8939b0d67a6be474
BLAKE2b-256 2f268d2aadf8405976e66917dbeb537deac1474303f7b4abfa08659b6881237a

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.21.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 fe404820addcbc8f9375a7e04430581026be0e93cada6f75e4f5fe9dae469399
MD5 1c30b40abd8534369555d30aa417133e
BLAKE2b-256 1ebea22d0bf95da1667daa2c3207b4d5a2a0720fec632d2cddf2bdba2d7a3a70

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.21.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b4652bcf90117777c214d20b1e5ca914af6784b7623a54887c160898de611437
MD5 356c9248b33b22d02ed699abe0c399da
BLAKE2b-256 a7bf6565a6dccd7a473267caa9bb98fb8939582e118f7ddf03bc0de9dc52d605

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.21.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6f318a680c8d1762658e25557058b560236d153057371cdf4b205b5edf745dcf
MD5 bc9d61a4cebd882330c45640a6acdc2e
BLAKE2b-256 3c7b6709dec3ad23acd35e5083f47b370a3c54e6ea171959e5b7698a2fa6763d

See more details on using hashes here.

Provenance

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