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.12.0.tar.gz (179.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.12.0-cp314-cp314t-win_amd64.whl (605.7 kB view details)

Uploaded CPython 3.14tWindows x86-64

aioesphomeapi-44.12.0-cp314-cp314t-win32.whl (532.4 kB view details)

Uploaded CPython 3.14tWindows x86

aioesphomeapi-44.12.0-cp314-cp314t-musllinux_1_2_x86_64.whl (654.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

aioesphomeapi-44.12.0-cp314-cp314t-musllinux_1_2_i686.whl (673.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

aioesphomeapi-44.12.0-cp314-cp314t-musllinux_1_2_armv7l.whl (603.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.12.0-cp314-cp314t-musllinux_1_2_aarch64.whl (643.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

aioesphomeapi-44.12.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (646.4 kB view details)

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

aioesphomeapi-44.12.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (586.4 kB view details)

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

aioesphomeapi-44.12.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (636.0 kB view details)

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

aioesphomeapi-44.12.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (661.3 kB view details)

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

aioesphomeapi-44.12.0-cp314-cp314t-macosx_11_0_arm64.whl (567.4 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

aioesphomeapi-44.12.0-cp314-cp314t-macosx_10_15_x86_64.whl (572.6 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

aioesphomeapi-44.12.0-cp314-cp314-win_amd64.whl (516.1 kB view details)

Uploaded CPython 3.14Windows x86-64

aioesphomeapi-44.12.0-cp314-cp314-win32.whl (460.0 kB view details)

Uploaded CPython 3.14Windows x86

aioesphomeapi-44.12.0-cp314-cp314-musllinux_1_2_x86_64.whl (640.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

aioesphomeapi-44.12.0-cp314-cp314-musllinux_1_2_i686.whl (663.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

aioesphomeapi-44.12.0-cp314-cp314-musllinux_1_2_armv7l.whl (586.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.12.0-cp314-cp314-musllinux_1_2_aarch64.whl (620.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

aioesphomeapi-44.12.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (633.8 kB view details)

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

aioesphomeapi-44.12.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (581.8 kB view details)

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

aioesphomeapi-44.12.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (614.7 kB view details)

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

aioesphomeapi-44.12.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (654.4 kB view details)

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

aioesphomeapi-44.12.0-cp314-cp314-macosx_11_0_arm64.whl (527.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

aioesphomeapi-44.12.0-cp314-cp314-macosx_10_15_x86_64.whl (539.4 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

aioesphomeapi-44.12.0-cp313-cp313t-win_amd64.whl (576.4 kB view details)

Uploaded CPython 3.13tWindows x86-64

aioesphomeapi-44.12.0-cp313-cp313t-win32.whl (512.7 kB view details)

Uploaded CPython 3.13tWindows x86

aioesphomeapi-44.12.0-cp313-cp313t-musllinux_1_2_x86_64.whl (652.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

aioesphomeapi-44.12.0-cp313-cp313t-musllinux_1_2_i686.whl (672.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

aioesphomeapi-44.12.0-cp313-cp313t-musllinux_1_2_armv7l.whl (601.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.12.0-cp313-cp313t-musllinux_1_2_aarch64.whl (641.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

aioesphomeapi-44.12.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (644.4 kB view details)

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

aioesphomeapi-44.12.0-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (584.9 kB view details)

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

aioesphomeapi-44.12.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (634.6 kB view details)

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

aioesphomeapi-44.12.0-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (660.6 kB view details)

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

aioesphomeapi-44.12.0-cp313-cp313t-macosx_11_0_arm64.whl (565.7 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

aioesphomeapi-44.12.0-cp313-cp313t-macosx_10_13_x86_64.whl (570.5 kB view details)

Uploaded CPython 3.13tmacOS 10.13+ x86-64

aioesphomeapi-44.12.0-cp313-cp313-win_amd64.whl (506.6 kB view details)

Uploaded CPython 3.13Windows x86-64

aioesphomeapi-44.12.0-cp313-cp313-win32.whl (451.4 kB view details)

Uploaded CPython 3.13Windows x86

aioesphomeapi-44.12.0-cp313-cp313-musllinux_1_2_x86_64.whl (636.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

aioesphomeapi-44.12.0-cp313-cp313-musllinux_1_2_i686.whl (662.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

aioesphomeapi-44.12.0-cp313-cp313-musllinux_1_2_armv7l.whl (592.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.12.0-cp313-cp313-musllinux_1_2_aarch64.whl (612.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aioesphomeapi-44.12.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (630.3 kB view details)

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

aioesphomeapi-44.12.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (587.2 kB view details)

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

aioesphomeapi-44.12.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (606.4 kB view details)

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

aioesphomeapi-44.12.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (652.7 kB view details)

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

aioesphomeapi-44.12.0-cp313-cp313-macosx_11_0_arm64.whl (523.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aioesphomeapi-44.12.0-cp313-cp313-macosx_10_13_x86_64.whl (536.6 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aioesphomeapi-44.12.0-cp312-cp312-win_amd64.whl (509.1 kB view details)

Uploaded CPython 3.12Windows x86-64

aioesphomeapi-44.12.0-cp312-cp312-win32.whl (452.3 kB view details)

Uploaded CPython 3.12Windows x86

aioesphomeapi-44.12.0-cp312-cp312-musllinux_1_2_x86_64.whl (642.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

aioesphomeapi-44.12.0-cp312-cp312-musllinux_1_2_i686.whl (666.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

aioesphomeapi-44.12.0-cp312-cp312-musllinux_1_2_armv7l.whl (597.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.12.0-cp312-cp312-musllinux_1_2_aarch64.whl (617.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aioesphomeapi-44.12.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (636.7 kB view details)

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

aioesphomeapi-44.12.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (593.4 kB view details)

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

aioesphomeapi-44.12.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (612.3 kB view details)

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

aioesphomeapi-44.12.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (658.9 kB view details)

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

aioesphomeapi-44.12.0-cp312-cp312-macosx_11_0_arm64.whl (527.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aioesphomeapi-44.12.0-cp312-cp312-macosx_10_13_x86_64.whl (542.4 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aioesphomeapi-44.12.0-cp311-cp311-win_amd64.whl (510.9 kB view details)

Uploaded CPython 3.11Windows x86-64

aioesphomeapi-44.12.0-cp311-cp311-win32.whl (461.1 kB view details)

Uploaded CPython 3.11Windows x86

aioesphomeapi-44.12.0-cp311-cp311-musllinux_1_2_x86_64.whl (655.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

aioesphomeapi-44.12.0-cp311-cp311-musllinux_1_2_i686.whl (686.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

aioesphomeapi-44.12.0-cp311-cp311-musllinux_1_2_armv7l.whl (604.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.12.0-cp311-cp311-musllinux_1_2_aarch64.whl (634.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aioesphomeapi-44.12.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (648.3 kB view details)

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

aioesphomeapi-44.12.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (602.2 kB view details)

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

aioesphomeapi-44.12.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (629.1 kB view details)

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

aioesphomeapi-44.12.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (676.8 kB view details)

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

aioesphomeapi-44.12.0-cp311-cp311-macosx_11_0_arm64.whl (527.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aioesphomeapi-44.12.0-cp311-cp311-macosx_10_9_x86_64.whl (541.3 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for aioesphomeapi-44.12.0.tar.gz
Algorithm Hash digest
SHA256 a6dab1c8b1b0b843843701c317e166f018a1bb5b64742e8e63d1ee5842f3c954
MD5 1c2d69dffc7e1a849c50606519109a8c
BLAKE2b-256 7b22a5dd7e5f3858252ee9fbe994b39520fd2e092eb7bfd459d4cfb3d5479655

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.12.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 be1d843b4c5b351da63217cda8efab1f09663f11f8890a252fdf533bb518bc04
MD5 b30af5dda34d6c8effbb558c6552e33f
BLAKE2b-256 0b060801df7d2083bfb4d3980207b7ecaad62f4cda918e2563227bcc658f2018

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.12.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 6de119b41ecee6ee3a9177e0bc6e47ac991e91fb46556bb9b78cc60e6b34aee6
MD5 9cdb301e7cd345af8f8267c22bb3ccfb
BLAKE2b-256 2b807d07218d05171f02d3fe3885e72484bae0f07b01c17c82be1b41d2a36eda

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.12.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 61a76395159c4ff57587dbed63b5501d1632e97394c25dcb0f85494aba31208a
MD5 ee535aa2479917c6d5452644e4e7105a
BLAKE2b-256 fa27c5146706876931d941f8a7a0d6cd9e08b751e1233a10458a9c364047f17c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.12.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a4b5dc5de57ef1afa4e95c30efffd6dbf77697d549d9532adb4c0470e4957019
MD5 73a94687a263c8877970c3cadf24f5f3
BLAKE2b-256 0f40acc7c9fe20e37d90dbff3f548aa89007eacfd868ce71205c77bfaaf856ef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.12.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b73f02b1e8263608bd63fd73c4a154b6374693df8fd9503446ebb33631cca98f
MD5 9ea5da254424fa2f7e7beb929e8ac8e8
BLAKE2b-256 44f54725695b573e09977365321f68222b55a8cdd551dbbc1c4dedb3f9890af5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.12.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0977d28cf8d6d8244e94f0819768d292150b2288545e92a0ac010a9fd85f46c1
MD5 54352fef720462eb726f5a3e83bdf635
BLAKE2b-256 f609ff9b7e48483aa8276241c535f8b4322f8968d2d59bc3ecf8c710516d1282

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.12.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.12.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.12.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8e0b3e1f68ee0c0d5b65447208ad441df9b829f55cfe3012ddc926aea197b1f2
MD5 18615c5a402dd1ceba26fd2aebacdc13
BLAKE2b-256 2ad72f485b2e91afbfa340bdc7589fc94f194b73e385a578246ae29f047fb2c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.12.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 eec341ea142881bbcadd8f71678e1077e60f693b47788a92fc78a1506840a7f9
MD5 ba0a3f52e314a525c67cfd4da0617b0e
BLAKE2b-256 ea8fcf343375caf9ef9d7821d6bef468eed92b7e3b41e39c6d719577a863ed83

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.12.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5299e60dadad2bde5a66af4481f9b780e0db2c45e084e5030b1ec62f07cefc40
MD5 1a25b3b0c220ed1645ff5b5ec5d1faa1
BLAKE2b-256 8f9039f010c7b2d3b11e9cc72a51f1cad17f3b59526ab4ba246b4f39a2909018

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.12.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 76ad3e127f3933a6d6ea858f7b820e61a126f4cf2431f0c834c9cf3ebf7d4fe1
MD5 12f633c3cf5f6b6c3b74865277a3de4e
BLAKE2b-256 5d2b90daf4a82af08c63ec009e208da0fe5800d708cbc033ee92295094207feb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.12.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3db893d8a51f52d93ba9fa6493e2b2e63fa9e414d98dd64d9ecce98f33bc8787
MD5 8562e0cf8be70f903860f05514c89eb8
BLAKE2b-256 e4f41146e2c4da77f73dd05a388ac5cc833df33b418dd86576ba9639f27a7a63

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.12.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 cd8780077aef895c5479c0b454371ededcd3f47e97e39c707c97f5c3c67ac3f3
MD5 8d10aaa148580e302def5ebf94b16e27
BLAKE2b-256 3c78d02eed6f5955f8e0f80dfb09426f03bc4a228bd92eaa64a3ac9953a284f6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.12.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 0cd6065b25ff05c166cc948c230878adba42071365ccfdd48d9eab80ccd6379d
MD5 6a527fb59635aac4f7a45968864285d3
BLAKE2b-256 8e2cce36ffb7d8fed482be45f462074b2b90558261ab1dc51b5f04c1d77b6358

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.12.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 fc2418f7f20be255fe557744d18a89ebedd1621225e2d954f0414f6bacd45f59
MD5 7b17422c33777f844c597bd9bfacb3b5
BLAKE2b-256 b680d4e19afd8269c2438b7b2c5d51079646c53894a7a19ebc371c6e34b5cc9e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.12.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c04153446e1ff124061a1ca1ae8f0aaac83d965bf5d3ee3114c1b5e5d2768bb6
MD5 11e72a5117014af4921b5c0adb269906
BLAKE2b-256 d4b43c8ffcc241194b82abcafae1a0f8a474c64129f59c9807034af4abf0c93c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.12.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 81f1248691283fb172ac0d29baeb48f47c46355352a6558e4539daa20644f3a7
MD5 9d53040ed45b88aa9d628f4985a211d1
BLAKE2b-256 60e6d665340ed6a89ce93b6c81c5419dac929006e64601fc3707dda9b85adaeb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.12.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d6b78ae461b874c852216decef8e3b342c34ff7ae1b279441c8e19d415600a65
MD5 21ec3329d18c1eb41d5c84997be2a412
BLAKE2b-256 6d7efde2ea6dc71eb1a69b918d1b9993d12afd46db542af59ddee5b269555c9c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.12.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 aab2179dcdfb96a577c2ffa224516478613e6f86c4b561b42ca3fd73fa6e1126
MD5 bfa6fe12b8c3a03880bdafa93772671f
BLAKE2b-256 3b9c5067153dd4dc20ae09a25347b04f9622bb3a870c0e7db8dbf2bda5118b98

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.12.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.12.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.12.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ea9fead20728144c362d0821dbcdf1b591c92bd145fed50e896000fdd1b41a83
MD5 da4aebab7496e8f2a1f282431192befe
BLAKE2b-256 051a6dc9b4bbf06da65a4b44e44df61aea8bcb348977456daba89e8d5bc479ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.12.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 23e9246f4fdcafc4a83b29dde88554cf43dfae4e725d9d6cb16c555039bb0784
MD5 681244efd80196becbef0456201babed
BLAKE2b-256 279ccebfb2272054dba20b4986c041ed31d4820754b117e6f126401c95aa2213

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.12.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8a00d1bc2a326a7b6e871daf616a5a7c60d5d8cf1b7aba6429642e09f20f6ec6
MD5 4aaff709905e7b5dc1d26b56fc7894ad
BLAKE2b-256 5b2e68a40558ac933396a6ee73c4bf6401ca7ad6c1f05610ad64e37ce2105b35

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.12.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 0f5671eae8fe04cd3b554c8901e85a5dd20708a9504e19e5afd66942ea038377
MD5 f27ee7c67c1a1772d925f552a2c5bc2b
BLAKE2b-256 dbf3c4f23e68e4654c0de59e3c657afa37bbe1f83da6e682959f889ab1bb1685

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.12.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eb0742d7b7c105e84a7d7d172d9c27334fdfc3ce340ab93d826773c03e778c9f
MD5 e62f3520ca8f6a7077fb4b5b0c238e8b
BLAKE2b-256 3c0ffdea4e9a75151fd4138352f7ca9ac74780bb8dcf9067caa5b45375208a10

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.12.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5224be3fcdae36f9e1a4d0e3373f40aa7878083a1786089e50608c75f3a7b7af
MD5 158278c35b28d58e93a92a13c2137a27
BLAKE2b-256 2663a45e81d3c82fdd323d61be88728e3e624bfdad5c08850b8f0ebdf1488e35

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.12.0-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 5113d8ba6c50e0ae1328fb097ab31742b18082604f86a4df0da53d608c08026b
MD5 dd4c0653479a59ead21456b5681b1eea
BLAKE2b-256 8202db34131ee816cb56eef8afa4cb2ec0670ebea6b07dad4c6bca652f786b2c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.12.0-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 daa31e247b42d9aa4d2fcf517ddd31f82911a39ed8e788b9265cdccf2f593e6c
MD5 40144caea89b2f95133c351b019a393a
BLAKE2b-256 aa29be59a2e82821f8feab0b8ea13fdf61319dfd0c5219739861dee0456e06bb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.12.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 22eff2e00d6c94634600f8e9c8e56326462a1e7079c85a39457a6df3d6790665
MD5 411c9e9f91ab6eea0c5f5b2d4e36f4fd
BLAKE2b-256 aa7415be5a5fbe2449cd7f15747ef695b816b44d014056dcc3b194dd454f161c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.12.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ac1e971d26b96c451c2df4dd7f09f0e22bcf77ae3df9e885b604859c9b1da762
MD5 40f9df7b32f1b4080c5a37b2db902439
BLAKE2b-256 5e3a6c947180ce445d010122c1a1ac0bdafe3f23ac58670e3cc8c65efd4d5360

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.12.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8c9ca816266de5b135783537c88ebc7bd3002095402407b937e68fc53e1caad8
MD5 01390a2bd4a5bb0dede4d8c5933292a5
BLAKE2b-256 286ca8ae999b7dba6c755fa7154d02c1b6c9c1a66e870126dba4665236718ade

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.12.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1345a3652cb3b297a7e4228d8387ad775d7e165043cb1999f230c6f8645fbd63
MD5 420b11e73f679a667f84726628f03870
BLAKE2b-256 5252eecc56c84f98ca59c30337bbd134666f274b403e34ad036e951852141e2b

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.12.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.12.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.12.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 97d80bcf3273bb1356095a1a8196d02a9c18ab75d951c17fef7d139d2a5a750a
MD5 78de9886fa6063a81668f883750b29ba
BLAKE2b-256 0d52b6ca38db49558eee02f9224138db043a8874ede08a493870ff843169b2ec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.12.0-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 2aa07341dc24ec023b9642d6abcca6977d00563d8a8f435f4cf50ca534b9d2e7
MD5 c23bc02e0b14b2a5bd8a317b56bf6276
BLAKE2b-256 dac464e87630f373f48a4b26e1f7cef9ebae9de1d5b95255c10a0aae22733964

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.12.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f3227b472adfeda0d9a9f6ecfd294e408d252fcdae334f50c9209900af988b68
MD5 cc25fb95eed22e6ec38ed4e634c912fb
BLAKE2b-256 267467794ed78ad692c3a4e9aa5fea54709113e90ea9fb670160570b7be69112

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.12.0-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 04c3efce19a09aebf93b16b3b2b56f796ba6c31feb1ea79155ad198e861c46eb
MD5 84b84e8cbb963d41007cedb67ddf5858
BLAKE2b-256 45d7bc7b2b6f0436681be1a26383280401f63c3b645b6e72e995b4de2bfc3e4b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.12.0-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ae519d58bcc365306b9c24eef8e1a261d9240a3af7f2fd015e83a07fc9dc05c1
MD5 a148b8b043988ef94c7a5686369a3fbb
BLAKE2b-256 3f8fc9a301d0efa26fa25775b30f576be2d1e3c515de3e82d8bb6f7b98f86d27

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.12.0-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 934905393a3051b1d7113e136269cb94f708c030bac7a3c707e29f17340ca19f
MD5 a53d7ae1f2686dc5a86420e59cfbd1dd
BLAKE2b-256 85a46c08c09abd7e18080a278ecc61cb948ea15c68050f0c2a00c5aa1e433145

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.12.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 1f1f323df7da19f963f658cf27bd516682adca31adacbebc6abd8bbf2c39ff26
MD5 7c97008d4ff8e92904a4fce1ec749ca7
BLAKE2b-256 8191c472d607e2d7a53ccd5eb2f3b6cb7bebea24a63c792008933c71ad812d44

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.12.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 bf640df7ee52ba295c4c63d90208c3b0c8a428a7b910e2a5e3215ba31669653a
MD5 be5970161ede4190084d3c8ab58842ac
BLAKE2b-256 14aab7163abd5566b6fe8d5b2c1114ea7d0cf1ddf4d87c7f7add39677b6f00ec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.12.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ebabf32a656840d77f732a54104ee46ebe6e1a782fb90fbe8a21a38d008dc210
MD5 f3e1a91e845c18f2689288caaeeedecc
BLAKE2b-256 8688265fc832e37a4ae0e5d43911751ea39bfeea40a63aaa8d442278679f120e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.12.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b52fbb1e9cc95810ba150634fded78239a4ddb40761a653fdaf88992466ed22e
MD5 8e45b8b8e22058ec906f73c2a97f2afa
BLAKE2b-256 c197cf14e0e0b4ceae91a70d756aca3f0ddada97438dd13f61acf5da7107eb52

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.12.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7cbc9a95c4d522ac1c2451480c1819c3abdc667961dbbb16bbdfd442c02bb676
MD5 f2b4a6b0dc9b413464ddbea21fc2c958
BLAKE2b-256 06eebad2c41f9d750b6de4bee2b8f4bced411f397aa9325e8928642395ca2af6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.12.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 83bc16a99c852e9bf421cdc3c48cec477992df398cda999072002861089f3e72
MD5 8477709853cd8aec8f7bc35b78bccc2f
BLAKE2b-256 c5b5e5d637a79a0cb28637d7670c24e235e029575ecf9be2557753ffa6a377ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.12.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.12.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.12.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2e298e0ac30496c91f586b93f8b483471977dfe88fc03180adba68ab4e93b453
MD5 180b0a6540b7cdd96514b1ba396fb95c
BLAKE2b-256 1807296af4ed959e74fb65dbcb61d43ffbab40994a754f68cf7260f4ba350bb1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.12.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 dc1507d7db5075a5b425fb5910585446f07576a1aeff9dfa1aff92d81fa2d6b3
MD5 56a21632e261cc8e18b37116b097b965
BLAKE2b-256 524b267a75cb046f8c66821882935c3aa56e1bdaf497aca226287e285de45fad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.12.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 61ecc7620d86f9c0ea86a9516f3a9785687d8f33e558990447fd61dd2130ad21
MD5 db8098ae9eedab30514a80c1cd47fe96
BLAKE2b-256 b7b7c941cc7814e4a3384f252f0ffdeb6b06786f4641e5572052a7bf4cae5ab5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.12.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 93aab18050c82d4f7fd13ca5f4a6444301ed75dd6267904cb21d0299dc27c5aa
MD5 72308e8b0325b5812b7221d67e9d0bd1
BLAKE2b-256 a218c98bd1c96e01910249f77029504b541dba42ce3a05c89b47b7d385d02f34

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.12.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 41bfe57d45623ef862c8a53d9cd4b04a832c84d769f6e16ca5b0955d17aca23e
MD5 c447c37a5687cd7b0abca13eee274b79
BLAKE2b-256 08aa58c0c5b22e2b5174ae62b836ac7183c167996959c70d0453dad543c29bc8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.12.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 15a38e9db689a60a8057e949cf337d424a4ec9582763c809f0eab4e522919330
MD5 2f7f85afb004c8a1b5f70fb42996e30f
BLAKE2b-256 46f0124db634ba0c6cc9f105cdba834601ce718bcd2f51066f5d6047da7b5297

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.12.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f0a79d5f9353a92afeacb4c5565dbb83fab44c7306b9d7a940d7d93bbfd438ed
MD5 6a0ca66f397c76ed2245cf25537568d8
BLAKE2b-256 632691ed00d9eef7102ce0908663ccaed234e9f073674f36306101162b83e4a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.12.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 714df15ca25e766cb2ae8d9f1e069fbc95d6f887e0941b07dcc050066f400eec
MD5 ad5542d5394114d990801a7b5a5070e2
BLAKE2b-256 134d18b1e4ee9f227ae9f94017c10a5fd6275213b5c014412dd822b9279307f4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.12.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 484d764400dd1de246017627080d230f4c7f2aaf6bacef31afda4e5ad8d59b0c
MD5 eddb927bd1ad43f80f2f55b3c7018986
BLAKE2b-256 73cc8a7ce956aecbd38fb52681543102a4d6702b3a6be409b07bd84268052120

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.12.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1a10a868c7ee5a7620fa3de6647f9236f8ed0f405ddbf1df591d0b93d1e6ff8b
MD5 63317f222a15dd8db1a1251987276547
BLAKE2b-256 f1dbbb3aa4207f15cb8d36030ea0cc75a9d48d7e04d5b8b3c59d627a990d960e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.12.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 200173e9281afb91e3349829fb6b7a083ac024c69da179b760a28b839a4bebae
MD5 1906a696d2aecd70c9dd21b815d2dcfc
BLAKE2b-256 3ba6ff48059203f386422a936e28a0383d90e84d828c2908246cfbc33467004f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.12.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 88cfdcd83879446e1588268784443033249569e7f59be1bc65a21c1c8e1cd4b9
MD5 2e53999c9dda2b4e24601b7fd1955d2b
BLAKE2b-256 b20c5d2c1d92a9d702e263f0e3756c44d6d358ea2394f27c9f683cedd1ecf7fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.12.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.12.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.12.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2aa57f8881d5d023c84eeb84e9eb5fd609c1cc53ccbdcccbbaf3146fa55ff627
MD5 17b55e4e781b3a15f0bfda5c1e2652d1
BLAKE2b-256 75c14186f4ca432883e95f28287313c78229d0d25f47fe9d2f7bc8c5df1496f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.12.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 001f1b743f598cc1e4f5c7a31e3c82ba382257e1c011a58bbb6989a0ac1092a4
MD5 c7399230caf85dd052b3c3d23469ddb5
BLAKE2b-256 cf12be832f3c1cf58d12f83bc529d1b5fc78f62897d771a0a72cc539d873c5cf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.12.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 39f13ed26a9f4388342d0f57699f6e477d65e13ac869353fbcf963c6d94fd48d
MD5 c464869ee0259e84b7c6656d0fac21b9
BLAKE2b-256 2930445b161487f4a78dbb282e4795565536d965fc7c58184b4399a89bc83bc0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.12.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 52823ce9cab4443d3906fa6832048f854cf9d1c1d2e971d98042e41e1a6f380f
MD5 7c304b63e6cc61ce0a8a6c7cb1bed99c
BLAKE2b-256 76c568ac41f49ef76cd2e0605fd82ff8c41477a48aa0ef1a08aca020f3ef84b1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.12.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e391e704a0a420bbd5ebc403f6b36428b7591cb55d85f116142113fd0d80261d
MD5 f97256989cdc7b1a198d8e9bd35d5f25
BLAKE2b-256 8d9d204fe55f4ed4c88600324e798c238f1e6d69085545f0af2dc08e8fa041de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.12.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 0300c7e13f0a6a0840ccd3c7fa4bf13ada141a59c3bcae8e09d4d5886e212105
MD5 a4559f0dbdfde26a1d730464df79e1fc
BLAKE2b-256 cdb2814de817d9d58a684772aaf2bf6fad3b854f0ae4c6206394ae357d6b251c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.12.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 262f9976153c5e0a8a080858a7db078e98de782c3535c72396566ea219c885e8
MD5 d780c0f608364365e7a914530bf17e31
BLAKE2b-256 f7b1cdc0cfb58129f3064cff3488dd690d95c7abae19576635bac2f596d96a91

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.12.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 1749a3255e5b9e8de9dd483079c8ebdcb48dfd9e1080d2bac79b8ccf1ae803a4
MD5 e2a26129b1dd33694c364793af05e5ca
BLAKE2b-256 4cde37efd43dde0aed22a5d62e0c00cc81c66668aebb9160b7841d6a37cac8a4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.12.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 14ce290ed7ce2f73e1f402f4e7f9b0ccaa75f7c52e479fbe1a86e4e605536e36
MD5 e9b85abd0e6432e9061b6c2ed0e33ce9
BLAKE2b-256 4046a1a4997b71b6663bbce403043f410aa0e59f84d442c63590d6854a3e70d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.12.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0e5e872dbc51d119e051fb9a228970b3988a015f1f8d891a5990656f71adab2a
MD5 84a4798b168ccbabf76309a2afcbc5c5
BLAKE2b-256 4b007006ab0afb62019a74a0192753f2f641e1ca18f7e5b555e517bb7e264e86

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.12.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bc9de489045a51b40526a4e8f4aacd8a51af177226cd7a58a8e0419170530cae
MD5 00afdc31020ff0bd06e02c847be9b5b3
BLAKE2b-256 6003b89f423e0de5ea8d4b5a9992a1cf28665d524b8d5dbdda3045c4c6652a7d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.12.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 672e24acf9d8c1b3792bf064c22c04bcdea68ad0f563e7d5fc8c708ee9178430
MD5 12047d18c20997c6d195fe519dc6b0f7
BLAKE2b-256 9ed5e67d0c48e658133645719d2ebbd7378fbee60108c40b67a3863f3604e588

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.12.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.12.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.12.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9917a05b12ca0edc7f245e85220f08e6e41ae9c916f2f805594729c256af31f0
MD5 4089969957f6bdeaf20c414f3705cd7e
BLAKE2b-256 a1a3bac53ead47ec4eabd68b3f0b157066961b3c772416412087bb304d3d03bf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.12.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 b37c7cd3f38f4027a6dac672efce3fb6d4cd360a341894c6be988d89c0837a7c
MD5 cc4debeb65a9eb0bc47e276130e032d3
BLAKE2b-256 41f45b9fa25fbc31bd2fc90430f4d9ae4dec6c0fac60a892bdbacfa306c59b61

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.12.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c036d57aeeb0f6220720ac0d591895c50fae17b29222ecdbe4852285ba2db376
MD5 416b70e90415f872116c89e858f6e79d
BLAKE2b-256 e8ada2b0e74ae9c9a74178e171a76ff7a45a73e23b2f4219aecd05ceb009c8ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.12.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 354b61c515d3f951ac12ef4812b2c0a6ef16349b7ec758145b5833fae320161b
MD5 e7ab6c6aefe2b04d803e91ce73184a54
BLAKE2b-256 f9ffb0e3229f9ba3eeca938bc75e90b423b0125c1755293d29e9a64efc5357b0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.12.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0fa3adee9fc19cf66bae55dd9ebb16cce55c07fa3e61bdc866fc261072787538
MD5 c71ea8341a8f8cd47b74ba42aa5f8cc9
BLAKE2b-256 9d4d6fd926ce4d7da69d65f4e95bf6cedc2e40e7213c6e24ae54e6c82a5f6fd3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.12.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d50ea2a26e22acab7fafaca21f9135d38895e2323469aad880432f7de7efe513
MD5 1c8acdd3ba50a4597df25042e72dd0ec
BLAKE2b-256 3ce8a5a00416c8683d7d28981594b31b8853550a8d785bd8a7902bec1c53fefa

See more details on using hashes here.

Provenance

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