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.11.1.tar.gz (179.5 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.11.1-cp314-cp314t-win_amd64.whl (605.4 kB view details)

Uploaded CPython 3.14tWindows x86-64

aioesphomeapi-44.11.1-cp314-cp314t-win32.whl (532.1 kB view details)

Uploaded CPython 3.14tWindows x86

aioesphomeapi-44.11.1-cp314-cp314t-musllinux_1_2_x86_64.whl (654.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

aioesphomeapi-44.11.1-cp314-cp314t-musllinux_1_2_i686.whl (673.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

aioesphomeapi-44.11.1-cp314-cp314t-musllinux_1_2_armv7l.whl (603.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.11.1-cp314-cp314t-musllinux_1_2_aarch64.whl (642.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

aioesphomeapi-44.11.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (646.2 kB view details)

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

aioesphomeapi-44.11.1-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (586.2 kB view details)

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

aioesphomeapi-44.11.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (635.8 kB view details)

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

aioesphomeapi-44.11.1-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (661.1 kB view details)

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

aioesphomeapi-44.11.1-cp314-cp314t-macosx_11_0_arm64.whl (567.2 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

aioesphomeapi-44.11.1-cp314-cp314t-macosx_10_15_x86_64.whl (572.4 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

aioesphomeapi-44.11.1-cp314-cp314-win_amd64.whl (515.8 kB view details)

Uploaded CPython 3.14Windows x86-64

aioesphomeapi-44.11.1-cp314-cp314-win32.whl (459.8 kB view details)

Uploaded CPython 3.14Windows x86

aioesphomeapi-44.11.1-cp314-cp314-musllinux_1_2_x86_64.whl (640.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

aioesphomeapi-44.11.1-cp314-cp314-musllinux_1_2_i686.whl (663.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

aioesphomeapi-44.11.1-cp314-cp314-musllinux_1_2_armv7l.whl (585.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.11.1-cp314-cp314-musllinux_1_2_aarch64.whl (619.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

aioesphomeapi-44.11.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (633.5 kB view details)

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

aioesphomeapi-44.11.1-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (581.6 kB view details)

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

aioesphomeapi-44.11.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (614.5 kB view details)

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

aioesphomeapi-44.11.1-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (654.2 kB view details)

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

aioesphomeapi-44.11.1-cp314-cp314-macosx_11_0_arm64.whl (527.4 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

aioesphomeapi-44.11.1-cp314-cp314-macosx_10_15_x86_64.whl (539.1 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

aioesphomeapi-44.11.1-cp313-cp313t-win_amd64.whl (576.1 kB view details)

Uploaded CPython 3.13tWindows x86-64

aioesphomeapi-44.11.1-cp313-cp313t-win32.whl (512.5 kB view details)

Uploaded CPython 3.13tWindows x86

aioesphomeapi-44.11.1-cp313-cp313t-musllinux_1_2_x86_64.whl (652.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

aioesphomeapi-44.11.1-cp313-cp313t-musllinux_1_2_i686.whl (672.6 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

aioesphomeapi-44.11.1-cp313-cp313t-musllinux_1_2_armv7l.whl (601.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.11.1-cp313-cp313t-musllinux_1_2_aarch64.whl (641.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

aioesphomeapi-44.11.1-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (644.2 kB view details)

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

aioesphomeapi-44.11.1-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (584.6 kB view details)

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

aioesphomeapi-44.11.1-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (634.4 kB view details)

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

aioesphomeapi-44.11.1-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (660.3 kB view details)

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

aioesphomeapi-44.11.1-cp313-cp313t-macosx_11_0_arm64.whl (565.5 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

aioesphomeapi-44.11.1-cp313-cp313t-macosx_10_13_x86_64.whl (570.3 kB view details)

Uploaded CPython 3.13tmacOS 10.13+ x86-64

aioesphomeapi-44.11.1-cp313-cp313-win_amd64.whl (506.3 kB view details)

Uploaded CPython 3.13Windows x86-64

aioesphomeapi-44.11.1-cp313-cp313-win32.whl (451.2 kB view details)

Uploaded CPython 3.13Windows x86

aioesphomeapi-44.11.1-cp313-cp313-musllinux_1_2_x86_64.whl (636.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

aioesphomeapi-44.11.1-cp313-cp313-musllinux_1_2_i686.whl (662.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

aioesphomeapi-44.11.1-cp313-cp313-musllinux_1_2_armv7l.whl (592.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.11.1-cp313-cp313-musllinux_1_2_aarch64.whl (612.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aioesphomeapi-44.11.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (630.1 kB view details)

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

aioesphomeapi-44.11.1-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (587.0 kB view details)

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

aioesphomeapi-44.11.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (606.1 kB view details)

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

aioesphomeapi-44.11.1-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (652.4 kB view details)

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

aioesphomeapi-44.11.1-cp313-cp313-macosx_11_0_arm64.whl (522.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aioesphomeapi-44.11.1-cp313-cp313-macosx_10_13_x86_64.whl (536.3 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aioesphomeapi-44.11.1-cp312-cp312-win_amd64.whl (508.9 kB view details)

Uploaded CPython 3.12Windows x86-64

aioesphomeapi-44.11.1-cp312-cp312-win32.whl (452.1 kB view details)

Uploaded CPython 3.12Windows x86

aioesphomeapi-44.11.1-cp312-cp312-musllinux_1_2_x86_64.whl (641.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

aioesphomeapi-44.11.1-cp312-cp312-musllinux_1_2_i686.whl (666.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

aioesphomeapi-44.11.1-cp312-cp312-musllinux_1_2_armv7l.whl (596.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.11.1-cp312-cp312-musllinux_1_2_aarch64.whl (617.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aioesphomeapi-44.11.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (636.5 kB view details)

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

aioesphomeapi-44.11.1-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (593.1 kB view details)

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

aioesphomeapi-44.11.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (612.1 kB view details)

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

aioesphomeapi-44.11.1-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (658.6 kB view details)

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

aioesphomeapi-44.11.1-cp312-cp312-macosx_11_0_arm64.whl (527.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aioesphomeapi-44.11.1-cp312-cp312-macosx_10_13_x86_64.whl (542.1 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aioesphomeapi-44.11.1-cp311-cp311-win_amd64.whl (510.7 kB view details)

Uploaded CPython 3.11Windows x86-64

aioesphomeapi-44.11.1-cp311-cp311-win32.whl (460.8 kB view details)

Uploaded CPython 3.11Windows x86

aioesphomeapi-44.11.1-cp311-cp311-musllinux_1_2_x86_64.whl (655.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

aioesphomeapi-44.11.1-cp311-cp311-musllinux_1_2_i686.whl (686.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

aioesphomeapi-44.11.1-cp311-cp311-musllinux_1_2_armv7l.whl (603.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.11.1-cp311-cp311-musllinux_1_2_aarch64.whl (634.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aioesphomeapi-44.11.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (648.1 kB view details)

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

aioesphomeapi-44.11.1-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (601.9 kB view details)

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

aioesphomeapi-44.11.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (628.9 kB view details)

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

aioesphomeapi-44.11.1-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (676.6 kB view details)

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

aioesphomeapi-44.11.1-cp311-cp311-macosx_11_0_arm64.whl (527.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aioesphomeapi-44.11.1-cp311-cp311-macosx_10_9_x86_64.whl (541.0 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for aioesphomeapi-44.11.1.tar.gz
Algorithm Hash digest
SHA256 261d8f54aeb1d5a968a4404065701e6cc36ecf9af1404a6830e5adc4b1b18f79
MD5 b1c3f9a923be1842727b696058d11250
BLAKE2b-256 bd272d3861190204a2fca30a49af068ea179212b5d808617988d626d139f960e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 f7288ff00eb344b3f2353fc7ae998875384eeb11c41a8c929de26a69867f858e
MD5 15ad7ad4ddaba98d0db6f4782cfcb212
BLAKE2b-256 aa9fe8070bea8c6cdc5857a13d107633bf38f9d6a2a204f4d4a59af571710a95

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 4c275a3cf9d1f969b22999b0a8aa31dfb1abbea9f2f8399898e1663086bdb018
MD5 514f9755605d62fa6ea207754d060650
BLAKE2b-256 4e225076eace8ae9929eca349f8b5dc6462ee39a3b4fdb8c3d643d0e330e4a8c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 de46b58aa66c01a70300d4a482e9d31f77ffcdf76bee783931a64e9e6d32e7ba
MD5 aa66902697531e4d5675e7ff832a1863
BLAKE2b-256 39df65b03420359929f5c1d7fa49aec65fbcb529f5972d69aa5eab636e3306ef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.1-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2253c91c7067eb5301e3faf534072088a30d5e0ad8cf57e73a9154c7815b9a34
MD5 ddd97dcf852d8eaf531d199e4c7a202e
BLAKE2b-256 8a3fc310ba59d7c48eddf2975bf683c718240e9ec698103061994508869d5f0a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.1-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c3a63e310b7192ceb5fe6052a514b54ebf9a25f2013a7c91a4ae8bb126022e88
MD5 48c191ae560b5d2c633d1da3b3e7baa5
BLAKE2b-256 795308ee833d11ea65778c31d13e1707be4e596bc4d222ae408726efb12dd9ca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0db642deb71d8595fdeac4d9d5d01a46e2c98c5b5fe948cbbd09f97994e7537b
MD5 18a020edcfc413025f0f82d9b12b3450
BLAKE2b-256 8175a14d7ce3fd006727eeb97b38e55455c085fc110b44af00fed8f2d8588528

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8f826cf649d7e693cef36e64f3fd93535ca99e8d991938d660dc5b060570206d
MD5 14f1ec98bfe8b18ebf8d50b453a86e1a
BLAKE2b-256 8b2cf7927f8cadcee5a43335f238314ddf928e2e448ac8f9d05012b61b4f10e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.1-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 160a29c79b1285c845ca650c0fea0e8e41c3cef2c153b7696ac029692a234862
MD5 33c149d4ed104ce101d64eb7acb84afb
BLAKE2b-256 875614b9f84a5a93d60c3a361c5fd754a5cd268caf2c1eb8ceea84c99e0d13f3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3606cfe902a18e8e1a69ae5b864d98655368ec427c1d3c2d84b26a27d8e58a68
MD5 62cb9398ed8eac11fb40c47f8930a431
BLAKE2b-256 597eb61d9b2109b95b5790152c44e9d36e91edc5204e26ae79ac19c74bc1099a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.1-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 55e924daa65750a68d135db7adbc4d263abd1a2335495f66b8f1ff8183a9fbd2
MD5 cb6204b476522cf924d7048c2034dceb
BLAKE2b-256 0d4a1e64d02f24dbb651e3078f74cb5b19678dd01b1c22be1eec45319b7228b0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1d1fc80198ff748f35da8dadbb120c76fc606479ba91c00bd5a27dd520cce349
MD5 8a04d8635e1f1185760cfe9fb63bcaaf
BLAKE2b-256 7c1d6edb4dcba42a2ad3b4c70a4b4ff8d957eb7a8edb7be703e0a80f9a70827a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.1-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 b9695cb4c393aebe868e0e27d9cf07235383a055f043f2c7a06ff13c910549a4
MD5 8f3e2d8a6f72819840c4b1060777c375
BLAKE2b-256 48002b687a7a12a035a92614d6da8fd90616f584c52d29a322dfa672aaa380fd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 0447178798d203815ff665ff5c83be12d4c28caad9c62231318b8844f64986a5
MD5 839c5a4aac0b4d4631d92e07899b489d
BLAKE2b-256 2d8898153a84334b2c084bd09742b067f0dc447f69d5f52a8afa3f6cb2c70dec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 c543088422c5968ae2942cae1f744c8d79694444725b4b8794426fb385998428
MD5 9138fdd3267e421f2cf2fb7bca6a3f96
BLAKE2b-256 3bce17ba1447a872c78c941e817b6dc7821935563c48f99344df8673daa34837

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dccd78c4e37daeeb837b9c8709e6f8723312ea9de7e02fcc6f63c23b33f026a2
MD5 24f40d6a986d75d7fccb755d6049dfbb
BLAKE2b-256 1864b3e8d198ba61f3c3a72bc4001b9ee769b332fd16679fde47458530b42396

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.1-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 36744a625076ad322969da24d68c2e65c1e9636497d80751226a71e88666501d
MD5 e88a83554cac2a00e4af84f2beaf2e76
BLAKE2b-256 c17a54fd37d361f39a6fe9bf194242f34d779f8333610949335836158063e910

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.1-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 18bce079aa01202a95f9cac0bf9a56d2073513d8bec2181745dc7d69a952e0a3
MD5 14a654bb2916baf3fb889888a025b7a2
BLAKE2b-256 37318a6c28e2579400d19625dbcac78a388350d0ad44d225b7ce28398fdfef15

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5910638bf71e2d7b92db97331db106d28f1d9f2a4020181d14291fcf5b5429fe
MD5 e4252431578f50fc4756be7002d193f2
BLAKE2b-256 9ad94eccfdbcebb07d5f6f9c455fc7df315eee3611e6f35cb692a7c1ce4d1cae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ffeb65a6e83886286e8daca15ca047c824a9a54a4eb5c312d9b7a71bb33019cb
MD5 d8b1dbfeeb079457c089453c214cb30a
BLAKE2b-256 eb8aa592d55619bacb5033adb1a586b7e81e29ef1cc6bc064b3950d19adee135

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.1-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 b6bce009e3c16a381a45815b480ca3196a3ea9879bbcf4e3c6b539a3609e25bd
MD5 7913a0ca290859eabb9634648711fa03
BLAKE2b-256 b400e9b10a07f5709a6c41ecf3f54abfec8033e3d9a0b0842841d18507f18378

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3159256d8a2358739afefe836c2f2ae554e493e9e917e62db515d9cf30c50a02
MD5 1fc16524f916bc2949d03bd610d3bfb0
BLAKE2b-256 70916472ac0e8c9e11a64b178daa159a4b1186cf2054a49379b3de70034c61cb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.1-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 f29b5a99adbc8cc2ef560c5920e3cb7fa40fe5fa461c40ffbc6c1779125620a4
MD5 4117a55f0bdba211b815f8c611691886
BLAKE2b-256 766a5397a89036f3c6766296c1e9da0e18cb8d6190d4922e3425f0fdd7310ec0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 244e6bb5a839cb259ffbfcf292400c5c7aba434033cc720229b165b42d5a4f84
MD5 f7dad82ad3e44efd4d59dad2dc7a9ebf
BLAKE2b-256 7132c0ee3020d690d2aa68300df9d888aa83f354bb845398371cc09a8c91de64

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 362102460178f3b9181b11ca108c20280a3fcc8615f00345679d860cb63ec975
MD5 1c849ea35374f06485bd2d020d2de780
BLAKE2b-256 0d41e30dac5c5ce2d592373b6be2a9c5196fd3c874f11e73f3df7eaa5fc13e59

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.1-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 333b5d7a04d071a270cda1f12afaca068374466cd4bf195fee6f9849a8f3a72a
MD5 73e2da7076cac3d6152480b719a06d21
BLAKE2b-256 e8db8ed6953ecb3fcbde160bda0e4f5d49e0a5041fb2bd091a724a7d0fd88128

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.1-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 7aa23557a6552c6cfbe4cd19307c3aba051d8370d0f37bce5e88dd7711739be7
MD5 a4531f650a946c5e79b06a81b9617377
BLAKE2b-256 460731b34a34d1cc973ec20c7e7ac0bd7cef4f34de0f25097a1db24c0d6c5a60

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e1037770c4b676ecb106adee1bd3d4f39523f8ea50719e8e400edb20bfdbe6dc
MD5 0093fe9fe2b025fc69d1405e28c6a1ea
BLAKE2b-256 35c78d6fb55b5384cbe4cbf8b725b6ed010ad08cad24a107cc057a07cc4654fa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.1-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5bab92bbec6c121e7773849971f53a3aa4491b5fe8b46ad448618d063aa4e57f
MD5 b3e1330f80ec3ac23fe666131a8d1592
BLAKE2b-256 6f0c128604055161b5e114bbffcb58fab25cab969774aaff7ec0a55ebe028405

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.1-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b68c564a2eb595ac0a8b88e56b8cb99931920840969a282843a48da543c1097d
MD5 63c9218a877f9d68b529f25b30398394
BLAKE2b-256 2c4b082bb0fcaa3bedfbf873dc3a4b635f4fd8ccff778b3a43520f7e19926d0b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0a56171b77e2a6be2aa372d44aabbf123a99ee9216bbf53de3fd3bd0721ffdeb
MD5 f38b1f2e103ff33cb98cb91dc466d1d3
BLAKE2b-256 70b3c6e36ddc796964fbdb898456e669b97e0031bdaab769da58f6ea654217fa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.1-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9c5ec8e2d9478e28682112757eb004b598190c8bf7a14987b5edb52d8bd2e7a6
MD5 b07854e7aed27fe45ac7c69298c16269
BLAKE2b-256 a65dbbda92e439d83a6ae614f6b4910ca6fefa50a9776c852692e1a00c8404dd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.1-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 7fb0562d9c12ba45f78e79d0866bf1ef1512bb7a43cd163a5de7ed28dabd9cda
MD5 994f87c719439bf6613904eede4bc0c1
BLAKE2b-256 505226af1bcc32bcf7f50f86c39228f45830910b3a652649a1eef5ee5f417a9e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.1-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f05241461f9c8daad523de0da74089f3067abac7f15dd30ca63d2edbdbb62770
MD5 7cb48b5b63354ee8f79c429f1487517a
BLAKE2b-256 9d665e88ae71a86f865dae02fd3d68224e7f3a2d0f2708615990768e8cf3fd16

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.1-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 4d8e79fe579c32e1dedd598c4d09f0316bd1aadd03244e1773eec057a99d12df
MD5 33eee8ee1d968a62bd4cedc23ad6f7bc
BLAKE2b-256 fc9eca32fdad741b59c8a3fcb295faa9fb3f880ad1e2afe7151c3d7659012840

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.1-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b8d117fb85cac2d98f39c9d186cf8d62838c36ce21337d0c5c8c1bb4c7f59f16
MD5 54e7ba732e3a85a030463e7da346866e
BLAKE2b-256 2c73f2b0ec642616a9a74df6ed352f89b520bed139e6f8cbabb25d3be57e7b34

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.1-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 70c762fe2fc33706c096207937199a805f5fbe1858dbd57e011a18fbacba88c4
MD5 8937317cdfa118b48b1ef7809b91c611
BLAKE2b-256 42502c9e49cbad3ca7b40be40433c01c67b871e0d813929b310fb2625a9a61ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 680a1db3f4ed61704269b69716244b0facfc41395e44de231e0e50e484cd46f4
MD5 65322c0380cf02dbc6d7842ef4d56efd
BLAKE2b-256 0aff4f5f9c465cfbdc052d01c3d48bebaf74e7774cb756a6bc474b75aa9e00e7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 abfe20627868bf39378f457efd8912e52793096881f0e40ba3584fbfaf02fbb9
MD5 5cc9a4dd8100c1480c38c60fccb510b2
BLAKE2b-256 10ae0733a7d39b373dc5833a5efb259d555d655b28ccf119b32fbbcfb0477a01

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 091b10ea4e6d593d5c73f9a5ab352f111e4cc75dd65f613970165c6a0ccfb09d
MD5 237622331b7c7d2e7a710c92940f2608
BLAKE2b-256 afde4d6df0848fe0dc511052ecb5b0fb329de98c8833d5fe982f18473b87be8a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e3931e84b41bd08ba61391e2299a7ad4ac5b2d2c8e28f89f59c48eaf1a46b9b4
MD5 0a8d35632abb288b125e3776cddac732
BLAKE2b-256 fc10e712081524c18adfbb4c5d12fad70f9f83de641afc822c521d61b112bfde

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8a0b78ae0f31e6ed19dacd6ed2a6caee6cd4ef28a17fe86293282ccce64480ef
MD5 bcf5812e7ebc15453004d121990b0973
BLAKE2b-256 43c6015f75ce2fbb9ae7e4ddf7f6b95afc21389fd113c3ec8c23ddabb141534b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0100ec57f01516a0e0e75324f07a83f7769097e81eb54bf53a0d36d9df8a985e
MD5 07bef5dedc922d30943e94448b72d677
BLAKE2b-256 cf694f98e1603776bd6cb50b2229ae11f6d53e782eece77f7172df76ba8ef453

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bf7d4215df0555ccafc6619e5e6fc48785a40443dfe371a0b74007dbdd38db38
MD5 4e821553951b8bfd49a949e85190c5f2
BLAKE2b-256 14103721ddceb041d46d53a463b3c6235f8e11d936b60e6cc8271fefc290e221

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.1-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 371618e827e2ad9e76f1e9b6644750c8c3cab382351b3c7f348f9ba5163868a4
MD5 162b02a9900c62c03fa73ab5f657e44f
BLAKE2b-256 25b84f08664574c0c1e2e38fc32b3b7d62ab82264c85e95acf50b47a91f08847

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 756ed1643b8189c2495cdf3cc483549e2890e27422d692d6450d5c273746f812
MD5 6bc72fd3a52710f1a326c57b2bb5b2d6
BLAKE2b-256 70abcd70752f4cb07c92360eaa37a29f96e9596b2eb248e1cc87da6d8786f7b4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.1-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 828fa9758fbf9a06b909ef0831810315e68991cbf547df0eb434d3e1972031d4
MD5 08249b5646262dba5039a7d827ed466d
BLAKE2b-256 4f686a4fa3c7fa664d39db2d9ed3e938e1e02e7a21de429d9fa416f52226c052

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 be44139a7995063206703392f80b01ed8c06de78032420c28e34d9eced42c791
MD5 bfca56b941e6467c6bd6f59f4941f7c0
BLAKE2b-256 0feccb4c7690728f0cd98be7ee8049ef447fc7f16272b19a603acb4ccb2f9c6a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 63ba3b797b8cd58f0561ec361df4aa6d22130ab03448daf8f7119158742516be
MD5 b8e8e91499059bddbdab0685af23e798
BLAKE2b-256 d00501f95be2a976e948d3b74933575cc06e7a64d54cfb7535a3d3c4ed012726

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 78e72bce02a18db394316640133e3515e2e3451e06f2f15228c001bc7a106f3a
MD5 82807a28e9987c4b8452827dff485a43
BLAKE2b-256 567adbd714404dcf803e2abc11b69f46d88fbed1b9dc27224e59ac097aa9e5d0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 5c3fd0f94c969793575bcfd097ab9f13b18905efe1b4de800f86eaa127f68eef
MD5 f81cc2d97827c6b17798fe6eb1c02b77
BLAKE2b-256 9afc3e3a112c21a5ce39b49cc3dff002c6916dfb138d20d6662efdc6b9ece4a6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c36c713a66613c5eeda1749fe56e94eaf5a040bc7a1f142ba72b1cff60bba46f
MD5 d571c2ed9b586bfd1c21aa7e1742de1a
BLAKE2b-256 f2a4be26fcf4d78393b15aa4839afd0906ea0bc5ca84ee54aa61c1ef2840beaf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f622253220ba8b100105ed9e35b26b466da058bb082f9fc577bdec1ec51ff501
MD5 f2791b132348005aafdc36b405a73666
BLAKE2b-256 f51ec89572d980989b899a165c05d2a19511767fb366df7e975c88d85c521177

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 63df0561098c3dfd4ff338562aa140137eedac0e97abdaa43c5a802af2f93046
MD5 abc86f9dbca059ec99bf2dee651939c5
BLAKE2b-256 2062498bed626a7211a57819ea16e8f4056a9b4af65e31e48d80a2732777bc5e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 87a7dc1ca960e466b141e34bf7c0dcfd5163842a677f64719dbad32fe40e1cc1
MD5 9077a81cb66cb9b2747f36a65115bdb4
BLAKE2b-256 c9f9d08aa67ac0d7f1413ce834b7883c41fcb7484df3787bfcb8512e141b4131

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d933087878902b33f1ee7354eed97fc41e3649d4b8c51399abe31d251fe359ba
MD5 abf469cb8895b8019e107c67df51eb21
BLAKE2b-256 d896a957fb8ce3a9e2da3bd634182b89c8b057fd01f0bf2247d32dad371eebaa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.1-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 0607fa056d24049507004d68a103febb6a0ea34d2814c6fe811f157b24bc3faf
MD5 f3df79a50252b5eeb303083d4f8f5ab0
BLAKE2b-256 09de784221bfeccc4db1a587b853dda37b783079b3bd9beab12e0b439edfa277

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 17a8fdbac3e29fbffe505171d81ac2d299b4851b03f85db591ed8804eb36114b
MD5 96ec60d50c32ddcbf325bfd3c7a94054
BLAKE2b-256 cb50e91731124bad21fa3daa4d0e6145f17c4934b8f9690bd867aef807ace376

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.1-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 42e6c2e9ce262386c6baf24219099cdd459b719dc6e07f5256b9fe47a25863ea
MD5 959e16d0a9d2606b4e3442df3b9c9978
BLAKE2b-256 d9480d1589097f9ca1d8897a02216fc89c3b0d891e0f2d450787f4e5b94e75fb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cafa9aa58c7491eb5c9f5d23007e51a7fc6effab15167170987b8ccc9b30f3ac
MD5 78a36731a2f3b2e4e7324b449e235464
BLAKE2b-256 7f459a3a0b821494ed4ae383cfcf6d053a5f2379e46912713b9f947ce8d0d877

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 1f560847d61740c771d5a27fe4d8004f9a070567df4321ef227bae0b60aa9ca8
MD5 8011119500d4917a093276df8a4f1549
BLAKE2b-256 51665bdaedbcd939f595f78268a44d52ed1970a8a096dc7545fcb5e33b3cf9d1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 04086f96ec723bdb055c775b17783743086f7032f01a57053f2f5b87210b8ab6
MD5 ce3c3a73bce9b7db701d4eb3e2d494d0
BLAKE2b-256 1a173620e38f8df7594926f89a242ea83eb075bed1d9a3e8d2525585900a5d26

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 92a264eaea8b564d0a19477fecf52ce78e5a8236943908e57669069443eab769
MD5 d76cfcd4a0d15c6ab71e5840658b5272
BLAKE2b-256 bc66ef2fae2172ba8991dd9c76775f7c0be0be58dea598e771813cfa097216ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 aa1ed4accbd7321bc6846ca8e54834678aa5fb59e54590edd18170219b3703f8
MD5 a7e049a73c8296afc86a3c0dcad1b0e1
BLAKE2b-256 f547d97caf0cf0300a09bd10ca802e2547bdaf2f4881265d5a9198ae36d80538

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 33c1cab8cd67e88a642a287bc6598c599bea3d24ae00b7e5af3b9496d8059eca
MD5 c8693eec3f5cbce18e35fb0cab6ec030
BLAKE2b-256 2cc4e7730aee5662ff3c491e8eb51e14e5ca58789bf3179dcab3f38cfd317ac6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6d1d2cc224e47fe2359832ccd93b209c399f4b8993f42ae8b180a451479f06e3
MD5 9403140dc339a0db4a628266ff8850eb
BLAKE2b-256 186805998df5eb15425cfcbe8fac513113bfc49b42f6af7fc9ed955ed2e1b2c2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f219607cc2d77f91726318919c038d8a1de618a0c249f3e122c567368bd24054
MD5 ec4a6888b9f3da8f5fa17fbf3d08e89a
BLAKE2b-256 65718ffc846c10f74edf6844effa45835cc5e773fda6388facd0ee61c45ea699

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8b0d1610ce9614402c6b09eefbe71f0d0928ae2ea056c4120889c5579fb726f9
MD5 63a85d7e4a4d6addb969bb3880ce493b
BLAKE2b-256 e0d5cc2b38f909b0337d78cceb11facb5ecb154ae19904f9fcddcd8546389ef7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.1-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 e0b572f6390ca7b6304b36b4621e2d4ccabf4f2077c12630b9ca82c855627fcd
MD5 0ac714bf15419afae6b1e6f1752ac8f3
BLAKE2b-256 e5cdcbca2950de6b6fd78a27e0af27903ee2b1ee5fbe50cfdfef29cecc2cb70e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5359da21673c3a68493a2a0ed9ffed539b78145184ed29b5fc8072654945f8dc
MD5 e09465ef3d0cc14b00694f22fce1a9c6
BLAKE2b-256 3d8b8bb238f5e541deadf92af38117ad08375ab06790ac24005733996b6a30ee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.1-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 424180a1aa30f4012358509a2c892e014d0cd4ccce451fa49badb5ffc590ed7e
MD5 c7ded6156f03d81a151ee9894c5b4f6c
BLAKE2b-256 44a20edeab4271cae5947be09eb87cb9c6dbf6195ed35e833f68d02dbd45f5fa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 178b8e4468d4187901d91c2d20c7a4842342c192395c0305be12111040dfc9d2
MD5 19f062abf689ed9937240fc2f9c9fc5e
BLAKE2b-256 8cb66f2217c243e3bf752db3e71a97fc0514b94723f739726991066765af9260

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fa29d668a72ef39ce23f202cf67ea1b436515b6bd02fd8bd4c494bc98b96d7ad
MD5 ed17fab222d5313ff1442b1f28b39a22
BLAKE2b-256 5ccb892957d05a56741a4d731cb01a699e972b45f5c2cf92cb6933410bcf8a57

See more details on using hashes here.

Provenance

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