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.13.2.tar.gz (183.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.13.2-cp314-cp314t-win_amd64.whl (608.4 kB view details)

Uploaded CPython 3.14tWindows x86-64

aioesphomeapi-44.13.2-cp314-cp314t-win32.whl (534.8 kB view details)

Uploaded CPython 3.14tWindows x86

aioesphomeapi-44.13.2-cp314-cp314t-musllinux_1_2_x86_64.whl (657.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

aioesphomeapi-44.13.2-cp314-cp314t-musllinux_1_2_i686.whl (675.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

aioesphomeapi-44.13.2-cp314-cp314t-musllinux_1_2_armv7l.whl (605.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.13.2-cp314-cp314t-musllinux_1_2_aarch64.whl (645.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

aioesphomeapi-44.13.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (649.0 kB view details)

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

aioesphomeapi-44.13.2-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (589.3 kB view details)

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

aioesphomeapi-44.13.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (638.1 kB view details)

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

aioesphomeapi-44.13.2-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (664.7 kB view details)

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

aioesphomeapi-44.13.2-cp314-cp314t-macosx_11_0_arm64.whl (570.2 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

aioesphomeapi-44.13.2-cp314-cp314t-macosx_10_15_x86_64.whl (574.9 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

aioesphomeapi-44.13.2-cp314-cp314-win_amd64.whl (518.6 kB view details)

Uploaded CPython 3.14Windows x86-64

aioesphomeapi-44.13.2-cp314-cp314-win32.whl (462.0 kB view details)

Uploaded CPython 3.14Windows x86

aioesphomeapi-44.13.2-cp314-cp314-musllinux_1_2_x86_64.whl (642.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

aioesphomeapi-44.13.2-cp314-cp314-musllinux_1_2_i686.whl (666.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

aioesphomeapi-44.13.2-cp314-cp314-musllinux_1_2_armv7l.whl (589.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.13.2-cp314-cp314-musllinux_1_2_aarch64.whl (622.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

aioesphomeapi-44.13.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (636.1 kB view details)

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

aioesphomeapi-44.13.2-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (584.4 kB view details)

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

aioesphomeapi-44.13.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (616.4 kB view details)

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

aioesphomeapi-44.13.2-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (657.5 kB view details)

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

aioesphomeapi-44.13.2-cp314-cp314-macosx_11_0_arm64.whl (529.9 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

aioesphomeapi-44.13.2-cp314-cp314-macosx_10_15_x86_64.whl (542.1 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

aioesphomeapi-44.13.2-cp313-cp313t-win_amd64.whl (577.2 kB view details)

Uploaded CPython 3.13tWindows x86-64

aioesphomeapi-44.13.2-cp313-cp313t-win32.whl (513.8 kB view details)

Uploaded CPython 3.13tWindows x86

aioesphomeapi-44.13.2-cp313-cp313t-musllinux_1_2_x86_64.whl (655.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

aioesphomeapi-44.13.2-cp313-cp313t-musllinux_1_2_i686.whl (674.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

aioesphomeapi-44.13.2-cp313-cp313t-musllinux_1_2_armv7l.whl (604.3 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.13.2-cp313-cp313t-musllinux_1_2_aarch64.whl (644.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

aioesphomeapi-44.13.2-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (647.1 kB view details)

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

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

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

aioesphomeapi-44.13.2-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (636.8 kB view details)

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

aioesphomeapi-44.13.2-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (662.2 kB view details)

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

aioesphomeapi-44.13.2-cp313-cp313t-macosx_11_0_arm64.whl (568.4 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

aioesphomeapi-44.13.2-cp313-cp313t-macosx_10_13_x86_64.whl (573.1 kB view details)

Uploaded CPython 3.13tmacOS 10.13+ x86-64

aioesphomeapi-44.13.2-cp313-cp313-win_amd64.whl (509.1 kB view details)

Uploaded CPython 3.13Windows x86-64

aioesphomeapi-44.13.2-cp313-cp313-win32.whl (453.4 kB view details)

Uploaded CPython 3.13Windows x86

aioesphomeapi-44.13.2-cp313-cp313-musllinux_1_2_x86_64.whl (639.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

aioesphomeapi-44.13.2-cp313-cp313-musllinux_1_2_i686.whl (665.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

aioesphomeapi-44.13.2-cp313-cp313-musllinux_1_2_armv7l.whl (595.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.13.2-cp313-cp313-musllinux_1_2_aarch64.whl (614.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aioesphomeapi-44.13.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (633.0 kB view details)

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

aioesphomeapi-44.13.2-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (590.3 kB view details)

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

aioesphomeapi-44.13.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (608.6 kB view details)

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

aioesphomeapi-44.13.2-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (655.8 kB view details)

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

aioesphomeapi-44.13.2-cp313-cp313-macosx_11_0_arm64.whl (525.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aioesphomeapi-44.13.2-cp313-cp313-macosx_10_13_x86_64.whl (539.2 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aioesphomeapi-44.13.2-cp312-cp312-win_amd64.whl (511.7 kB view details)

Uploaded CPython 3.12Windows x86-64

aioesphomeapi-44.13.2-cp312-cp312-win32.whl (454.3 kB view details)

Uploaded CPython 3.12Windows x86

aioesphomeapi-44.13.2-cp312-cp312-musllinux_1_2_x86_64.whl (644.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

aioesphomeapi-44.13.2-cp312-cp312-musllinux_1_2_i686.whl (669.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

aioesphomeapi-44.13.2-cp312-cp312-musllinux_1_2_armv7l.whl (599.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.13.2-cp312-cp312-musllinux_1_2_aarch64.whl (619.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aioesphomeapi-44.13.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (638.8 kB view details)

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

aioesphomeapi-44.13.2-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (595.9 kB view details)

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

aioesphomeapi-44.13.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (614.2 kB view details)

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

aioesphomeapi-44.13.2-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (662.1 kB view details)

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

aioesphomeapi-44.13.2-cp312-cp312-macosx_11_0_arm64.whl (529.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aioesphomeapi-44.13.2-cp312-cp312-macosx_10_13_x86_64.whl (545.1 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aioesphomeapi-44.13.2-cp311-cp311-win_amd64.whl (513.0 kB view details)

Uploaded CPython 3.11Windows x86-64

aioesphomeapi-44.13.2-cp311-cp311-win32.whl (462.9 kB view details)

Uploaded CPython 3.11Windows x86

aioesphomeapi-44.13.2-cp311-cp311-musllinux_1_2_x86_64.whl (658.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

aioesphomeapi-44.13.2-cp311-cp311-musllinux_1_2_i686.whl (690.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

aioesphomeapi-44.13.2-cp311-cp311-musllinux_1_2_armv7l.whl (606.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.13.2-cp311-cp311-musllinux_1_2_aarch64.whl (637.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aioesphomeapi-44.13.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (651.0 kB view details)

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

aioesphomeapi-44.13.2-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (605.2 kB view details)

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

aioesphomeapi-44.13.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (631.6 kB view details)

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

aioesphomeapi-44.13.2-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (679.6 kB view details)

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

aioesphomeapi-44.13.2-cp311-cp311-macosx_11_0_arm64.whl (530.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aioesphomeapi-44.13.2-cp311-cp311-macosx_10_9_x86_64.whl (543.8 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: aioesphomeapi-44.13.2.tar.gz
  • Upload date:
  • Size: 183.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.13.2.tar.gz
Algorithm Hash digest
SHA256 024534efaa7793f0f44c867e6acc364f574beaecbe1f2a54424e72099a7cee6e
MD5 4f90acda6bd8e5551742f8e8a43c14d9
BLAKE2b-256 6e9185c3e22abbfa3a88bf13cd321269e70d18837069b4950f0e7b9c28115568

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 addf63f450f6acc88bca5dc7f9ec56ae89e6a275d69e3a71edfde6a7b484d562
MD5 9b453ed5ac94c7dc64e7cfac0c95fd64
BLAKE2b-256 e7daeab535fdc6c64765b2d14fcd401d415b3c065da156fd86e4a0f89f8e3cd3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.2-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 252f7a2edc8ae01c0d98fa18241fd7615bb8b2193b5d49c94d2a4b67b29550da
MD5 b852d0151c564fd02fe7c2b9d594c7a2
BLAKE2b-256 88c8d2f67250c5788322ea52304cf37ef5fabbdb49af2f37aa25a6112a250f1f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 671d06f60b767a65e7484ea84ed7e5e043939a63548a371151971fd169ca1494
MD5 1bb2a0cc6c0be0dcbedb8ecaf8009a3c
BLAKE2b-256 a64ff02ce6b809bce26a15c7d4a2d96951ad44a2dbc807f029c9d0472c7ae7d0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.2-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2df5eea27552fe59206c85945b39be14b7b70f0464d5de71e4803a7ebffdda13
MD5 9f0fa5d961b3fbf449bbc3524aaf01fd
BLAKE2b-256 0a9773fbbae7ddb52673e5655ec03461c344dc409760f265b9ccf0bc6ae9aa3b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.2-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 37b720503efcb59a7ba143f76d242ac8c2f642bcf175eabb3c391a4e84519b1b
MD5 947402bacb24290cd50be3c262384421
BLAKE2b-256 8092cd71024fc043ae0706e5e2b3a2178d0caf36dba71e7e4842c615f582eea0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 361a30f63bb1b619086ac701222d80e94ab2545ad82e195fc16a8239dd51cca3
MD5 a35f89a3f3c72decc0bea651b1c8a65b
BLAKE2b-256 3aea9c17c8ab5636f0ff2981ea765d8c95fc25f968d063697e45febf5cec7b3b

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.13.2-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.13.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.13.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 30865abd8a6ae81d6b27d56c9af6d7fe7352b55d56dfcb610d7c7289630902ef
MD5 34e1a8b7143300996f3e38dc37b527dd
BLAKE2b-256 d1ebbea4438cf4761ea11f7fcc204961d5a038716d7f08663c001b6760927287

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.2-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 077b9f6e7958c5ecc508a2243f86da108057c71b7c3a4a386b70b9586f782e9a
MD5 ad1e5a0d10263cf09ac78b609490ac96
BLAKE2b-256 ba8533de538fec15748112b4f9e393cf8e22cd3b264de3591c80d098b9fc9e73

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d641b867faab1fc8b4c1e8794607cc023fa9680d219c5a25e9731da92464170e
MD5 7345aa7a375aaa4b54e0a15eaef201a6
BLAKE2b-256 74c62e314106cd45a5586409264631fba727402defe8bf460fb3c6dbd940320c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.2-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 dcf31da1727ad978a34187bbbffd3c2f331d7815a84f439776f51e8131756f61
MD5 816afcf04ae33953198eb22017294f5c
BLAKE2b-256 baab65f6cda9941fbcfd71028d6bd26e45239185c169359c191833b116f55812

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8d92cf06fc38188a94127fe8f5d1a80e1de42b2cf033bc9b0ca369b1886fcba3
MD5 4b7d53c358b2cea1d2b05e50e4b45c30
BLAKE2b-256 bd64366e0a3df865d431021400b98f710f5e859f5bd0b431f6f57a29b2c15e63

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.2-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 c820f626b77e0207fc1b8585af2c8fc30c1672e54ec66e3d7b1f0bdb3044471c
MD5 cf952dace63de98f1886e1a90beb7e34
BLAKE2b-256 fe039f48bf5da172e43d91df85d13f11d05f5fb64e110b6e60784899c2f4ee6e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 273649e4fe91154830fdb41f9ba276bada569d5d4f47480b489fa51418a6c6b1
MD5 0f5541433351c34eefa83de27bed4f72
BLAKE2b-256 84e4ba10933cf9239e49090faa216ca6e7b4a0d13343f700ace80ff364d7ac6c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 726c7712f8655de975f73a83c7030c7e673dd5ae9987ab61da9df5d977f387b5
MD5 7ace2961cf2c051dcbb3e6fbd0df37e0
BLAKE2b-256 81808c7cad320427e46009db07bd8e72296df8bb0d495d7ca811ce8fc9209cc8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 26dbe23c4c2c00581103faab457dd1fd5de1c51a4be2984a50c5a3115ea5f9b2
MD5 7800c8f49b47cc0f689a49a96ab234d4
BLAKE2b-256 d6219328f8fe1862aabe78ebf1e2da265acd467399402901362c5c56a2011a04

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.2-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2226e3aa4bce55b0e554bb80c93ea920cd859afd66b7cf4c778f8a61929cdb58
MD5 f0afffeaf9959cf6de6ed6f8a5aa6d68
BLAKE2b-256 5a3ce70a576d58172074f63fec95d93047127975034c452447ed50f207ba3642

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.2-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 46a68c0ae3267860b611448bd3b176cf049ea81886e371e1b90125a989ffc857
MD5 59cc5a304af8a7064d78ccff5024be7e
BLAKE2b-256 1ec19b89ad0f2060ddc5d1f7a01106382a83f92a246bd73127843018dd2cb344

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9309c9852b46b1b56a6f191caf09de92f97cdf276c2d73cf628462814687a050
MD5 00ba5f38f4a8052a663fca7086bbefd4
BLAKE2b-256 bddbd207e9c8de5ad40e11ad689b2700bda26b742b898ae862ba81d1d129b7fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.13.2-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.13.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.13.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b775e80d96b5938cbb0e0186ebae341a44a5513bcf63b4d0a453b57b53e7f832
MD5 0d6dc3aff642f12a406470f0764fe71d
BLAKE2b-256 9db35756215724e914059f17db9f1a84936b6fb0045e382213b99d99d958e97a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.2-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 bf01aa726f08c90d1fb57aa3b11e3ba5f22771f9d8ca7ca4a29c0b886dd72123
MD5 ffd9a94fdd6ea4c18f2779ac135034a2
BLAKE2b-256 dd0f7147387c0321639983ef6d49eba900c431a649ba04631c865b5afd73a271

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b7a1de70da2223186e2453097ffb726680b7dc7fc46f9dd6d3fac1c0d6a95069
MD5 6794dfaed097d5497bcffc42abf58051
BLAKE2b-256 91e25b66b891890f7378f568e7d50957d1cd4a954dee703ad54f357d4320e893

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.2-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 bae14d20254c7cf3a6cfbf7b36f50b21653bd59bf6809ca28dccff6380e187ac
MD5 009396ba99b4e29415c1312efd01cc64
BLAKE2b-256 a591306120ec0ddc23a96c31d8e1cc0963005cd990354faf9234563cdf35a3f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ea75e98109e67924770ab489e6d731729232e41f3bf680131732da538aef6ebe
MD5 a225e2ac5b8ee908442bd1701d0d76a6
BLAKE2b-256 d025a86d9fc0e5559113acc02e47a2f342eb8eac003551ac7b672aa955edda16

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.2-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 3f543f9e6f9e73f54144e386142b8e6c2982d342c15f9f81983bf1b2a767ff64
MD5 a897546b79af19836ec63c2ff0759554
BLAKE2b-256 2a7ecd078b43a45552396f9e47bf657a9e8b510fd1f66aada327f48fa9e32b87

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.2-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 37917490750e81c6e8b6430a77bd5fd444360a46487f20f4d8124e205524ff5f
MD5 d6c7e10d9c263074e69aa4ba0800e837
BLAKE2b-256 0c8f20daf655fa57f02b1f11bda896e502c464a3dbac3d7c206bf42f71634269

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.2-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 50ace80627d8f0a0190b5652613875d0f84f65c02ffd882fcb1057e84810e1b4
MD5 563bf0e754e660dc4c9e274a7768f314
BLAKE2b-256 d6e95e1139f5a92700061fa77dfe46528e2871255d7884dda4a4ec9d25aa0b44

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.2-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8d7a4e90245464455eb6b2bbe8dd08c31bfc8d1d648cd426997ea9a0e87d06e0
MD5 07d77a49f3ad1f42b4baba554edd4d30
BLAKE2b-256 989cc297c307493c834733ec6d0d60712ac575261a14552c36c4b084eaa9ffe2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.2-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6bd44291b25325ea0069d1f195464becf62fd126b39af4b278c0e54657053463
MD5 6f7c693b175dbd725083bf053b00cc60
BLAKE2b-256 a081770925e6bfce9d5ecad97d3771a24ca4be148aba5e6396aaf27eadf96db5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.2-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c7629d6cd8622d1539e71f613facbb3b6bafbd217f4b566f49695ac31986e034
MD5 928604a5e652a8e19d3243994d291767
BLAKE2b-256 a1943efa7849d4a05db231b9652936e636bda5cfee7e21a45e3bc7374b7317a6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.2-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2f383e75b72182970b0e95ce1069f424ad67f51fd901160d79959e8300d2b102
MD5 aef39ffe1c7ef9adc6d67e827b3aef6d
BLAKE2b-256 cabfe271e3e017c1372b08c29cc65e99de62619801ff9a24c0cf6d3aaf8df250

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.13.2-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.13.2-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.13.2-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5a1ebee1754047b6b61dc3ceda4e20981e0dc559ff984c9b144df39f5cb99397
MD5 ebb3fd16550dfcdf42f5fa1c719bf6d4
BLAKE2b-256 ee60d86ea5eebf6d6514b8097a1426779febee587eb123ac9285b295053adc4c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.2-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 34f10f0ef243119cf3ba259b7070c38e69ad6c10eae6a3cfd3884890d3976390
MD5 61e53ac44bfaf8461573af44f0283a97
BLAKE2b-256 aecaf9ec1c027ce13fc1d6e2003a4714fa4631b7eaeb3bf3daf990a29ae92940

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.2-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e190b1a5a54aa300ad79baf6622e67f2a4bcb40662fc36340dff8988f4f17d9f
MD5 1b9a1ea7d9a1afe6d04f4296f0abb6a5
BLAKE2b-256 084e1cd2c431ccdbf6b9061b4e44f937ae7c53e0c848d0aa061a4979f50a7c25

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.2-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 e17b4dcf30d83d8dbdcb84a2e181793ada345e59dc34cdb468d4a73f85739aaf
MD5 6f94ff4f3357b146cba3500e69b179cb
BLAKE2b-256 0c03995b3a213ed6788551d5221e722a42001ab199a0e92963f5bbbb28206ff6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.2-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4e8581fd1a76205fc3cb712db694eb1d59baeba54842fc918d905a4e05613ada
MD5 5949965a1d29ee7d383ad8d8b7a4557e
BLAKE2b-256 e4f04957d9d9ae86840b6e4c96df16193b81846c6b6616822ffcd32c0796e09d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.2-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 5f1eb9126dc821671c354dd7718deda49eb71d52cbe3fc2379f8cca9894d6982
MD5 7b95f50be1248ef569ac2f55a01a242b
BLAKE2b-256 af05be3019bb8321a8e9c2ca145c1fac23dc188b05c98cacbc8529ef3f4e38a8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 fa47f1383383954b00376f8e6cc76f34c71933c673a8b575a3c65cf20fb1db41
MD5 1efad50ce49ae91396b0fd9d767138a6
BLAKE2b-256 c8228daea5561b820b768fca378ea0a7586aafa98c2ae4ea7bb4d5ce759780e1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 d6804ae7837d049001d21503e85b56048d63aaacb85d9da9d23d238bfa771ab0
MD5 534f409c07601cbd07e363eb68b324f9
BLAKE2b-256 13e9d5d0f401b8fbf6461c6027df93e9832dae7f1587fd1ef90947a0cb6e7277

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 86194a4f342b85c441467d33ad7de6a3f860b0616e559b83fb387c69077744f7
MD5 c59fbfa436e401a271b150b94a3b9471
BLAKE2b-256 2c66846224c382b4a3cf392380e87aa62ceb6e0ff9caaf9841fe6a0175c9ae7e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3044becff82d38119cac10c497165698461621113acd9fd8c84c7ac0af7e062e
MD5 f15de3eb4d3bd024df0ba5e41577abe9
BLAKE2b-256 43dbddcb067634997d98ee74fa52c8e3d96c84888638642de21445b6aced2644

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.2-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 baa9f3cfa3e3d4f6fd537ff7a66eaf1bc7ef284a8b0600a040d55dba523fd3b8
MD5 7c191974fa32eb115fc6a6da1901fc4a
BLAKE2b-256 887ecea382d58a1ba6a89d9c541477f5d461d12133a5eb464239a87be7074428

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f6fd50fa829d4cc2dbbfd92c7dfc08016aca35915ae2a0ac82278330244c58d7
MD5 b7f6074cdc6cbed5f55ba01b93eaf589
BLAKE2b-256 b21bf2f7bab31e4b0af5749e9dfa781df45939d7958f1381df4743c1b98a3d6c

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.13.2-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.13.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.13.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 34f89a8bd41302f81b68f76a0401b272e496500b43152b0944de195713a20084
MD5 99667fc614a9fe1bc9333ead23444a07
BLAKE2b-256 32a7264fd79063776686621bbd65328e871fc29a0e9251a725eb6c3628423d6a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.2-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 7b51b9cb83697ee19eca25ad06079064075174543eb54bce42be3153efdfc9af
MD5 3f0006274cc089881d7497f8ee462b4b
BLAKE2b-256 d7a5ee7064a43503202dfe8e16f82e78cf856af92baacbc352aabd19e1308055

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 487c6bfd3f9327f9e9a4402de20e6faf8b58a4488ca4870f4d7269bd56019349
MD5 b034746d970fee708bbaa65595d08c32
BLAKE2b-256 7233f02872b1538516e2ec4e042c962b436841a1f776fc9cf862318f2befa329

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.2-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 874e98e152b623926803d10305f8b6d81aae6f6898a06a50f8eae2422df23fe8
MD5 7b0d43cf555340dee43f2907d678ddcc
BLAKE2b-256 e9a040d2b71fdb7b9276f15ba8d347adcd3915c0b6c1e847f124c52a7deb4d7c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9d941aeb53d4f14131e578d9a0a4afee9a501ce93a94d2ce0c0fc3afa6202a81
MD5 7e75e2198e9984f9c52dab526c467869
BLAKE2b-256 ad78080c7d9e127e62e50f144dead5e65cc16114831940738b77b4366e3590bd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 4d39b626d961c645fe985fa1b2a4d2e8fadcbc6757b3dd0ebdda97736d340961
MD5 1a7cf3e0e6dd308a59a8069922eb15f4
BLAKE2b-256 f8805455b785acc380711e7cda8aa5e8078b5eb65a3ee23b1aab0ccb21fad0ea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 aae1ddf6d0e8b532842f5dbb808be6542136e588fc9de008118bf2042474ad54
MD5 ca190c55e3db741bf320120aa69e612f
BLAKE2b-256 abcfe386c2e4b095314e7f8bad4b8d284c0b589a9aff0e38608e341320a0f645

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 f886a5bc6979ad25d45075c63f7a5f06e24c3c65cac9549d95d61e72a639e027
MD5 823193888f924b0d33e3f835996cc121
BLAKE2b-256 8aeb350df1a103d9a3cf340299c64a9455795c0a638b4281c3b8309a35cee9ee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 74eb93bbdaf4adb490626242e188988425b2ce24628a2d9ec02eb202a1467eba
MD5 05da445106c680cd9d6623858250f036
BLAKE2b-256 dd5fb31bddc8449508ec0c001283270b921f3ab2ccd7b861df18e4511439af4d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ac8f30f5e8731c9ceac3b13a559ddeb670dd057f5e99ccb16e10465ca75d51cf
MD5 47b053dc9a1d0414761d643528a11aca
BLAKE2b-256 bc034e0270bf037558d78a756fcd294fdec23eefff04868c1dc85d6f17ec21a4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5b735df9339185b452921b3ab41a4adcaab383876d1ede56e0be2be6faf7a54b
MD5 b2082ae24c17076452b717951103bd73
BLAKE2b-256 7f0d866196be4a59e4a19770e06fa6b6a0a5c6686967c8b825b5a2adad8c3b54

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 112077938a64b7de1660a2334a6681f3b07645c79e0c4ca9ccf3b6db51b3606f
MD5 e737ecee188f425e467b2476a7b74d7a
BLAKE2b-256 54b16334a2e17bf52f2ed2d314612fde94eaf9d263c010a8d3125bb01a159053

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.13.2-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.13.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.13.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 091b64056f0b62cec2963e7a0dce645d22342d18c6fb8de203218461a6c689f8
MD5 d73e25eb99bd0f585c9f7b317e8a2305
BLAKE2b-256 b86ceba1df514ed5d33da95d9abea3625c573699eca4d209db51ef13ceee3f1f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.2-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 4561ed7903d75f8324c98066c3de1c11b673159020ec016927916965af9894af
MD5 9f06d14975f6a7222357bb183aadaefc
BLAKE2b-256 a709da0cc18bba17c2995b732ff951740534a5b914ef56e4017cefb70b388ab8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 667d2d0deebfd3503587cbe637659bbb85d4eea0ef7109e6678d36a60e7584b5
MD5 87dbc18495c98e12b2e5d442994b5c39
BLAKE2b-256 c4366f7bb9ff57d3c733a76228eb58c92c74c8654517fb671ccbb19a584bad87

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.2-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 cac77ac306ef154a7778bb938ec16176954f8f69ff245d51aafeba9f8e0b7d81
MD5 5c25e4b81b8f1f9a5346e54cd8a56229
BLAKE2b-256 1b39b25231cb6af5f2c13a8dc5acea71fb19e07924a197819e7d5962a5fdf031

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 86ff66270c713465213277455f04407df613b78c3288857adb35a99652a673b1
MD5 237ac9b27feea6560aa16fca25b71b0c
BLAKE2b-256 e0b23f4924e9c9309fbffb7f0f0ee28d3c230102b50b29cc566d109076c8b292

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 8974d998bb5bf3b87b3a9dd01e2148e51f8a9233d4139c834ceb404ac2736ecf
MD5 acabb87e2e60009ddbda80a3fba6b730
BLAKE2b-256 c8dfd26aa190921601be8ef273493c82f595d5f8d14dc5a99785e96e96cd4f1a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b4c94389d446bb49bcee0f6067fe45c316314c6526911a31490d35550438df1b
MD5 e244854a3f0db4d4da1baf8db3c87d28
BLAKE2b-256 b08ab1a1e2740e99dd3e2ce3b3b48cb0205b0946a8ef4b361b78a37c5367cb35

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 54d7e2f6a9316a5c2aca0da4f114e8f508528f402e6495ef2a4a3643713ad3af
MD5 e2a8fe94565c543f2fe773c09242ac79
BLAKE2b-256 259a45a2a4067676bf655146a5938a747c3cc2756b0157628138755ad82b8f78

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 24bd27ea7328acdf9fa2a0a734c5b55f475536110e9094cf067fd7daea569eb3
MD5 73153e5bfe536aa4d7cc847f968d7bb3
BLAKE2b-256 b2f80e43d806070ca907c5ffc08e80f36aef216440c0ac176d5ee95ee33a9d36

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 79f1ac9d3cad1e862349e98c08f9bb8f414052ebfd6f0a5fee8e97c8865b2e1f
MD5 3a52112a1ab75e6ffe6818063e4e8ea6
BLAKE2b-256 ee11d5a3be16dcfe269ead53dc9daec95fc17d9079d096ad8d7615dd2e466e59

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 42ff6ef6d716983405f955ce42ce2a2a4d3b39d5b35f329a6bde3d93699b100f
MD5 2d4309cb116cd2f9d667a3d70085342f
BLAKE2b-256 6a479ce780d906846eeee171c64b48a476465d0971fe8d49d354f1209d77d7a8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d7d86b7b92b010f21520718f5aabe7a2be75820e01241716dde61571f597b746
MD5 86d359c59c3321e785934c5a2962b6d6
BLAKE2b-256 138b49d877e8ebb311301d09ab0ea2897c9e4da2299d75abfaecf6a21dcccfea

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.13.2-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.13.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.13.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c0caf7cd8e3fe81473d0d88f47f53278a0807898165719016a667863b686bf8c
MD5 b52603e43a6fdc6e95ed93e0699baf3e
BLAKE2b-256 850b43709de30ebdc8521d7f8dd99a0f10eee7bd618c1b097c7de18ad7fad5df

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.2-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 8cf64097f2b4158e54b8863ffcc69a4e523665d052d8fd7e20c95faf4eed1a8f
MD5 be57180b2181e9da53d325989301b3e1
BLAKE2b-256 f2ce2747b5705df2a643dba5385c01509d7a4f9cc04a2f664765254cb4c33a2c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 72d8d83a3d9533a50249a76541976ee1a75fd7815e21887ea7d48d6dafd2bb1d
MD5 48b4f5ecf827093298bc1053a47b96c0
BLAKE2b-256 8c0fd25853a003b5110160eb3f0d7885447f03b81095067c75b428979993f496

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.2-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 47f07499f33127a9650bc58de873baae3cf3e68f613084136322791d35aea9e3
MD5 54ef6a67443987e3d141179f6c35cbb1
BLAKE2b-256 c25df34a2416f4e8e6ae8812489a4cfc8d961cbeaaad32c8af2468667dadabe8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 182dcb647aebff327a6f1e9fe78d566b7655a0a72f37899ef46acf84b20d8a52
MD5 0f0bd4e472cd5f314756bbb700f8fe01
BLAKE2b-256 af435afe4f47c3c100ceca403b0c1820d44e662613171f00d5150397201c2312

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9bd52668b44a2d7dc4aaf126d9a7a5a60f4e5337b46779b37e0f661aa96aaadc
MD5 2e3ed2add175d927d2cf65159b554df3
BLAKE2b-256 dbc6b2c4693937c1f4b6a8c9c85934ad35c56274561b33b75f5d7dc6e6cf56c8

See more details on using hashes here.

Provenance

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