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.23.0.tar.gz (189.9 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.23.0-cp314-cp314t-win_amd64.whl (612.6 kB view details)

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

aioesphomeapi-44.23.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.23.0-cp314-cp314t-musllinux_1_2_i686.whl (679.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

aioesphomeapi-44.23.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (653.1 kB view details)

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

aioesphomeapi-44.23.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (593.0 kB view details)

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

aioesphomeapi-44.23.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (642.1 kB view details)

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

aioesphomeapi-44.23.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.23.0-cp314-cp314t-macosx_11_0_arm64.whl (574.0 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14tmacOS 10.15+ x86-64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

aioesphomeapi-44.23.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.23.0-cp314-cp314-musllinux_1_2_i686.whl (670.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.23.0-cp314-cp314-musllinux_1_2_aarch64.whl (626.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

aioesphomeapi-44.23.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (640.3 kB view details)

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

aioesphomeapi-44.23.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.23.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (620.1 kB view details)

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

aioesphomeapi-44.23.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.23.0-cp314-cp314-macosx_11_0_arm64.whl (533.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.15+ x86-64

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

Uploaded CPython 3.13tWindows x86-64

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

Uploaded CPython 3.13tWindows x86

aioesphomeapi-44.23.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.23.0-cp313-cp313t-musllinux_1_2_i686.whl (678.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

aioesphomeapi-44.23.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.23.0-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (591.0 kB view details)

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

aioesphomeapi-44.23.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (641.0 kB view details)

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

aioesphomeapi-44.23.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.23.0-cp313-cp313t-macosx_11_0_arm64.whl (572.2 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

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

Uploaded CPython 3.13tmacOS 10.13+ x86-64

aioesphomeapi-44.23.0-cp313-cp313-win_amd64.whl (512.7 kB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

aioesphomeapi-44.23.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.23.0-cp313-cp313-musllinux_1_2_i686.whl (668.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aioesphomeapi-44.23.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (637.1 kB view details)

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

aioesphomeapi-44.23.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.23.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.23.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.23.0-cp313-cp313-macosx_11_0_arm64.whl (528.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aioesphomeapi-44.23.0-cp313-cp313-macosx_10_13_x86_64.whl (543.0 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

aioesphomeapi-44.23.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.23.0-cp312-cp312-musllinux_1_2_i686.whl (673.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

aioesphomeapi-44.23.0-cp312-cp312-musllinux_1_2_armv7l.whl (602.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aioesphomeapi-44.23.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.23.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.23.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.23.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.23.0-cp312-cp312-macosx_11_0_arm64.whl (533.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows x86-64

aioesphomeapi-44.23.0-cp311-cp311-win32.whl (466.4 kB view details)

Uploaded CPython 3.11Windows x86

aioesphomeapi-44.23.0-cp311-cp311-musllinux_1_2_x86_64.whl (661.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

aioesphomeapi-44.23.0-cp311-cp311-musllinux_1_2_i686.whl (694.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aioesphomeapi-44.23.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.23.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.23.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (635.6 kB view details)

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

aioesphomeapi-44.23.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.23.0-cp311-cp311-macosx_11_0_arm64.whl (533.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aioesphomeapi-44.23.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.23.0.tar.gz.

File metadata

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

File hashes

Hashes for aioesphomeapi-44.23.0.tar.gz
Algorithm Hash digest
SHA256 13c9f42b44fea294acd244144cb82a89b1a6f0bf931963cba34666dc79adbbd8
MD5 f21f3a0d312f9ea987453e0a1db1f05d
BLAKE2b-256 bfd892bd90cb970567de8c1fef5cea61ecda668fd6331d55c65f906f2d824664

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.23.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 7f303797b7e1f0b462062f44915fa93bb808fee9572cfe6ca0c7fb4e18c223b3
MD5 57f0f9d118e7535cbf4465bc110e95da
BLAKE2b-256 4f77d51a919b29330255ea87b60fb1245a820d1578c361d841c33ec73566a5f6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.23.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 8264ac9a843796f6b6a95a00165f430a530e93b62373daa3902caf7f7bbc0c34
MD5 0a5002e09021988fe4ae024005ecaf51
BLAKE2b-256 83dcf0cd4bcf4efd10efe91a9d8ce898405fb4b2adb4a7e1868e496c5c3eb278

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.23.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4d96005f8ab3982f2649aa097a4161c8bb98d2f7f1fd79fa1beb2f52a376a7f2
MD5 523842c7ca068628afc41734f321e51d
BLAKE2b-256 94ac022cab2ed415bf0c685cc6dc20251877432aa7f6dc30bfe30fd40a9c696d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.23.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fdee421d07d449a2c0a4034f452075e5e677922e0d1a016574f1751feb47eeaa
MD5 3d2e1fc3c3a0172510d5a06e9fde34f3
BLAKE2b-256 604c5cbdd6ec427ab2de8e9c1d557abccfd352b46d85264b52104e3596632118

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.23.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1d5df8fc9b10599d95d30af58093c99d9201326298520eb805931bcb29c2c8d6
MD5 76f0bb48ca881095a3039ff23e7f5b32
BLAKE2b-256 97bf398a94378667413a946d866f17ae182911ffe04d12b7c732cbe19e909b82

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.23.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c8d0b6be37b128a92c2453778df915e6ebece1897caee4066286b7401de7531c
MD5 9dce917bd30214dcc38576bea13f1c15
BLAKE2b-256 eef60e795ac4c4362eaf09ef578e451ea37d1ef0507bc25bd46121f5c8e022dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.23.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.23.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.23.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4a5e3ec1222cad8c0b19d7c2308fd60d25ee4875643dc273fc1b35ccbfae449b
MD5 f5fd3140af4ecd4e548376584a5049e6
BLAKE2b-256 2726c0a2edd5a9b57926949f671b5ee2df648f977cc40bc143a1a1b5bc80a252

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.23.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 244541d2f24ef53770f28afc778bab08cdaeebd12218508d830c6f51306731d2
MD5 28518a56925f1789d67a0a96df98c262
BLAKE2b-256 9281ede7f0f2b695bf2b76893812830eacff8e7a634622891c4ce3126ae53f05

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.23.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d956d53cb18430918cdba00155fa0098d14198a0b26a56a2c523f464b922c932
MD5 5547a8ac995a7f78db062caad6bdb2e5
BLAKE2b-256 01f65dc8c7545d99c15953a2e1ac462ed88457ea41f4adc6c5d495d9d70d9ebc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.23.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 c0b54bc2aeda5d5556fc3c3c23d0679ddfd8474f883aa3e7b7ab81614efb1b20
MD5 33fc87323a15cc3178309b20fc5ba3e2
BLAKE2b-256 d8c155dfbd8cf9d9028c987aad48f56c61b6e5088df153348c097a8c8884b61d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.23.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 035097e7b689edb01b7fd03489f35c823201b55fd253e37645bade3b5ef0f11f
MD5 cb0d53ba921b4317adbd9426dc93602e
BLAKE2b-256 5308fc2a859cf7b884bdf56ca994770aad3f5978d75d5b875c92b08743d38891

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.23.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 17e3df4f108406c514cceab09dfcdc10c2f0b999af4b105fd0de778b2291bca6
MD5 d53a39f66f7894d984db682b51ca46c2
BLAKE2b-256 e060fd13a0e28d653d40ba74601a75afa84ae4f020d02580ec1344b352b33424

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.23.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 777bc48b11e21953f46c356d4b0064f8515070743ae1cf68cd0bd719b0eda796
MD5 9ca57c1d711c9b8cff9e53699d319b09
BLAKE2b-256 8cd954d95e854c10aa4709b16f10e1ff9c6add526f4eeddbf0a250108d931a19

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.23.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 e1b4533fee0f7b54fb61ad87791487ed7acea729f987975b64e4429f8a023f9e
MD5 06f713bc8ace8858d87b42f5992999fb
BLAKE2b-256 61d9fb06adb156cd6b3326c5c0fb4dcaee6f5baf9155d84e75bb0721db1f8f3d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.23.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d88beb88545b6f766d9a27434758c3a70a1120a9184ead9bf41f28ebc84ea174
MD5 cd91c59749d4661f5624a16532af3992
BLAKE2b-256 62dd60898b930e8432f065d61ffa4a7c463cd7fc495dcd63eec5e5940e75aff6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.23.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 515931bcb51fee4fd863336f9980ed3b8728bf1e78479fef277bc73d00b3fc84
MD5 653e06c45ae92d7ffd1f39361974ded0
BLAKE2b-256 dcb492cca3aeb71fb0ec3f4f8cee7de6a9e556ea0926be47eb2e815396585a06

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.23.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c057567f4118130cd823aa812e641cdc0b942fe6c7325a7b06421dd93775d01e
MD5 2a42196b591e416a77286b115ee3e4fc
BLAKE2b-256 248dad12090cbd7592c02e4f0df1077128f9fe055c7fb98a587f3285227d604b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.23.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c5b9ad38626a5ecf3d6d66c2f44df41a2dd306af17076667443f03d546f9ed4b
MD5 787b8478467320f8750623286331f5de
BLAKE2b-256 b875f6c388a3bd9067796b43869e624b2ca3d9134178d54a841db1cc6debd5d4

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.23.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.23.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.23.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f3727990e0e3f2a713ef809d2641b12be5415deab557204388c4c8b220acd331
MD5 ba5b1cbdeed77fc2bade62683ded9edd
BLAKE2b-256 3deee40351bc0959b46752022685f502dcba9ca7a4ccafb99cc65fe7db00b82d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.23.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 15474cbc9b3a4fc8fb648a0040d89827e9f354e649e0bfac46ce153e5497a2f1
MD5 d87fb28a970f16ed4cd91cd8fc987423
BLAKE2b-256 1d51440d2115f1d3fe1bdaab0f7978fee484181e02a47a72bf30f3cfca744f46

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.23.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0491a23a7fedcc7552824578214db0ab88ac6a2826b2b8099b980399a62c5b0e
MD5 02b7bc581650d6da37cf3ceee37c4002
BLAKE2b-256 a9061f3e3b1520a90dd4da93cfc9310163b4ad748cd17504cebb63eeda78dc9a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.23.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 ee2fbf7731692fdf82b72bdab3b81f17da0f9d6b50ac573b7244f2d5872a1c0a
MD5 1399636870304f541aa8f0a853679229
BLAKE2b-256 357ccd32a1641bc712b3165769bdd18f37d95ee8659d34d60bd53c2796ed536f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.23.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6229035b4c1eb446dd19e945480a586ed9c68c93349160f4b5289d309d5e9c4d
MD5 e6c063bd5e99ef858ddc01bacc9ca3da
BLAKE2b-256 29c67074aecb549443e5974119ed805492cb99b4fd36c3f0cd540be841bd4d1b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.23.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ef8846210b9363e15a6f1e292dba8a031b7e03aed9c8e750fabfa120c87ba396
MD5 65c464c86b8a5edc425a73647aca0528
BLAKE2b-256 0e15fb4ff6932659a90304295543e3f4d1b18798010e583f595afea47fc851b2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.23.0-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 749b17eca83afdc204262aade660e037c4d96ee24b9ba09b32118a3c0d232586
MD5 9b5408848a3469586c080c30f0a4e631
BLAKE2b-256 4cd1f30bb4c6d92476c428b0b060309c5f5c5b29f4b998ebdd808bf63a6d99c8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.23.0-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 ffbc3a6d6b368803d31d3ed10ea5f8276dd9328ef9c2a67bfa7eaf00b09fee8a
MD5 1059d15d067ce8924d06b7a514fdc3e9
BLAKE2b-256 f6869312161efc386a74166fbff078a6cd313425d0e316371d698b85681a9952

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.23.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 41acdbcef6bf403a03222379ecabf9b24f2b1fd57a0deab202fd94897c8308ec
MD5 a74af8433546392e419de978f1bfa67b
BLAKE2b-256 a004520f7cd30ab665a770877b50260639ce0756ba34018c41c0f9658584f24a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.23.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7fb2a1c65bb677f2896cc1db64774fedd985366ac430d81424cefa9e9cc42c1f
MD5 daecc740f44047aa3d615107bf673987
BLAKE2b-256 0e027a31241462fa55029987a8e74bd6e2749a80f8b65bb4d29c24f6261f2208

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.23.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9149d0cd7856f235ff470111f234795927faa0428f1963a49dc6da44eb717f19
MD5 fc88a7f36584f8f37cedf0015334b886
BLAKE2b-256 677f6f74a7c62793dff8d060f8293620a7f6db09b5c028d179b7a0c180e043df

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.23.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ab332c4b200c033138e4b8cc9fd8fad7c13c832e7ad073c75d8a78f165f532bf
MD5 fa44f6332ec9972195ff0010c8dd8059
BLAKE2b-256 e126b364f8eff40fd79753f8de7ddf0b58398f43747aed51165cece71eaab7ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.23.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.23.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.23.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0483d3b5b22a56accadcbc5e51337f9f4e3acad5483e31b58cf6dd2cee13b27a
MD5 e43149729c7b775a54da84a7613af6e8
BLAKE2b-256 f3dd4f0017b7bc12134d6097c74581acb4013ed5ef8a0e415f28dbc7fb0dfedf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.23.0-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 da0db54c434197219ba21d58a10bbb4949f187229f328e5cd710bbe81154dd4a
MD5 c02b9b01920d62f53fb54189cbef8665
BLAKE2b-256 34d06f0cc28934db60740abd16160131579d166db931a3bc3ecf678cf68755f3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.23.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ef7b92ec6b3c4fe6b8bb23e895dec0fa056da30e9dc4124ee051f06c582a9e81
MD5 b92245a7f6c3af03eda0db66ee3a4678
BLAKE2b-256 98470d804f17b356bf9e58e99523a74ea17218987ca42c8712e02ca0671b0fac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.23.0-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 b8ce4ed8fa865309c9c3134984c6442130845c8aa5ad125e9b2c00776c817a0a
MD5 78001a5d8f402511cea4c3c196cd0e18
BLAKE2b-256 2ead947c95e1d1d9862b007f6be209d8a16a3e8683a48eec246e0ad53e05d5e4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.23.0-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9c671f11d481d0ba598d67583569011dbf9554cbeb08d082b66e1710782033e6
MD5 cc3c4c3defb82a974b1e3554d3f4bbfd
BLAKE2b-256 9e2fd63ad101b452f1fa2826de5699f07dec9f63ec9d2dbcfeb90c19a6ad2760

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.23.0-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 2ec374bb1efb3391c62a93e3869bfc84fb9588d1ae343703788a5d6030a2ae49
MD5 be8930b7d965b3d64bc80032e6fa237c
BLAKE2b-256 c549dc050929c10f9b803ffbfff022a0bb1c958b2e316db303b169fd348e949e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.23.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c970f4978fdfa6bb7797a7aa07bd16212f7d1abc5cdcdb4ec51bc3fee64f666d
MD5 0beb0428604dee88f9cea119da6ab14a
BLAKE2b-256 1d62ed8ef2ccd65221e507d0d07c2e83d91f0368a3883c5fd396a9fcbc3f0329

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.23.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 8b443ad4271d4294df389f95660cb3f0d6d6b4dec12f38f0432749ce85c91e4f
MD5 728089d50bf40ad03f99158451a2bfe6
BLAKE2b-256 e9f238244cbb2f86b210afde505dbd1a5164c31158479ef5ffa3626d99499e23

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.23.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9057c4bf9f0989e0142d8eed5808f86abfe691c708da3a9c168f322596d3459e
MD5 3ce006052eea6e1e38ce89a8879de47a
BLAKE2b-256 594f3e64d591029855d294a57d2761f61c06b01de895fb5c80682738aa2637fb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.23.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 65d6926a2e4381215b7b13fd69cbacbc7c05f3cea29641dcbe2a20ccea813fb2
MD5 0ca652c74b1d2b72ab5fa32c7afc2a3f
BLAKE2b-256 f9472d3526eeeda982be8c549bb9209c98d709941031e553cb4685e50c6154d5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.23.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1dcc466518dde6b46c6660c5c924a1b7b0c9efa995a0e7a04d0003224633eb36
MD5 d8714f84cf50f21e96e964cdb3f7ce07
BLAKE2b-256 a80e3a268374e9516c728d8519c8edaeb161b53e73f6c4d865344ae0653b6084

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.23.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a59d76487c5b6c92a301668d29062b418188bd9e03557539cb7859bdf85c5184
MD5 4a92f670bed79874e9fab8450b3db695
BLAKE2b-256 e74b856151a7e394633c22ac2e1ecddd387dc26526aa4d221bbe442b498c247b

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.23.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.23.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.23.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cc8a52e2e408787f245ad732898ab8768e85958ee18fc4049c96a5e973764508
MD5 deda9229d29e6cab31dd50383f8a3e82
BLAKE2b-256 043864986e8bc3dc303cdf9a2cd95ccc0115c5dcb5496e9959427c18c8515ba6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.23.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 41e1a18c3b3edd1a0c104c43bbeabcd3d07e10d89ea8ce96eb1f23a5a332168f
MD5 6828f72799dc4b91d2d46b4ebb313134
BLAKE2b-256 445a14d42776e5d212ec8a888cd4952a6880aeb83f0e9455f667eb2fc0d0a6a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.23.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e026f21c3074bc3c4c16796008ea2a86fb168237144684cc5573293dbeba1539
MD5 9dd6e39b854469129e77c70091ccd740
BLAKE2b-256 55339e32b543a83d6e53b819dc3d6627ad3177bb693623542fcf20c25d95c84e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.23.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 7f2b248ad33178edf517f4ea886fe17f5124c557ab097f94d9f7adbf1df943b2
MD5 5e14c380b36a63f699f34f42828b6172
BLAKE2b-256 b0c3d04359d23cdf2f9fbf84618ad68cb87142fcb4a802025fa69b0a1c965702

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.23.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 62d3570c33249c6a0d6a564f3baf023350804ed25df180e7792cd2ac3cfc5102
MD5 7cdcf47353619fbf6a5d26bb0ab5e4b3
BLAKE2b-256 42a66d749364daa07af3cbc09d6d8d78dbda61bbaa2253abda0b23fbb126b19d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.23.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 30a137d4830a4376f5ac1d6d8335bc051182b0d6275b930f4f4f18945d6dd9fe
MD5 fd5bc2f428a7039cb15b04df24b6675d
BLAKE2b-256 89181372c6dd7c15742d282e2ed02d89a4c68e3ebc85c2dfa11f452164fdb8a0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.23.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 028d2f3201d57af1d1de6b4fc8bbeec8d49c9132c64fc9cf9f4056bf2fdd5c83
MD5 246369fa65d9ac8fca9d19ee644be43a
BLAKE2b-256 6d8077afb3fbbfbc5e4338ce6e60e015ec1755cd8d1801ef8d212f4540a96f35

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.23.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 d2b9a78f2b451fbb82ccd429ada5b1abcd0bff99d8c795386034d494bd5f3487
MD5 7f0b1a89f419062c8e1ab1ecfa8b254d
BLAKE2b-256 dc46c430cbaba766930206ebde84fa1ef6052c3cfe3990a3c23cbb59d4fb3060

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.23.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 038ee707b0160caa93d795622d2a5cc93e655974571950ef0612da74d001d0e7
MD5 5d2185e786c306a0f4e59f57cba3a2a1
BLAKE2b-256 603cf25c8fdb50e8419bddff0dce48f8afd628cdf9b00d05770d4513905e55fe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.23.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b7485f73d2828885b2901ac592b01db06c5c764d0ae6c54d7f2b20322988b74c
MD5 86e5730eb96856765cd6d8fd1b3a98fe
BLAKE2b-256 f4e434cadad10617d8e42bce7bec75efd7e926c3925913ad47394d07adcefc6c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.23.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d34e9901aa91c690e3e5332a9a241b314fdac2fa42cd3aec5028c90038863bcd
MD5 0694bd25c6c9b7a62e13e2118bc9c882
BLAKE2b-256 c214614d88f2cc04a31e362583147791d9cdabb6ecafdbae2216a0c4655cea94

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.23.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dd0b8ba376436a29651635a20b6115272bc9d525d122c979660f7d01ebf0a502
MD5 34e852ac61e2a1779b7a24549725413a
BLAKE2b-256 47cf727a5975f3a57e05a85c4a8121512e02f061e2dd46858d9f7d1a808cf1f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.23.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.23.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.23.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3ef9f926d6464a968908e18feb59b6320150771bdb754363405d9e514dd7fec1
MD5 2fed570a7d46121e18cac47e0e67a205
BLAKE2b-256 67f0ef26047ed6616ce0952bcb361d99f6045373c91d173685baf310dc46663e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.23.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 7ff2b42b7a19633e3ae2ab151bb48705721f863e02a76f21e637a1fb975f9cb6
MD5 10a4d8a4c824a9f349d11b079dd205c2
BLAKE2b-256 e26dbf9e10bfe08cb78167993c5af54385aad2f976b0474e042e7cc2dc58d34e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.23.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ca875c9cb9fb9751a7d98505c49bd47c3abc8168938aea8aebee3058d460efbb
MD5 16e01e570498167b0ad8366f5af51fc4
BLAKE2b-256 ec601b27892fab2df226765d9431fdc668e947d0e9b200ce446b4bcb201c1e9c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.23.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 fa2745f709ca1525bc4a3ca7978a60a74a3bf1e0e07cc0874c727c99ce127c09
MD5 7dd09bd4881faf615565d2cc55d9019b
BLAKE2b-256 d988a8d226dcfdfe6d2412cb779b6f18887b84be35874173f5b3c05ed8c4c098

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.23.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 30c3842d0fe7b78af401c79c3c06481445d71b3cfbed74f3d5e6c9be7a12130d
MD5 aebbb26f5df337a7a58a04517d3e30b4
BLAKE2b-256 ec19953245b7ad6674f9323b87ec21662b7d726dc2ca3ccf919cbb1b4fbe7ce7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.23.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 432fafbe70a7797b69d1fc372c6c765a01cb4ae6bf4658fb5d822a4b880c1f49
MD5 0dbffca40517567613a3358cd2b6100e
BLAKE2b-256 1f4a41772198af0e6666caf2c974ea57ebdc69a7199edb88c16af760f6a62611

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.23.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 832d158ccf4670a3a65464f61077d24596ded9446033552dcc835e14f9aed526
MD5 674ac6be8bdde3a299f956dfb15f79d4
BLAKE2b-256 4b5e9f7570922b547a34491f7163e75e62450e6ea648f1571196840bd13f3a7a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.23.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 4c149b051a0411bf8f7add467bfbf6d749283d3dac34ae9076c70d324135ad0d
MD5 92667ebdbe32e729da1712231690199c
BLAKE2b-256 689aece9a3b496a23e606bfcee9e63a1ca467e2b9f8c52690bbf1948b3970eea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.23.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 046d367cbb15932f5b4c6772811e5241ae080e401f3b551afb774f0ed4f419bb
MD5 b81f82ae383faddf5aabdc1f0947215e
BLAKE2b-256 8373a2789ec7200776eaadff70dfdc5aecce1268f4039c5699ff93aa6433ffcc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.23.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2f1c5313d453f380c3b055f88feebe80786fe99ead10542de6a7304200f2366c
MD5 6c00250c9b61f2fd013fb0a511db0cea
BLAKE2b-256 c6daac3aae42eb03e9b48ef0fe6807cbdd0b9ea9c8262fdd137776cd54badbdf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.23.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 21eed34ce848ad86c58ee3e5a528d4435708ec7a41cb71a299d8955bc36ca9b0
MD5 6d9a531696b6b18b29652e7d77e3715c
BLAKE2b-256 653758f5961538a7457faaab2de1cdea7e0a99da8a464012dbe64b35ece0a89a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.23.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8b396da8da54cefb44fae97ef93cc1435f37f0e257970b3ebcf804c07d69e47f
MD5 f5965cbffe01fb2350a65efd9e0a3d60
BLAKE2b-256 a7e691a5095c795bb02aac678ab1f0f35d68bd24cf80f05f7a0fff7edbe008d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.23.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.23.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.23.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7c510012f728d039e3c4d575b713d227206c5ee796148efa59b6b0ca4d8e4914
MD5 a373e66a9f94b6d01ffadf6a362d625e
BLAKE2b-256 d9fb91170059a7f2ee57c7b046417d8620b42b8152e07c08b109093c93f02838

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.23.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 07110d4cce5a3ddc934c0c29d7b8bc10e04eb8dc249e1b03622bcc93c6fafcad
MD5 6f7c6f7ebca8f3a8b01719239962acb5
BLAKE2b-256 b2019182c6242fa8edba2b1563850de4aa52591817d5b229c878ca04de94cf09

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.23.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f1b774166b7a2807bf322428192a329871baa6656110605b38e965746e2970ac
MD5 f82493b9f79fbaade928d4bdfd7784ff
BLAKE2b-256 64862c3abe5581adca1db14388a80313ef6533df3725388c80dff67823d20faf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.23.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 02e1968a2954722ab85664812af0c96abeee1aec419ec75ae48d879d4598f954
MD5 6970b937456886483190c7581c7da1b6
BLAKE2b-256 d2fd29f08a278dfb6fd76a248963fc8725712c6428841f7f80024c22540949fc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.23.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d6951c55665b85a11ff45644acdcc5773404f8140aa9102f9dd6a46817e00bf2
MD5 da7b500281427bd050cb181c71ad4de4
BLAKE2b-256 7cbef65f855b77a8dc7a6b1effadc8f2e25dcb39a3e27af725c0282f48ac9eb7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.23.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 39ebd2e0a5faa9824e20252853a8096f4b5454df1cd15b9967797fbd230dc89b
MD5 97937a37eb453516524769c0d08f2763
BLAKE2b-256 6043401783394aa532387424e17dfd8f4f83c68ef5e30d2b36f16ce075a0dbb9

See more details on using hashes here.

Provenance

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