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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

aioesphomeapi-44.24.0-cp314-cp314t-musllinux_1_2_i686.whl (679.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

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

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

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

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

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

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

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

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14tmacOS 10.15+ x86-64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

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

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

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

aioesphomeapi-44.24.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (620.1 kB view details)

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

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

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

aioesphomeapi-44.24.0-cp314-cp314-macosx_11_0_arm64.whl (533.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.15+ x86-64

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

Uploaded CPython 3.13tWindows x86-64

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

Uploaded CPython 3.13tWindows x86

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

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

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

aioesphomeapi-44.24.0-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (591.0 kB view details)

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

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

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

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

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

aioesphomeapi-44.24.0-cp313-cp313t-macosx_11_0_arm64.whl (572.2 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

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

Uploaded CPython 3.13tmacOS 10.13+ x86-64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

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

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

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

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

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

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

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

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

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

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

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

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

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

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

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

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aioesphomeapi-44.24.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (654.8 kB view details)

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

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

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

aioesphomeapi-44.24.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (635.6 kB view details)

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

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

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

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for aioesphomeapi-44.24.0.tar.gz
Algorithm Hash digest
SHA256 2f12bc4ac3f424c2922e44c30c829cc1835f1e133ea3bc045c6764691a4b5ffa
MD5 c33680ddc242dab0cddf85cd0c08ce29
BLAKE2b-256 4c393f5b21ee763637246682c3b37df97a517921d3e20611df664d9f3fb40555

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 c56797fd5603d62afee68f73d93dece722a44ce1b23dad1a30e82a737cc6b11d
MD5 4ea32db488af4795e32233eb1dee8dcf
BLAKE2b-256 6d5e9f7dbce87203dfb9ad442e53fc6791bae50b128441a44705fcc54b901c5d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 dcc5dcd354465774425b5dd7c4a5d92ff292ad54ecc67938fdfe28ce5ad4a4ed
MD5 29b1d895ca19695167206c274c951a00
BLAKE2b-256 46b7570b86392e02ab121e352e614e03eb11efed73ec7ea05f98772ef812c274

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 192b2d78c2ed76a389ddcdf95466549d51f82cfa514d3a8edc5cdfa123959d20
MD5 02512efe891bc8c3762a3934a369dc2c
BLAKE2b-256 b486cd7287ca7dfa42969b55987aa00f46f07d2949509fecc2dfe2d7a47c891d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 557187f3d4b65c17fec916b5c5e848dbf72e54b315c71c4390ce678df1fa7ed1
MD5 92122c65fd1f7645cd63f2eaea285a8a
BLAKE2b-256 395593eb2a8520987efe723d09696cd78909778e35385f86e59710209d9cf75e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0ea32205ce5a18a5ac24e8eaf7ab1055322a3cff14411e47e6c4c6cd88f731c2
MD5 dfe0e564637f4deeb1dce90eb9b6d008
BLAKE2b-256 01d0b7f276f7086931410fdd54936eb0aa94b8f13eefe3163f10e3c4eb17c989

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4c5f94213644852dcb7157c4a9dff22d96f89c7e114c2dd402942317a4c8b1f6
MD5 c87f6a4b15853bb32e963e8f8b433bb9
BLAKE2b-256 d77def463285ee12b93e5e0e8549aa6c9144a9c978eb363685ec7d364ec06c29

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.24.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.24.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.24.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1748afa1450d0c4e5f5b4508ee030694f2ef34b55591ca6f21302d5130de2e17
MD5 daa4d086a899024d469879cfd580c5c0
BLAKE2b-256 e8923b3b9dd92aabcab4dd69eb3f16b232a73ef60c6c5e49f15967d80dd8af75

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 efd62909335c194b61e2b952d0d358b716575308760997497c60ad74c982f458
MD5 b2a062bba28d8e35d8cabd9dcaaf6be3
BLAKE2b-256 cdf739f834ae62a8089df7d10336f725b9f891726316ec6e2f816072e0485c5e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 65676f7edd202e983a770a3ed120e5260814d263b668d0d9ad2d739078b3cb5b
MD5 3eef38ba535be04fe0c200d887b6eaea
BLAKE2b-256 bb20f8b26f50160d50c297447ef96e387c6eb76ab5a6a563136ff69c5af867fe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 8c04b825a584f6d65ac5f668e152afb1c273cbdc477f5f4b7beab15935cbd19d
MD5 e8d7a78d293cb964fad22f9af169b81f
BLAKE2b-256 0b663ff5c3bc1e1dc618fde3e39c9ec68d87ee0ae4a6aded73c648a8f4f1e6d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4fd6b2781e68685f7389298d964c1e7e7d6817c98f40fc117545882f231af2db
MD5 9a2e3211146fa42cdb0261e40cfcba3a
BLAKE2b-256 03af25a569313c5f6f01cccbba78d3578f81dd63863f02955f2f3d418e3184dd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 c2efae253584199e8bdf69271b8d60081df23a8c4fd409171947952d2a5180ea
MD5 0d548b631a5528652ad1a9b86dbf5c89
BLAKE2b-256 f8a855ae793611cc483490dd14d3034e8cacf564907257fd0f4c46e0b1ba353d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 ff05e23077445bbda04eec321448bd425459969f668e2fe3a81514a73046f9c9
MD5 4a32dd7c1b6863a270a4b7ad78c3d0b5
BLAKE2b-256 90adbf5fcf4902a13fb9a452ee92469021b836b82b2ad02ea8b3015c66c9424b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 15c6aca3af6a9de48dbe155d6f6bdbdc7a3d31bfa51be7ede157abdd55c5f936
MD5 97b17691cd41a4dcaa3820d9a3b6fafb
BLAKE2b-256 c82a3a52049929a38eb8bbadc42a919503e71cc7aada3eb45a73ce84a0f1e3f4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 decd1aadfb175d1d59a4705dd583ee0e966c119bed6bfcf270efe79f20a7b5b3
MD5 dad6a2e7c92142208ccbc9e788afec2a
BLAKE2b-256 3f20bfdf32724d3748a6c51f37c00028be8f9f230109091847705ab9ed6c2e7e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bd417b9111c935dc9e1aa61644728f6af9ab6124adc61a2130557444f80ecf3f
MD5 4f5992f19f0dd5bb10456ec57187139e
BLAKE2b-256 bdab1fd7ece2fc4209a9a10508000eec2374fa54b275bf607dec51f71ee1b4e9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c6bbe1c2c654ca15726fd7ffeb348b22ccc688d58157955b27515aaaa868be46
MD5 2a365c74bf6dc5de7b6dff97fc53f9a8
BLAKE2b-256 7fb09b29431c8f2eda7120d4bceea4d570f9a501a4b5cb2548ae3022b27f3994

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 003566e681557489d9d19259beae18eeac310ce09bc96eef1cb41c74b9c34b88
MD5 c6c7d325b5eb9423b8ee074170a5f915
BLAKE2b-256 b5172673201f5f10168763791315aaf94acaeb21d1001abc1e6e3a538b6d9ad8

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.24.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.24.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.24.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 27269eebedf228fffffc92ab07a1c9d4f0f5364826eb261a64a2cb71552a2e8c
MD5 0e4b6a0be002f25eacc7ae2efcc0a0ea
BLAKE2b-256 c0aac0375aa17eb375058d39f6d473ea1526e50d2c1af92976d14b529d7de566

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 e03a913d5d963d4bdc8d8f107865e7453a7472689ec0e9278d7ae37c038cf2bd
MD5 f75d66902ad8566392c4593df1e89665
BLAKE2b-256 3417d46eb07ac428dc30e63651a1a6c67d17d453526a77e7a63e40d36b0f5c0a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cc005f87fd7261e1731b42e509e0e1f157ec66c36ccfdba93c240265a5f202be
MD5 46a5a8604cbe073e099b89e223ba992c
BLAKE2b-256 1d734a2dbe937d05ac0c843b131f43d1ba46720f268ef4e1ce0ec7c89b391308

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 c6d07a6e6e15c425931e8570fac59339472a69b3c603a8a6d1857d4345e5a647
MD5 11ab19fb0ec614555b26ed6d0c2c7521
BLAKE2b-256 45fa545a31932bb42a76a0dc68bf1fb0d23ec4ecfba6b48179d75c1a218f4baa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c1297ea7b879f4a65f0e2858feb52d5d22954d1bc020f188cc8406ca699ad6cf
MD5 d103f890d80f60eed3c90e58ae97a8f3
BLAKE2b-256 ea914eb6549bd716a2fac722887f5d447f364af4de47d02d6e58bedb08dff339

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 3be64e515a6b8cfb9b7d9a25fd2b5a9da963e29fd73f2f225fb0a063760de773
MD5 e3cc36c99ad129fb251ec5d3de7b0b5b
BLAKE2b-256 065dcc7498a5719a601ca318cb16fafd6f274aa331949d21e8f91fde197aec62

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.0-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 5d63c9e3e463438e0041ab14fa2184be61ab244efe88d788dcf5912d404c32f1
MD5 a77402e88a69dc0ee9898d2cc299db7f
BLAKE2b-256 a426479dc2fc247d40633a003221f11587c603cf06ea61e1bd1b7921e1868a99

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.0-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 1b5f07e9ab4c0dc73e8237ff146dbbbfe9e98c6bbaf6f4fae5208ff8c9ac5797
MD5 7d4afd7b3f95118a0fd90e077a481269
BLAKE2b-256 a9cca923e4fcdb156bb1d71939f1fca9d80d8192ba4c64f1c77afadf5e76be2a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 14badbf25d1524b3084e0f5deed856e6d9a3a09b7164a0cf26962bd8ecd87d48
MD5 30898d22b34bba4cb8f83d797fa6dc71
BLAKE2b-256 393fb24ea391300373700912cab21bdfd64f48688119b2c0612fb8c6ed9d8ae5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e392696cb1b21e70316001d693b4a05d9f3ccebcd1f2dfe14fceae3c8a52a5fa
MD5 958e792f32b237eb94143fbeb302c465
BLAKE2b-256 e407fccbeb217cdc44718fe835ce8ab0365b84b2f173f67739855cb09cd9e5d1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7bb57f31c4512a339db6989917614b1a58ea9dc1729d36ef1f3063b0dfa58c29
MD5 296f5455c0d927eff2d53ab3f38ede2b
BLAKE2b-256 cc8868a64670f44e17a987457d9e73a9740d1feeb1513f3f747fc5aed0313792

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 881cb3ed3f2a70e262c16c278fc9d4657389a0ea21f188588b9811b939c2eef6
MD5 8048bf40238fe96dcca050b91176c532
BLAKE2b-256 ad11c841176a3999a90a0abafb5b8d11052fa9d53dfc6a0067ec110eb67e305c

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.24.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.24.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.24.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6845c7fb3d438d7977b4292fc77f14b9918c2b8afa0a29b1dc5a0f3d1f1bce33
MD5 d6fa657c747850cad2cd650d5d58aba9
BLAKE2b-256 9cf20a514c543e5426826da3f4cc27d1d54b628e65f64ebc5f5b5fedd07b8f6a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.0-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 8bf9569767ab1c90a0f7a8eac9df6a70875dc28b2df4707f79845dc601e493d1
MD5 4f64715401436de6a58bbcbecb6af482
BLAKE2b-256 af0f5624e71565be518a456025babb9a87d8590c646e99398669bef78bb20096

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f3e7b9ac587981f9a608a07885aac9fd0d809767f6f256f42efd02d3d5cfdc00
MD5 571af6fc9da1ef289cadc8d53cae3813
BLAKE2b-256 ebd895b5b56778b6f106b4a3fc221a6bd7a188e44d04f427b39e30936522b73f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.0-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 eae61d0a7cb6a4e8aeb416015f8183a56a27be46e9fcb44b356a988ff14cab2a
MD5 60bc528057ef54dc730633b7f4368ade
BLAKE2b-256 00efe25a7523172d9246e873c3edf403e0107287d288c3e389b7cc0d835007f3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.0-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6205a64586d661d4d6a2ac394ae4f7e392b7d7534313280a389f77f4a6b6388b
MD5 6c2dd86ad085c22bae625999c813a956
BLAKE2b-256 94362ee3bcbd890f3bdc667771ecb444d0dadeeadcae74bacefb70b415d4fed4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.0-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 7fd26dbd1581e7774f87d3db00bd5a9f1caa8662c047ea75cfdba002446f8a09
MD5 287b932b68f35b19a110363ddb0f8187
BLAKE2b-256 665288667e9ee4da4c94445ffa999f147e2d95100653162ba4a5973aaee7d1d0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 7d0f6f64c6dcaab87109777420184f19139305a730744623a586bb6ec3bc3d0b
MD5 9ddb37a7d2fe2452bd75f5692fdd2ba6
BLAKE2b-256 1446a9ed83b19ceabec2305a25432beb1a937f625b8fe59c161b954ab634994d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 10d0e1923c7a2102e3fe7a16ac3c446d5d1218a8acd21d08e9eb5495d7311021
MD5 21433fcdca1d5ba467311a36ec2a482d
BLAKE2b-256 8fcab6ced6543cb353e3337ad4a31f64c3a03c867b8aca1acc543ab997a7e5fe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 730cb13f68a7dd287f16d775932ab44e0126ed9cf8fc6a984df986ad40f052bd
MD5 f889b0cb02a1d685fc28ceec7321c085
BLAKE2b-256 af0a588f06fa2bb3c822a5acdc46d419303f0dcc06cf1eea373e0e17ce63a673

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1bf0a73fdd3bce61121651d8ac00152607ffec040355c7c1b2463abb3eddf600
MD5 203ac6e62656de4c6b423b73eb69fb99
BLAKE2b-256 6bc22b9ef41299eb379874e2a6067be4dfdb77a9de560475b7d8e2b055e2e407

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6dec6b3ab539743400b5942b3f846e9587b08ac6fbbd83266e841340b1831c71
MD5 5eb189ddc2d9b04c3cd84ff21139fc77
BLAKE2b-256 39ab3180001a416180f3434dc2cf0be1e7157b905b3168c5494b3d9d7e704f32

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a98eb9e075c9f1ded84bde52530ac42fe17e4b67d619928ae6fb24c23836bf81
MD5 d56544606e02e2d8d57271e190c1e9ad
BLAKE2b-256 c12bc0e301b27a468f82bd343d1cea2da43a56fb3a7e80a3f3b69f5834778b42

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.24.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.24.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.24.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d716233e306a9a27931762d571613e8dfcd371a216dfc7e1a46e531609c79e7f
MD5 3df93255c4b93bef05f53c80b96fcd92
BLAKE2b-256 931a9d08e68b0f07a85221afda51a7973094d66c632484829a12695a894ca837

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 d0b61e5a16b5bf600120d15dd2b01888ea94c969ee5f2dc016161fb70a08f8cc
MD5 3ac5d44c3fa535e433ff5b76df9bef07
BLAKE2b-256 b45211d1ade52b006d59a3f5a0e7c473b8cff3d4f2a095ec1906c8894c76d5c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ed1ab2eb4388b402ecbb8ed2ff2d95666615557602b7efb1feed7aa1d7ecce4f
MD5 1f8e740ff295e2493cf84f3f560c9584
BLAKE2b-256 9fbb82087b6d501fc8109b6934f45a31cf2421de16e7314a791c0fcf6ca57398

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 ac961adf4a3a091ead22cfcf5b4506364ab101c517be708d917a0436e6b6f9c6
MD5 c650922a6100679c8833d0aa1943d918
BLAKE2b-256 2522f6ce9ddb7a23153ab69d0dfd8c30953387d33ea929a0cb84cd68b89acb7e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fa4fd00e4aea5a5a505bdc4f49ec9a582fde9ae3f523915f61204f7c53eca404
MD5 0444ea8f9378d50ef16346678f8033ed
BLAKE2b-256 06b38f96590c0312e577ef5ec7f83bc7bed12d58910e20de87ccc33e861ce41f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 2b22fdb3ef4ee632df8a8a03f63954111f0c71792e3c8859a3eaad07a85b10f9
MD5 e16cf1a66d090e9aa292c71472e5dbe5
BLAKE2b-256 d580c2ffb9b8f13dea279a52cf202475af55fa75113b39d99cc69b7ac1b6ebf1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 fff0de0c8b024f62476c234da221b6eaac319c424e6e5116282be8d9d4f21881
MD5 a2654826ac428c0695ca9fcbdc0d0980
BLAKE2b-256 c77738e4af04a2ce200ffee9dcc0448a872634239a27901ea8a668e9b4faf0b2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 0e56c0cf27e2bf3fbb8d69520b689020045889b70e3b712c0454976d6027b84b
MD5 f6ad8bc64457adcd24dc0f8a93bfbd21
BLAKE2b-256 85586d1e75deb5d56029eb56384497a19e0d85c7841cce3c18cbef0bf32bbd13

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e600b7914a7f20d4b1d4b61a37612bda7d7a6d5d5e7d7007f49108f02b04053d
MD5 263a75f2b051e8ae280d5fa48b1c9f61
BLAKE2b-256 14578776053773b2f6936ff19641b52d3108d1058cf01c52adad00055da9fd4a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b6c02e77eaffde2bd16723127de024f73bb5a09538bed8eca366c54138bc8f4e
MD5 ad6d25ae1dd13bcd095a87891d5755d8
BLAKE2b-256 9f26c9a7b4a365987cea5cf92d61117f6aec823b0bb8febe8fa457f3e5670660

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c77cd6862cfbb78857b00a7ac025c34fe8f4b72c70186caaed6d1466afead0e7
MD5 21160265955aeb706193cce57832abea
BLAKE2b-256 287b3f1e77669365910c93dab7cb77f49ca9e0c6667c6567b730faebc6e684d4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 643f49ed6c419887aa8abb142149a661e98eb1b1e570f5a298cad12ada229d7b
MD5 d826a0066341429cef9b7d068ddfa7cd
BLAKE2b-256 eba945fa3806a719171400e263a088726e4f9a95dcf7a3bf14adba8d8d98847b

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.24.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.24.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.24.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ed022d7be3125375530ab1a502d5dac517ba6cc182107705b07552d25337b9f2
MD5 5876a8e05a1140f3d6dd679ffa4026be
BLAKE2b-256 695d7712dd40095b843460a1c5dbf7b90e25958b8aca4bc10cf81da86b113bcc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 4ba05dc3a76740ac0b864a20fe7dccec212ad98165a4a2b0f4c5e85dc4d7c8db
MD5 93702da057043de0efc2f20db7e69f00
BLAKE2b-256 a62a96c54500e0ab79976e5e754dc688d2385610297c011a07123b2ab6f8f885

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9646dd2c3c8135b96728d439c015fcf7d35995997dc5b6c9a8dd6568e93c8d73
MD5 44a0a7525bf636d1402a7554f4cda009
BLAKE2b-256 0bd48aa5c2b04ccc624243dd4a5eb3ca402c3a57abe9bc81fc9bbfd2be0deab7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 6904cf49049ebc8835ec9c2a63e7d703e2591b8c77117d6c3338a44662166978
MD5 1b5c2c0b90d729fa4eddb15c77abaceb
BLAKE2b-256 de01b481a88720cbe720ec23456b04ee3a465681c803486468f63e30466a2918

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4ccde8adb1625a86aa95d4c379b4a38451510997f1098a6f5d5af7624e64529d
MD5 6ca333b53930eb5fe76c731fa0d40355
BLAKE2b-256 2a9fbbd0d94976f831acc9e1c72ff04485455001ea05d1ac0b66642b21a681f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 eeb6f06b1901f313019bd56e282fb00217ef5a7aaa81c17b4987ab167824f729
MD5 09a4943d580412e29309ea011b561c83
BLAKE2b-256 eede6cde9e291c476727d262996403771981dae0fe5396216eb6fc9774464bf0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d16dfd92793b392879403931df7b9c36c443a552cf6a878f6b4a7d21c28b9cad
MD5 95f21108e8544488f434b6a2ce373bc1
BLAKE2b-256 2220baf76c03a04211c96918121ba9caad694130a74d9ec3f215e84a2fd02532

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 65d8589c63676bc33fbb58ff909e6dbf5d37aa14530f19b5dceac70f720d4376
MD5 d57169fa9ce0042fe62f9e6cca2db1eb
BLAKE2b-256 edb04d00723b58a7844e86d4c99f4731d6d57ca9b104126950ef447e87607b48

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9bb9afb653da4cf757e2dcf2d40d518561f6ab6e66fc44f6b2962326a03595e1
MD5 517b7365ac5d58440be75a58217a5093
BLAKE2b-256 3c8f05749f5c566771f229867f7b279b645e1b1f7e928182dc5859889f59d6d4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e1d41868e63a7a7d8d3bb307e6d9e8f9be8e1092eff7d47778942467d6f10954
MD5 921f73af576a8009e9efcddf151e2539
BLAKE2b-256 311cbc5f80efed63edd2dff28d8709e46bb5188e34f4f639b8113a792df7d171

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cfb7b3fd0809a75fbf1c45761fff30e6bccdca4572323860b1446393839a3989
MD5 fa30d51ce3b8005c34f6c87ade6adb60
BLAKE2b-256 6a73b14627e050d31ff1f2517ea953c61aacf1df806b5cbfc51908d75b885f73

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bfc31ef11f153e0d0b06a74426f379ab26debe2bf30e3a51d1d98129116488a1
MD5 9b0b236df43b48ec4930b3c5b3e7bda7
BLAKE2b-256 c9a14310b457a341c6c63ef92977454b2fae007d4b7355ca105f24b42a15e3b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.24.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.24.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.24.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 35a1c4165b484f4720cc9c4aa14569d088ba48be8478ac5e7a496f5b7a3191a2
MD5 2b674f5831e3b7d1efcabc4b83c234e3
BLAKE2b-256 cae0e9cf15e1b555621079b5db17f3b690d2a78459701c03755dcde04c6d7357

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 46f4e75e6cf7b6936bec50c0d612b81950163e56a08b89abadc72bccf0513f28
MD5 62ee7f3fc5d91b960e1e07a7bd966c07
BLAKE2b-256 deb14fe2189c78a90c443f4739960d09c27adc5887fec43c47e175a2d6026bac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 94cb256ae6044001d0ae6fb7e222b1f6889cee7e08875226f07a51bca1115918
MD5 bca831cf923f4162606858fda8e8b612
BLAKE2b-256 ad17bb52f9d76b5abcf3fa9c8a3ad62809e05480ceaa4c92c32489f913006e72

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 fcf12abfe404754d61ee24261e188d43b05c5ae2b1469fd4caf2b812f9a94482
MD5 f67c47108fcb494270ed5618f8624637
BLAKE2b-256 c04de2fb9cabbc0e13a2054029327a50e46995bff9e2d4ad4b164a4844b9e023

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a2daefbd5dad4d3fe9ab3d12604ac562c80b717ad8f6779c714c58628db45778
MD5 a6fbfc5b35da34abd6ad22e9074bc18c
BLAKE2b-256 c3e8a40c56eeb1af675888b281b17971737e2e6dfd48319ab7edd10e3c22703f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b5c60f41c4705db94e67af9c19bc3f3d1818345526e1fa17706cb638290c9f3a
MD5 155cc344396714c5c90cbc9dbd28354f
BLAKE2b-256 89c3698159706a8c6d2d45bba862ae5ad7189f477e4f87d133ddc3080b1a0839

See more details on using hashes here.

Provenance

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