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.0.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.0-cp314-cp314t-win_amd64.whl (605.4 kB view details)

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

aioesphomeapi-44.11.0-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.0-cp314-cp314t-musllinux_1_2_i686.whl (673.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

aioesphomeapi-44.11.0-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.0-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.0-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.0-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.0-cp314-cp314t-macosx_11_0_arm64.whl (567.2 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

aioesphomeapi-44.11.0-cp314-cp314t-macosx_10_15_x86_64.whl (572.3 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

aioesphomeapi-44.11.0-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.0-cp314-cp314-musllinux_1_2_i686.whl (663.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

aioesphomeapi-44.11.0-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.0-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.0-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.0-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.0-cp314-cp314-macosx_11_0_arm64.whl (527.4 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.15+ x86-64

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

Uploaded CPython 3.13tWindows x86-64

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

Uploaded CPython 3.13tWindows x86

aioesphomeapi-44.11.0-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.0-cp313-cp313t-musllinux_1_2_i686.whl (672.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.11.0-cp313-cp313t-musllinux_1_2_aarch64.whl (641.6 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

aioesphomeapi-44.11.0-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.0-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.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (634.3 kB view details)

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

aioesphomeapi-44.11.0-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.0-cp313-cp313t-macosx_11_0_arm64.whl (565.5 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

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

Uploaded CPython 3.13tmacOS 10.13+ x86-64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

aioesphomeapi-44.11.0-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.0-cp313-cp313-musllinux_1_2_i686.whl (662.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.11.0-cp313-cp313-musllinux_1_2_aarch64.whl (612.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aioesphomeapi-44.11.0-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.0-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.0-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.0-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.0-cp313-cp313-macosx_11_0_arm64.whl (522.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

aioesphomeapi-44.11.0-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.0-cp312-cp312-musllinux_1_2_i686.whl (666.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

aioesphomeapi-44.11.0-cp312-cp312-musllinux_1_2_armv7l.whl (596.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aioesphomeapi-44.11.0-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.0-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.0-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.0-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.0-cp312-cp312-macosx_11_0_arm64.whl (527.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

aioesphomeapi-44.11.0-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.0-cp311-cp311-musllinux_1_2_i686.whl (686.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aioesphomeapi-44.11.0-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.0-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.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (628.8 kB view details)

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

aioesphomeapi-44.11.0-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.0-cp311-cp311-macosx_11_0_arm64.whl (527.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aioesphomeapi-44.11.0-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.0.tar.gz.

File metadata

  • Download URL: aioesphomeapi-44.11.0.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.0.tar.gz
Algorithm Hash digest
SHA256 14754c07b9c489f2e3437860045cb4e4aae8b1573b8920c5ff9c351b8cae7e26
MD5 78d9d6404adddd7a142628fcf5922d53
BLAKE2b-256 f22e0c05fe84582b39ae97bb36eb4c5d7a136bff139d6002d99a5f2de0ebf425

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 2362aadd6408ba02bdf7c3557700fad3efc0e801d589697e8a094ac07fae3d6c
MD5 61e6a8dd88d031a09c117e685fdc73f8
BLAKE2b-256 b55195effaa41f34cdb064f4eefea44975b80346b6997e9a082c74fc84541223

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 e4266b3dc3cdaca8627494dbf3493d046c8466a3e8786a07474a51ebaeb2dea2
MD5 5cb1fd326ec438b4336ca59d53545ade
BLAKE2b-256 6ca2f70ba23518997c1ea07ebf14a1e9148f8f9c5c5964286b046c840369761a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 18c7b270e53d4c8f149781fecd5141370072b8601c43440745ffddbafb57249d
MD5 9760a71f203f7d45e63a240ba6e184f4
BLAKE2b-256 bfa47cd1367da037de42fac2a7dc87d87000575aec4303c37af8ee603ab161d5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6a8a4a58b171ebf8789c01377b4baac0f0554b06545a8f47483146f9f2a11c93
MD5 fcc142d86aac2cc9ebe6ef360f33f07f
BLAKE2b-256 850b9151c2f9dee40bfa3571e990505a7c2aadb221aaae2d1063ae946b406ca4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 38d9778c0d4e33e5ed5612eeb7099c214b001e21c0fa0da7e333d63731d10478
MD5 2fbdc5ef5e386a6efb1453f260e48f73
BLAKE2b-256 71bb33a76deb8aaae6b9c5ba3924f16926da90a17dc172a884c72c4a16ff76a4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9cf335a85796627bee294f08de45bde03db8567e67231abc10f79525b68f78fa
MD5 4c3da8edf5c5928710e09772ec8f01ca
BLAKE2b-256 b6aa4175d02f95174d1dd2baac4d3a2cba25a35c2869dc296b756df5f6648790

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.11.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.11.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.11.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f3a99b8a1ef226fd55b0f1c6dfea2c0984ba20190d28e3dc0ba68efbb5d56c48
MD5 dcb7f81635c0306c9407dfea8c2a2e43
BLAKE2b-256 b01e1929bf99c119ed79eb20020bf010455e5979ca2bc79037c41350d39e5675

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 53b0d4a78cae79bbbe0c86b0c247cf078e6ed25684396720b115fe9dedd3e1c4
MD5 7bec3b7a2ab45c66a44ea6f7278bb2cc
BLAKE2b-256 c97f3299119d67544fac749f6046603dc7dcb45834a8d01743560f745d497eb3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8b00d2fe99d14beba3dd46049e5758d12b1f8654af5046ded66ca0f8bc8636f0
MD5 74f0abcd62f34a5c91dabfd56c60fc84
BLAKE2b-256 9363d85faaebe272749a8e90408cd98c291699bf4cc9d7468c8fb9b09519d476

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 d1e6bf1e10173facd7842f23d37e03d18560b2bc0a3bf74506ce0740f1a89d34
MD5 0af3e047af41991254a8b1a88b8a032d
BLAKE2b-256 dc0dba15a53d8e751430aef601bf1c7100c3623c7e778fb3f3c92a59a3be8ff8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b95a13e30ff85e66f145b62b67d56f0eed66dfe51cae6d0da49506127c92d21b
MD5 49d35e9e4f5b8387d585017659c0b802
BLAKE2b-256 f9c4178a175670df91a66af16952e6d2e07654eb0da6c800de21af622767ed2d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ff31e77ff70e6b236ede55ecd91e38a91e374457bf84ac580e545f24c6a11e4d
MD5 48bdf11a12ce437883a98f6b7b23e410
BLAKE2b-256 4d83853e05787e1e4e7d5be86ac463f3ce236b45db25ef08fe322a8839036264

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 32d0ef336ae18d394e99250c1959dda0845777a9aae2420589c06ff81953a25f
MD5 1a9d02ad47d0ab08ead0e0b52a9d67b4
BLAKE2b-256 fdfa389e8e33a79db3c7f871625cceebd530a4c1126261c2655286480c24aabc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 e44a6a181b7ee9b672fa54ab6be5ee8f1c18d3496338b1bce5d9dfea29cb484a
MD5 6930a2e8478fa33fd8b061133488f86e
BLAKE2b-256 1d8c571fae90ec67d661ef848d94284c31fa698c72d42b4de5f6a0e100a285de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9866acb262e39a8b0b00bc627ee0df51968099979993c5354b205c8c2378ec77
MD5 06d5812254d291bc136ab428f16185e3
BLAKE2b-256 92a58878401a85aacc9f9fd1d10586a42fb1395d83ae5590c73d19862b348cd8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6f9e0fd2ec621b29e1ccdadc7d730a9d8ac8e23766081dfe7981298d80420962
MD5 1e17a8cc7b429d95517da052a376aaa9
BLAKE2b-256 9b6a5e64993a9c00537f0074d417f52caf96645753163bbaffba35582d13438a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1219eb6dbfe8078223ce8924253a9402124a7ce2d9777d48ee9170947b744fd1
MD5 ab870c292f9255c662a35c0f7638f2f8
BLAKE2b-256 3c6f218637eb5db15303ec5f9e83af9ac3d2d71badf00785df67d638bc2b4487

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e9556f55500dbb51afc9136973a6e042cbbf0938f754e9813c0b02a6b66eb003
MD5 f3becf9ac4fbf088d08fe963c6f99c0f
BLAKE2b-256 a5aa7acfa6d37e2a276f0f2a4653590607995ec5b30e0e3de586758e25530d9e

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.11.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.11.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.11.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b7a670188b47978e87df77650848a012987e586f9b50e58966bf1e0d00ce1c2c
MD5 959614f4e44752b695059a4308019f04
BLAKE2b-256 4a4a44143efb6bf43a774708d7ff2641b2bc4c3fc76bcbf209672faab30cb266

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 48345a3d1b54d1c733607059a6642a6c5b75dba3d0e9728ac56b28e6418e3c06
MD5 a73b534b0d202cae63e25129c3daf17f
BLAKE2b-256 3c2616b6b1fc8eb24627995622e56204dfb0c89c10be3801bcb39cbdf453404a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e1a9dfdf4263799507ec3cd58dd967cd1c48e92688ff5cd30e3b49dc3c02d7ba
MD5 3e92b4f517bcc0de38d8af078fe75b92
BLAKE2b-256 27377ad4b15befba44ca5a60e76f6717849d84fc3c6864aeb0762628be8d75de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 123e3a4b028324c821f4d4b29b15fcd7944e245d275433072006499bbc92b7d2
MD5 8d4bbd0adb8227c020777f2adffd45f5
BLAKE2b-256 dd614043622d6edb27ecfdaf4905afb9c990a3c3d4774fa1b38fa605f1e1404f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d37c33341b430f7fbf3f5c84c4cfc7d1b9b3bd058604d4b79e1ecabc1cbd69f0
MD5 dde000054f5594ed63a251ac39e9d31d
BLAKE2b-256 0f283655ab895c283d1fe29b717d64684e33b8e5fb0841e3b2ae62c43aa801fd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 14b4807763864c3d503e0188c37119712b61877828d81930add7534f583e85ba
MD5 953e1707b774a44fbb6a2c791f96f2a8
BLAKE2b-256 390e3b5535713a06c0a24b600d20f9bd0e4dada7420040d5c2821bdac5a75b8e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.0-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 2f34d726a8955414547ce35f47fa921245e83994764a89884ed957eef53ee465
MD5 e5e3d0cab185f9cbe506728304f08ccf
BLAKE2b-256 62df1a3b1ae341215f59e24afe74080906c98b8fd934393af965d15ef755c803

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.0-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 0bfff14ca2e1fa7aa8f8ef8692e8b0fc2d29bc7daf3e5302db6083bd968a4caa
MD5 5d768397730f4b9fba72f46c68a23975
BLAKE2b-256 09d02b28c4fa5d25f850de2423b7567e9dd4e6add99669d06eeee7d6ad86b6ea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4563e501c92c21c062ed86d8cd906ee4c67aee71ab3daa78c454982571cad2e6
MD5 196f02d34feca03858bfa14954fb65df
BLAKE2b-256 5c8f087b1db751aa4957dec5254c6d3dcbb44bc86d434392dd84da79a436e4e3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5625d0f363fdbf4247384d849f4ddb99aa2a79cb1be63131437798e21e9566ad
MD5 f8650f330b51ac3379c9e3bb2ad74819
BLAKE2b-256 6ee599fa43af8cceaaa18db0f9d71004907795370feb8f048636a539849e149d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fcc00441394c8e228ad73a9f24e45a8d7421149eaa6196614e23570090b2064b
MD5 7ef17d1109738bc43e980b317a131644
BLAKE2b-256 404c52591b12e7b5bcb4110a4cc7a75dedca1b562e4b3c4cd7fa6d1c638ce3c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 31fd212d803e8de7e0b6796dc247a9d01edbe88f031ffec1a318c59413ed3a3c
MD5 d7ec9ef52dc703472d53cd20077b925d
BLAKE2b-256 7b34a58fe390707b5efd057fb617bb6b0eb6624e29e5c71cc2ca196181b5603b

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.11.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.11.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.11.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 22775e3daffa16fcd9959a38a8645e1dbc8692c6a3f070dee83581fc6ec29bd2
MD5 662f7f8adc574555d1d588dc21d178ec
BLAKE2b-256 6d82c8a500862df7794ba423c66752d4c68006817f37dbe03045d4e759136c20

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.0-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 baab8d6ece2669655eef6c0a780012a82b31045fd0692e474db29f9fba581a68
MD5 1dff266233129cb98ce5ef59d1bdbd98
BLAKE2b-256 14f7c69148a2e5edcdf717fe3ffb69cbe346325d7f0cff7510d7eca8c646c876

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ef4c636c49f04e7005962cdb21f8b7c394405c9b7d52d3cef99f390184e991dd
MD5 635b3435cd03fbd74283154af2d8c5a8
BLAKE2b-256 6d118b27f0765f385f21bbf52cf68380c3bb046003ebab817f6c06ab6da8830b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.0-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 7548cac6ad6f12b96ec0ebdbba492cd6f3260aa5f02ba3e4da50dac18327f8e3
MD5 6247b9c3aef37ec10012256860fae2d5
BLAKE2b-256 532c355bfd8bdd105577e3db724565dd9c2aab03366ae921e7a2bcbdfed8c894

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.0-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 63d228362e47f22f68cf305f9f4904961e291b0ca5d73b165a4bf9a71a68ffca
MD5 e41bc2a4360da60dfb0548aaf9831b48
BLAKE2b-256 edc36091c40e8a22a2129266dd1525c5e86034b4ea65033c30dacbac5ac800e8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.0-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f7794706c5d24f61154548e277bad91ceb920c675bbe9903f0aaeb16d2a364f9
MD5 188bd7335ee366fd7ec5be89a596fc6b
BLAKE2b-256 00159b0ae81e9bd6748344946c5a307fbea8411545c9e133105a15361b0f9925

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d19734bed270fb18b8bb22aac439bf038ac7a8be1b27dd54c64f216dc2aa1a24
MD5 ebbb95edaafc325a7c715c7ccd13ac4a
BLAKE2b-256 475ab2a2458fcc6285485185388ee4739e199a04dcf7c86fffdac0c9900d75d9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 86ecd2ee6b68e0ed98e2976b76f81cca0e757c391f52df8836216b6255238061
MD5 77960c28fa87e9b8d82b0dfa1fbbf77d
BLAKE2b-256 c945c959c022d3d8e3918fccc2c1bdd9fc296d5f07edcbe6ae5d86b46b1350c5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8abd79a3db262a96cbdf206b2764602b8b53bbc76e625984eaa0cb41b160dd0a
MD5 1f587f85e532afec5e09828b617b3abc
BLAKE2b-256 bbecf7d9f164caf1c96cad8c157f5cf028f1a1be213d39381687cc151be2150d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cfd3a798d5ea6e2f01825b6cd91d5339dd9aee358caa729fa97ef89d284f5220
MD5 0c1d06e7d3422af2bac496d3df66be94
BLAKE2b-256 62ff743eeb44e431d34f7e69b265a4b9b7ff02cce6165cf73712404a1bfcc9e1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f4ecae1f48d52c894b59f0dc7faeb5109def96802410aaca9a4632a63d7a8237
MD5 e9930156680e432b989ea37647a54eda
BLAKE2b-256 8037a9579c9836580d3a898e24357cc93ae88d44034d5448033c4bf5719fb676

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6c877ed0244ec0dd7ea986567bc18c9bbdae8150e68431dbf72869c08677e75b
MD5 f157634dc9fee20f85541b274164c6c3
BLAKE2b-256 928b152823f638dc305b3edc93f521dff0ef2d380b2cfadb63186d7da6bd53ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.11.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.11.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.11.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5478669d826fa87ebf10212cbb2692980874f2cf0e5598a985f7ec844993e260
MD5 1bf4e5f258b7831b9471bab69cd9d682
BLAKE2b-256 66a5d62839da22764330bbcc850e020eefa64075e76c521f877ca0334bdbb177

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 6cffd593b52e77a277d2e10bb169bc7fd18916b3279533bf0be6085c5f054ec4
MD5 93667245fbd419a9c1e0acbda8da1c5c
BLAKE2b-256 838cef9325e5815c940cbe1caa44df42e4a160d258be074339221d7191570df6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b1e1369c3a8e31f234cdd6949b9ad1a4d4538139aed75b5efa20149fd4684bf1
MD5 800a744a95c57b1a1818c42e4f8e8eeb
BLAKE2b-256 4d392cd3a47e55b3ea5853365ae34e751e888b250cb2f9911fce0b1d40807864

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 16e905806fc8db54b037d38a11fe070d5fddc418a61502c14bd19e1faa1a15d5
MD5 d1212527819d0dba7ac95159c64d5336
BLAKE2b-256 321b2a50812376fae477170d9b9551301bb6807acb6599b04281a3afdaf693f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 38f467a82f227dd1ba53be03844b8c2705589a9318d2d8a4b5f290eedd511f90
MD5 fa162127d8628fa2c8bed347f902c19c
BLAKE2b-256 5b44aeb5cb3c0380456d5dd4fa5cf493986e0dbc7d3340c57d1a33eec1e254e3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f2655c12961e2aefdb8f02b9b9f37cd77fc62ceafaa76ff25aaad0a54ad1d0bc
MD5 6af1a4ca4748d3db930f82b037539d64
BLAKE2b-256 9154a35c99397be14c44f6a4875b90249e60afd70632068752cb36c36e0fedcb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ac9ae73ad966c524be982ae8eefbf8b903313921fc3985f72bc4afab4363ad32
MD5 626e181b474346a7c4393ec1ce3f551d
BLAKE2b-256 e42fd7a19da84778d584fee515e2cee585ef6ec57ae633ce32da0474cb882785

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 69450848bddbc88703fd6f34946060b3f4155377c1b74f9a940a06abe2fd1e53
MD5 040bbb36731c1d7bafc078972076a837
BLAKE2b-256 9e46038df3f4f1829e87d2ace141318adb205ac5d613b4c84a05a1be9729e157

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 498c560304ffb7f1a3875a22db6f0f3b90f636cd140683e233576188a6106d56
MD5 a6c224ca4349ff4f89adc0ef4cca6302
BLAKE2b-256 e5700b342f1f84036e15406320ca237eb5c44f0ebeddf52d6c1896ce9ae71a54

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ff98a39950686241ba1691b5a110ed26ee4146be962c036d360e7d41a5fa8295
MD5 6bd108615a606a70b58a2041cb3d6ae2
BLAKE2b-256 de3e66fd8930ceba394c920500e12503228a5de603f1ea05fe865b6c1ccb422e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8f51fd166faaf5c45200e1c341ea25cffab4782c433414123979ff7d6f72ec38
MD5 7be08af962ab7a0bfd49dfbb27c956c6
BLAKE2b-256 bdfd6b17c61e34100139506af5dbc5a13b8b108c7f0016978cfa6bcdd51eb0eb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c4bdcc4be409f62a6992b23b86858776fb7130cc8317b4606da165bbabb493b2
MD5 d74764e56a5ce5986ffcdc6eb5d5323e
BLAKE2b-256 5db1f1058debafd048860ca66e9ef1612e45d3388d868206609ddbf908f71240

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.11.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.11.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.11.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7181f2b46d229ce8728a99818c09487509133e264cdf21cd87ad0f76b1508a39
MD5 9408871ec354d8a3494a2f6f8bdcc8fc
BLAKE2b-256 656c0ddcf0c40a81903bfdc8f03e73ac8b16ea627d785c68811e19ed97265fd6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 467833ac3bb29d8e7b191e43deab1de3dfdf918eeef9cfba1ac8966e31d019db
MD5 8ff43f826050881f7d9ec6b19050f3a9
BLAKE2b-256 dc398a9baa339239a6a6bfb35fbeeb75dfdd1d8725a8f2b805ba116245206966

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 36fd6e3441662e77a704cdab61a6b623d1f0a267b8fd232121419e351ebdea1b
MD5 6cedef1bacf17c3e144809e452fa7d9a
BLAKE2b-256 63179e52e5c76461329b3cd7bd26a81775ab05de00782c1881818a2f40e40261

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 5539dcaae92af0573650f2e62fa587727b1c991235d8e78ecac889f7b0c00ceb
MD5 bdc1e55839b803c3ae98a9baf8e344a1
BLAKE2b-256 473104dbabb391c3405f7d5a64cd4129dd4b6989700ea2ddf505783f8892f270

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5e54e9c4686830b5731a41c893e5ed0db2eed731ef25f97252934d842b02423e
MD5 c3456e6b0295bf4c62bcb4228d9f7936
BLAKE2b-256 4e5c9f96e7be4c4f537096cecdf64d364ae3872fe4b8d184989dfb9adfa33410

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 57a6125c4c096b591849c9bfd81dad8d85cbdb66962c338987587076eb461df6
MD5 92d3d487e2e94150a32613fd00f7959e
BLAKE2b-256 5c39728952cc56cad78e00be72b72819efd0f837aaa96e11a4a8fe793c47ed9b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 cc4f58268862f236b751df3b005ac371621ad2fa68f200f0e7847679bff7015b
MD5 a64261a434a80eac386f5e36578bcedb
BLAKE2b-256 3707ba8b54a5a13d8e580b8772f6e3c09f7c23447e5b24367c75fab9e8a8b834

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 26216224dcbeb8c2f989783b657e201c438f5b0b5d28dbbf1150c1d702cfd7fb
MD5 c7469fbab4e8d9a87aecfe600b1ef34d
BLAKE2b-256 5dd83448b08030450e31f4ab10e0f1f646c80d4ea1026e41a5b9daefe806d46c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 432a78559eced947ef36449ed806822001ec80a0439aab5ce60968f4eda73247
MD5 8d69a65b41dd5197967f7403658aca4e
BLAKE2b-256 55ea30749b2c92d9571b94d878acc462bb3eb31af569b44024b1c2b66e7e2f0a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f4feb2c298fabbb8406ad1277fae0737410dc7e59867dec4ba1f730f195c38f0
MD5 a459abcaf88562f11ec117b757573a4e
BLAKE2b-256 475666aced23e3b90eb5d43c63034ebb360a26d3c91e11a26ffbf564ca7953b0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fa9cd13c5655030787f9e1ae09bce0d46d6cb9e462128480ea8d4ea35ca97f54
MD5 166024a30c6e7208b1a7ef50ae91c64f
BLAKE2b-256 8aa3e6461ae64aada6d21c097fde8b0f2cbbc81f8b49a6e41f65722cfa6f85bf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a3802132c4ee917a03826ce9b20a55deb56116a6cb1218aa173ea7c449e8e197
MD5 209975d582d35d88324190365aa3190b
BLAKE2b-256 7f600bc6d86fc6843749f4fcae1ec55762f04b46a725a75977e71fbc7e51a50b

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.11.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.11.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.11.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 55908b9847e18d3634b8e86ff9988fd649d901e89064c1229e2a3394c71edd08
MD5 90a31f8588c5f38036ceb0cafdaa19ab
BLAKE2b-256 80449321df3ea1d3a4c5b4d83ee9ae1fda3a287ba7be800e44382c294634d381

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 168686854a21aad3fcf401593362b0b3df111f946c484de0591726c3ea23770b
MD5 dbb6360df45a5939e28f9e9772d9a95a
BLAKE2b-256 99b30bf7f49635312122a6df096feed627ba8c29653a3febfcb361f54a917909

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 493d251116a07f359eff0827cfcfe8d088c1c39e7e5f1fb9b8f5c15a9308f591
MD5 3f0b3552e0a83a0c54948c198da29162
BLAKE2b-256 1a193a1a2680ac282b7f9b2ba4f8579f5863f27965daaf737fc6fe47e3534672

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 f1fc025e5234f329ba631839261d22b76e99c17e62d6a10d88ff272f1aae015d
MD5 e1fc6e269f28ef253dba671f3fe94ad3
BLAKE2b-256 8152281746fbf2e08d7942f183c058c5ae00d1e50c619dee71f9a499490ea5d2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 74b6d115ddb864012cbdf78416cba916438d6ecd970e3f1a4edfc38d417dccd5
MD5 fb8e352d7e37edc0a6393572af57d898
BLAKE2b-256 f93e79dc9af2d4c9d51b4aa147b3dce20ad2cc69a0393e1af94d932eb36f74b1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.11.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f3083fbae0695182fddc4e7d1245976e9eb7f183b726528f398bf56db56ab339
MD5 19c48b4d181089193cb3725f24bb2785
BLAKE2b-256 06bcfe023fbd4dfbfdd37551cfb21198e2c06b3744cb4051446d87e6bbf8ab08

See more details on using hashes here.

Provenance

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