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.22.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.22.0-cp314-cp314t-win_amd64.whl (612.6 kB view details)

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14tmacOS 10.15+ x86-64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

aioesphomeapi-44.22.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.22.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.22.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.22.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.22.0-cp314-cp314-macosx_11_0_arm64.whl (533.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.15+ x86-64

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

Uploaded CPython 3.13tWindows x86-64

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

Uploaded CPython 3.13tWindows x86

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

aioesphomeapi-44.22.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.22.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.22.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.22.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.22.0-cp313-cp313t-macosx_11_0_arm64.whl (572.1 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

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

Uploaded CPython 3.13tmacOS 10.13+ x86-64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aioesphomeapi-44.22.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.22.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.22.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.22.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.22.0-cp313-cp313-macosx_11_0_arm64.whl (528.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aioesphomeapi-44.22.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.22.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.22.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.22.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.22.0-cp312-cp312-macosx_11_0_arm64.whl (533.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

aioesphomeapi-44.22.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.22.0-cp311-cp311-musllinux_1_2_i686.whl (694.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aioesphomeapi-44.22.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.22.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.22.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.22.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.22.0-cp311-cp311-macosx_11_0_arm64.whl (533.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aioesphomeapi-44.22.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.22.0.tar.gz.

File metadata

  • Download URL: aioesphomeapi-44.22.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.22.0.tar.gz
Algorithm Hash digest
SHA256 aa1021cfd2d7d7093a78dd91d8dee5ab4d2d4a2698ff25b88f1f644d9a7f7519
MD5 3178bf4d88912dfa97d95de745de9e9c
BLAKE2b-256 b4fd4647e7d06460b394163d622bd1efc37ad0b425afd36edb9e5e970815b01b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.22.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 a1159d66655f15d4a61ba62f00fc34f300f81ad395b8595e34f3ebec4b00d40a
MD5 022623de0b9b6a895b2377c8b36910be
BLAKE2b-256 1ed65be5d82a84b8e649647c1fae6db2d8d28e5e7c22a41faae35febec61c301

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.22.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 7f4bc179e9d6118bc0bb892134ae4af54d4abeebe26e480e185a1cf5281f9385
MD5 81a9c045d84d2ca736e73ca45dbc70a2
BLAKE2b-256 e5b62c75eef897e2e74523191c1599aae598731c606b61dc72d900840c1db206

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.22.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dbf9597262c312fd4c8a8ee744ae08b3b6b191d64ac92fae42d6cd601622c09d
MD5 974228efa861136d289e174f4d7b7d5a
BLAKE2b-256 659a07aae7d9a27b33b23ff72261571d5fa8c3531aa901bf716f426254ee91c7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.22.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3ec668cb57ae1838f6c568b5259d777d3799f9047c4ed7147956b1a8f05e03bf
MD5 ebf72faa4560eac9f64e7376f2c68ffc
BLAKE2b-256 47ac0bf86b93ccdca0d0a01a256d4ce6b0d8067e388e4810a1d9583567b40fcb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.22.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1b499fb9838035c0b85e28a3319aeb361ffd32fb7df9ece06a61df9164173118
MD5 d701bcf4229fd706ed38329951b586b2
BLAKE2b-256 e5bee50f3cd9c8ddfa7df0d134311e49e8a271ed0e9dad761c210456ba0c7823

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.22.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1b142da157ee220f0b4a8accc41af34ad13d4877c2aea5c067d4870762db93b1
MD5 89dd7ef1b280b4fe0b30c3fb6bd8290a
BLAKE2b-256 1bc1f18a89edd7beb5442007dfebdb91894f8e75a5174981191e017d8ca23c8c

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.22.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.22.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.22.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2ef0d61e2a8520e9bcce9007960fd4eba8f08564feb75f5b81a8b41ddf54fde8
MD5 6bde51080d873ab4373af2fd9f993add
BLAKE2b-256 f000d526b7ec2ca43a14b81a65f8cfdbd6a7f3b86886ea61fe15bd342f7e4eb2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.22.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 7ececbc19caa79e9450d52155dc46ad0a1d5b71fc68878772fa1994fab0617ca
MD5 ad82fb0015ef6d037b938133b6a3084c
BLAKE2b-256 5c08458f198ac8788ff50a3b4e66e4b740453fa64a979797cb2c093a5fa641fa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.22.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 dddfa14723ff1da4ddf2fbc63d70d1b2e52a9455f51495af38444d8aadc6b754
MD5 c931b26c6a7b5577eecc702b44dfeb68
BLAKE2b-256 ce413c542d1bea8239943ed2431f328c86a307d478f13bfaeb02f004756ea638

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.22.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 c61a364803dfce4ca5cda58331c9b07a1c758b34de336f074b8a51333929178a
MD5 8ba09f2b9340228e19a44bd46a052fa3
BLAKE2b-256 d525568e9218c925b09523db6e2a8720a053b7f97a6d90d5a7bb2e3087ac1e7d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.22.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ffe09ffb93452f517b28663d7dcd246846f3588b23413e94b95ae30b215c7fe5
MD5 5f2be0264b039a445b1f3008a6f46243
BLAKE2b-256 d7f2700a5acf88fb4eb008d4665959f8eba98b456e9404d29986d60151f46a38

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.22.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 15125f9a558715d6d6cb7ac26ba057d8f53b3943ee80b2935df6b00fff809b64
MD5 8b88569f95f98e5c8e63d2175997e5d4
BLAKE2b-256 afc74d0abe39ff5ccd5c9f889fce0802c9bd908f6203d1656363032cc15b107c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.22.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 bb115deb6f235498021536e867d861810a7f6691e27724c4b32bd2c8651ff201
MD5 d293e7c8854c5957eae6f27f47897d35
BLAKE2b-256 a52bbcf8dae1451f106b6fc22f2448aff6ec3fdf8f426d171b52577829cc41d7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.22.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 0f47d3af227e90937dd3e245ac4c525421684cef966f1171080d306dd077b6e3
MD5 241170317acdceb6105d9a61b4da4e3c
BLAKE2b-256 c70a195f164fa923bd90b7c7ed813390e5fbeea3fd00007c167d5db3d509b76b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.22.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4ffe6b33b4496476ed0aa9249f7cea056d382724b157947416223d3a64cbd2db
MD5 931f789d1505e8bb5302cbd1cc784ecb
BLAKE2b-256 7a11e388e6bb1b023327dea559ac9580ce2342c80bd4a62cc321218884156240

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.22.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 247672c7d039bfaf6a2e2a74b954b6dfc19d0541d4b3107731e59363c783b9b1
MD5 3ce10d67a6c7064abeac305b4b92fd71
BLAKE2b-256 5657b83de7803e29c42f27350a10fba589c83b7e009ab5e0fc8904371984e987

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.22.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 15fd466bd5f79183889eb776effa8b91fb12ee7ef735d5810a93dcd816fd0f1f
MD5 79d4c1da32a5e4770de250508e9bc37f
BLAKE2b-256 a386ec9c553c4233612e2adeb4b2cdca775acc6269b6dc6f42a0380a745f2493

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.22.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cb3f4db1443e9fecf3f2e843b83fa4d064d6de7a70b61c54b85aef61882d8eac
MD5 23c6c0ab2bab4f6992eb61136140e079
BLAKE2b-256 862f3b3b323b971524696bf9221f631f983e92cb6e63fa394ef447d89d40350d

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.22.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.22.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.22.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9cae5ae757f06cedec62915248d8a89349414d417d77622a5f8114cda2afc030
MD5 e1944b42bd7af0762ad9a798bd6ea806
BLAKE2b-256 0de6fb3b984bad0396437aa145f9f992977e3e0d021d4aa9a73dede5805d9239

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.22.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 093a8891d796baf52e89280544d9ad25219620ed07c6b0fceedabcde37642b10
MD5 aadafbb095db0b02502382f33f3b23c5
BLAKE2b-256 f71a7da561557748ca400771200e24c2b0f8593645d6acd078e7f91d6d092e9b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.22.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9d07c8470c508964311e9067734420ac5f48a983f8544551927096531a8be0a2
MD5 9eaab4a4d4bd4fc7c2063df20feab501
BLAKE2b-256 49c1f03189140eec2d68899bce5de83c7b8cba6174f70b00678b87359f8af6a6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.22.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 098596992ce955d91254c79449ebccc58040b7d6391c631d42104d30f09a84ef
MD5 60ce727d4ceeeec219ac1afe94b45e42
BLAKE2b-256 be7bd6351e186d13c14d61977d48f007234e334cc1334cfbc4b752d3b2d78381

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.22.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 71f7d2e20435ab546b8fde63492477f6515becd4eb7766de58f4f8173158ec94
MD5 249ffbddc61262d72440a3a49aa4c2cd
BLAKE2b-256 27a992eb4934ec2122106fbd92861f0e59ecbcb4e891b19b5836bb288a25a62f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.22.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5ed4a3e07075812f11f0f3d59168df79edb4a3f7eab81c1e4a6b17a1b96d18e6
MD5 4b80e3e8f66e5f26b1d018ff7afa8563
BLAKE2b-256 f1963362c27896fd963b4763ba087bf23221c030859ac2d8305316d052063587

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.22.0-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 1c6e2ab62276fbd5c199ba6d1bc3b5025c6093eb1adbb7ce14aa5836491cc637
MD5 5850c98f39a868571e8ab47a756e6b90
BLAKE2b-256 f86fd0377dd205fab748c0cdbf0a4f6dda99bc1ef9fa2b4fb46ed48f8c8c8852

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.22.0-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 0f3817024de18312c2828d9ffc366908fe50310a52ef91732bc5c2b6c2c0ab77
MD5 2a0bf67090e19c3c1d049083fce7cf10
BLAKE2b-256 cf20a8d27379a901d028687ef45bd73c205ef178afccfa7e16252456f161fbb0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.22.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 da3534ad7231b832a7be4df9ffcf7baa1b6b57dde996f18523b1108d04d80555
MD5 7ed4830e81ad9a7b48cc18ac44113b90
BLAKE2b-256 204035913e68f516520ab19f81a8b5cc6d620c28e594f257834cd87da2e18db5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.22.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 16332e0b3e35c78d8bfbfbc20b47e8ad81c7ce93eef95b96d5cd4380b87c5153
MD5 d0c61370ffc6ce3c0671170222103348
BLAKE2b-256 3a1debff19090d6cc1e2386bda8318b1fdb51ebf2b6331ffedcca6753be521a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.22.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 41877bd44a7d0cfe75f5af7809141a5bb5138d408bf429f11aeba53a9d7b8ee8
MD5 0be4b4ff4a6ce5c3205403b61dd2a5e6
BLAKE2b-256 e6a9cc7d90772a9ac59057b6beefda8c4f30e8de5a3a453a544b6b0f4b070d58

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.22.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e4d054947391f05a9ea55868a45dec401ad5bdc6438d7744072bfe41202c6e13
MD5 584a63aae2fb5884a3cb10f12bd813bc
BLAKE2b-256 a542b05afd67661c24844c827796cd2c2897078886928b765f88a51056ba9ec9

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.22.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.22.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.22.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 27f80a1668ae3e1619f01e039751bd79608a60eb4f12bc8f287ae927aff74769
MD5 a2f10e66961cb19e81d15d0b17de65e8
BLAKE2b-256 141b2b0110bb9300ed2b242c121758c0726d693b5d0379208f73d96406d1b480

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.22.0-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 56908af3f6608c717f3d2598fe6a472de72d585cda8ee39d57b254fd3530bdb0
MD5 cacd569c6ee67836fc4c4e9c12e4e155
BLAKE2b-256 2512d859d417acf7d0e69a8e78df929f3efcab5be3b8ff8f98d66b1bb1c3ce3b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.22.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 58e7b56a35f13d4f22a2758a9e337f3fe325fbbaf9d0e156273f047105c87077
MD5 339554e3072ea25e016a08aedfd4a461
BLAKE2b-256 71eae4b96b79fcbd211faf8df8a25b023589cb0a5453ef8d277d3403e44afeb2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.22.0-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 1b55c3e660822936ac75b9697a0e2d2e026f17607f6797097c809d8710208d37
MD5 cd103ee4a5acde41aecef4d72cbea0bf
BLAKE2b-256 eaa7b390828c790fdbe661d0cb40cfe6db6fc4dabfbb47377e547344567975cd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.22.0-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ad5f6d65986e200198f94cccb43caa6affc959568d7bd8f686111de75e788e8c
MD5 cd574263ba1c76a955a12aed7f1c79db
BLAKE2b-256 82d50acd9144ed953c7157d272a8c3149c73e38590c653a4dc55f65a4a0806d8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.22.0-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 7afaa19dae65d7d8714bee90a3a4edbfd30b4d151ef3400b1a4e2049f3f5ec67
MD5 8a8478b7b8edbff930aa8b957e580e1e
BLAKE2b-256 0625b117225a63fc18eefab9992ee16100d27327e0fbf5dfcf2ed4c6731abf90

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.22.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 60b2f9a144b758b769c02b863853f97ae533b751829734e10917f11ddedeff13
MD5 3270fe4d04a81718ada8e47c977c00ab
BLAKE2b-256 83e171004405971f5ac78f8b0831b30fc4d726fdfe366f639e1261927e3b75b5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.22.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 3aef45bcec5af870f507a65fdc364b004e824264d54b76b2dc0c3ab5e94b864e
MD5 bacfb54c0a722bc5829579bd6058e071
BLAKE2b-256 894cd4434ee757d024f8ec4bed8bb13865558f0a26f34ace6a5089503057ac40

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.22.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 227c2d407288470bafb1d00abe6e5a86a4cd95ae7f35fb19748bfc0c7896b295
MD5 a765cccd94d265a90feae1f4aa5d182c
BLAKE2b-256 ac002392e12dfa83c5de81ca610399314e862692008bdcfc34262b4397c35515

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.22.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b5e578d386a3a2ecdf24cdf62cb27e929de9ba25ecbaaf3320d0b12111ea801f
MD5 366089d7af51c5a61276ed30a5a14ffc
BLAKE2b-256 bfd1f8ba5c5ecdba7cf74830f7b8e782597df04d93f6a7b84ecd91b82736d841

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.22.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f85fb8339ee182bc0f12e38ea95736f30f24225666b942e82fe14e5c16dda6b8
MD5 2ff0b300e60ef1d1955019ce6552f54b
BLAKE2b-256 d51e20deac3c40703a5e7dee1f032eb706a087273b7678e3960ab307cf7ea343

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.22.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7e3cff130c2ef411901c608a9b35b97fb1b2f9d1ae5a022382bbf80f42f0a405
MD5 0a25c17b4f5320f97048e5c097765be8
BLAKE2b-256 0445e35bd550252e2217ef88ad28af8045983db1dab377cff8a4ec47333b8f60

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.22.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.22.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.22.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 16869ae2b298b86d99a9f4c0acef735989292172c0b39a6b7eb6862c60b38a6f
MD5 aa176aded3f68dea8e062b7577bd63ce
BLAKE2b-256 074922640a27a10311319122a55327743ca65ba1eb8a3ec59ea6429a333e62a3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.22.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 921217ff998f31640f3165fa00731ff7302ac3214a8c9de4d309178ae4e2d57f
MD5 de95beeb6ae092ac7c19aead32cda1f7
BLAKE2b-256 e15748fd3df26063773791f0bc2fd0430eaa02a0a5f4e9bd28f997b474cd900e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.22.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c10c2346c3d07231b8597bf1a3dc23dc7b7f6251bef7539a806a0f6ba3327536
MD5 6f36f3b388f2d81a9d25d92ec18dc988
BLAKE2b-256 c90e7e20058a83e1c0ef20d42edada0c439400b3567ecc4dbbf7a2a894c3e13a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.22.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 230b7661499018659f58bf81694fa303e31f3eae5c765feb1d8bc133fe09afb2
MD5 60f1c59599cbeda3e82dfebe0e8ae485
BLAKE2b-256 841e4d7fda4a3cf73d7047aa7c962eeef4e25edabc43c1cca0cfc4e6ed973dc1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.22.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cd00f515490f17edb6d080d1718315fec9469545f351982022505072e61b20b7
MD5 a7e501a705301ad00cbb9df0285fd48d
BLAKE2b-256 b3d39ec63d9a67af720c939b35e8371672f181327c174945f768adbd83041ab0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.22.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 72ee76ef659b15bb806a1fad91882f9eb255f745e99a4a50b39e6f9ade5113e0
MD5 6f2cd412562627ce150b5fdae852a2ba
BLAKE2b-256 4a1fed9842df5438db8ef7ef430b20dc18a817fd48a64e140c85e0949d6fb16b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.22.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 9bdf54fcfcf79289e8edd24f83e0cff87cf3a584b064ce5b8ec40168a4a310ac
MD5 6cc1e09684c5123248627c89d9fe28c1
BLAKE2b-256 c174382f63229d60259946a6fa9332dace3e5ceb32cec577137121751b032da2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.22.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 42a69f0b73094c4f4bd5bf34f4a6bfec9802583ff4260538bb73dfb12af158b7
MD5 e93e7ee8d95cc243f1aaebd3269a1e2d
BLAKE2b-256 a0556dd738fbf7e54cab24ac471b580b306c23a78fccd70a0bac16da11012c6c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.22.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 23870c2e62b5d15980875eb0ada5bfb24040ef0b89ccd51a64b488c0f060f963
MD5 a1e17380e5248a411eaee6a12f87f852
BLAKE2b-256 466b01e1de298db9c5b5d1908db06e4c9e3aaf3017d1989dd6de0873f6dd0be4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.22.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 73bb3b22d45ef488771bbfaa2f2be854d571e5b8853961ba8763be88c635c022
MD5 d31e816b0f8641c95c4cacbf286ebbb2
BLAKE2b-256 ad1da7496c1cad8a8a24c71558c848aaef0d70223d250afdac42efdbc6edf2b9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.22.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d7e9c86ae8598b3654b44bf00219b5c9de01c5ad72c3c9b84e62cf7d5fc6242f
MD5 6b8e33188a6afa882cd79ddce3225f25
BLAKE2b-256 9e9c9d6111db4bb61c89651d09e9305f63b444f988b143ce91b2c4cf2b125484

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.22.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1e4d343d8ef876295798090f5cdbeea1e0a82c76fe150ea8a4a6c4ef4e265965
MD5 5429b6804204470d985685d5b96f0248
BLAKE2b-256 0dd70edc4c6ba51dc1ac16a90dd7edecf45e76b9119de2093c3fad75ff1b448b

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.22.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.22.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.22.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f613f059e3636d6e92c2c6201f154975d59697c84496bd322c918c72a390d9ea
MD5 b78b98d3f1bbc8b433ffc705804a28c5
BLAKE2b-256 43975c0a68791b3291506b53452538e82eb7c5485944f6e60e10b45d521796f8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.22.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 cfae1d14e08b8d2e149127d4cb11783ef77e629ab5379b7ea8aa8dc0e13362b4
MD5 ad3b3ee8b8cf38cb393ba006b41bba54
BLAKE2b-256 b240b26add320085a86a5d0a2fc91bf5a7b2527e3de0f6deb3329bb8b6b8dca2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.22.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c2a3b88340570718ef6433733990894caa1ecf43379a09ebf88b6c20c31aa5f5
MD5 a963c9d6f2b32d1c06ccd98484d411a3
BLAKE2b-256 813466216a8f58ca9df752d820c95b0f547a91126974fd12cad55f1567379578

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.22.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 24906bbea5a1a734cdc3c4638a82871c48e7da250514ea0083e4e431a7ce0873
MD5 a32e344ca662975a0637f1727c4c8d5d
BLAKE2b-256 7db1b441887d2256ee7200fbc5cc2c7a27d661b1b812be8c8e478753f3cc4ca5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.22.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d14149a3dd7c61d8e1f590e106180893d53b9c258c17831aff481499cdd9866d
MD5 e1cc406199bed5dd22d7775d80636639
BLAKE2b-256 f50302bcff92d4c8f3bfec8a3bff2afa80d763251b1f21098b34b47e21a12b54

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.22.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 7ae59ca6279f2099f9a4028edb38fc58ac1f66bac6916ccdded672a9305007c7
MD5 e3adada6d611fa8d7f67e668c0da4145
BLAKE2b-256 7c184f09add7679f830d511b3d38b3892394494fd1454dee49a3e4ac7e147e4f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.22.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 252bc5aab61603639a441e0ac08274f168656472d4b44c53f9b54a884b060a0b
MD5 5987499f1cb5558242bfd95558db95b4
BLAKE2b-256 66e020008e2d4a47e27ee32a330f3116a6328489888b9be54895a38976d32de6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.22.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 2f06c32c8b5bfe422f981778ccc5e1c0074afe51a43034269fed0a3a305d7eb2
MD5 07fd79eeb8456289105ea37482015eb1
BLAKE2b-256 037606ba2d709f2dd9edd02f03d7479854980f9754865fd4f3ad63ce4ba3aac5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.22.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8a5b1c5b9d5c0421a8f44999e1b1e0f39be9a02b0bf2540b9423bcea8a4be9fc
MD5 d0367dca428f94a52c190320775f3aea
BLAKE2b-256 9bd5b23e7b938d6b6f293ecefc8b1aac57bb8d4a8bccf5c0d30fa56a32b7a698

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.22.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b126363d70efa020e2ffee5c4b385dc7e6d270c20cfdd82e6ef047f233054522
MD5 3dbb06de1f68f225b29ce44d73b99644
BLAKE2b-256 71654e24bd2daa7072712a192dc3dc5c67905a0a12592f6f95bb6265120c0f75

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.22.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5253e45abd85b634dfbbacb8990e9fea56fcd07613e19a68a96b14de03107be6
MD5 5e36393ee7e29de1a085e6489f695ea9
BLAKE2b-256 560ad50645aae9e0be04cd2adee66b8a734c684c899e0d8fd93c74420ec410a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.22.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8da9ae5b1c3bfde66f617d932bdcef7ab458ec5f1d754e2c3a2ad0e2993367ab
MD5 10c7dcf1724452ba0b73d29f6318818f
BLAKE2b-256 1bbe21d5d26ae604f50cae7b28d474917d5d742869acad8b1ed03c3f75b527ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.22.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.22.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.22.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 29222c247a34a80f85ae0fc7524b132d20223afb223d17b3c687c7070ed9ee1a
MD5 91735e6b65dbf428fa4ac19ab6dea439
BLAKE2b-256 562ed88d6bd1fa0dc77e1184b51b5d2ab267520a0e0313329f72e66d0e399aba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.22.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 6fbd92babc0359f3dbbecdedd38834ef71749eb5a8d653bb9c09b94478178580
MD5 8df7bc93084e9460c3de7cfbc1dff1b9
BLAKE2b-256 5b5e867aa11f9903bae6d12d6fb1d9874fbb6dfec02d28077b47471b5978cbad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.22.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7ea4b4bc594eb12c8f7b81d37b2f5b932709547a0ec776a0c5e12a2c016ef300
MD5 5adabcec2cf51ae10ed2d2ca4729fe40
BLAKE2b-256 53a280fcc05a8abef7e6c4904b91c4d6741beaa3f3dc5e52795bbd4e876c904f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.22.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 3fd3b863f24f41b58e57fadfdf8b6f7c2df844da9c15d791c8acd2e80f595a89
MD5 a84c82778adf294d1f421acf01f06bfb
BLAKE2b-256 e5cc6e0fc4bf647122fa038fb30829ee9dcd78a7a1a901f29b0e98e7a96c43cc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.22.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 55b8b97283a5c4d836ed7358bea6f9cf79bea5911ceec6cd98e52a7e3d9d42af
MD5 118a73e9bd27f062e19ea976d2b73632
BLAKE2b-256 584fa0c1e283c0d1f91bd5181f8138c7eef562d1fa9d222ca684afd42932d045

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.22.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9ab57beaddb7dc118972bc6bfea874b954882330ddbc290f041657a330d185a5
MD5 b03948bc49a543f870e840b0aa87c186
BLAKE2b-256 a3a8090978807bf87313c0401a22c3a77f58b6c41eefb961898d233cf5963b02

See more details on using hashes here.

Provenance

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