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.16.0.tar.gz (186.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.16.0-cp314-cp314t-win_amd64.whl (609.3 kB view details)

Uploaded CPython 3.14tWindows x86-64

aioesphomeapi-44.16.0-cp314-cp314t-win32.whl (535.8 kB view details)

Uploaded CPython 3.14tWindows x86

aioesphomeapi-44.16.0-cp314-cp314t-musllinux_1_2_x86_64.whl (658.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

aioesphomeapi-44.16.0-cp314-cp314t-musllinux_1_2_i686.whl (676.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

aioesphomeapi-44.16.0-cp314-cp314t-musllinux_1_2_armv7l.whl (606.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.16.0-cp314-cp314t-musllinux_1_2_aarch64.whl (646.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

aioesphomeapi-44.16.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (649.9 kB view details)

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

aioesphomeapi-44.16.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (590.2 kB view details)

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

aioesphomeapi-44.16.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (639.0 kB view details)

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

aioesphomeapi-44.16.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (665.6 kB view details)

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

aioesphomeapi-44.16.0-cp314-cp314t-macosx_11_0_arm64.whl (571.1 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

aioesphomeapi-44.16.0-cp314-cp314t-macosx_10_15_x86_64.whl (575.8 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

aioesphomeapi-44.16.0-cp314-cp314-win_amd64.whl (519.5 kB view details)

Uploaded CPython 3.14Windows x86-64

aioesphomeapi-44.16.0-cp314-cp314-win32.whl (462.9 kB view details)

Uploaded CPython 3.14Windows x86

aioesphomeapi-44.16.0-cp314-cp314-musllinux_1_2_x86_64.whl (643.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

aioesphomeapi-44.16.0-cp314-cp314-musllinux_1_2_i686.whl (667.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

aioesphomeapi-44.16.0-cp314-cp314-musllinux_1_2_armv7l.whl (590.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.16.0-cp314-cp314-musllinux_1_2_aarch64.whl (623.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

aioesphomeapi-44.16.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (637.1 kB view details)

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

aioesphomeapi-44.16.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (585.3 kB view details)

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

aioesphomeapi-44.16.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (617.3 kB view details)

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

aioesphomeapi-44.16.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (658.4 kB view details)

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

aioesphomeapi-44.16.0-cp314-cp314-macosx_11_0_arm64.whl (530.8 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

aioesphomeapi-44.16.0-cp314-cp314-macosx_10_15_x86_64.whl (543.0 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

aioesphomeapi-44.16.0-cp313-cp313t-win_amd64.whl (578.1 kB view details)

Uploaded CPython 3.13tWindows x86-64

aioesphomeapi-44.16.0-cp313-cp313t-win32.whl (514.7 kB view details)

Uploaded CPython 3.13tWindows x86

aioesphomeapi-44.16.0-cp313-cp313t-musllinux_1_2_x86_64.whl (656.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

aioesphomeapi-44.16.0-cp313-cp313t-musllinux_1_2_i686.whl (675.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

aioesphomeapi-44.16.0-cp313-cp313t-musllinux_1_2_armv7l.whl (605.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.16.0-cp313-cp313t-musllinux_1_2_aarch64.whl (645.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

aioesphomeapi-44.16.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (648.1 kB view details)

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

aioesphomeapi-44.16.0-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (588.1 kB view details)

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

aioesphomeapi-44.16.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (637.7 kB view details)

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

aioesphomeapi-44.16.0-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (663.1 kB view details)

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

aioesphomeapi-44.16.0-cp313-cp313t-macosx_11_0_arm64.whl (569.3 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

aioesphomeapi-44.16.0-cp313-cp313t-macosx_10_13_x86_64.whl (574.0 kB view details)

Uploaded CPython 3.13tmacOS 10.13+ x86-64

aioesphomeapi-44.16.0-cp313-cp313-win_amd64.whl (510.0 kB view details)

Uploaded CPython 3.13Windows x86-64

aioesphomeapi-44.16.0-cp313-cp313-win32.whl (454.4 kB view details)

Uploaded CPython 3.13Windows x86

aioesphomeapi-44.16.0-cp313-cp313-musllinux_1_2_x86_64.whl (640.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

aioesphomeapi-44.16.0-cp313-cp313-musllinux_1_2_i686.whl (665.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

aioesphomeapi-44.16.0-cp313-cp313-musllinux_1_2_armv7l.whl (596.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.16.0-cp313-cp313-musllinux_1_2_aarch64.whl (615.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aioesphomeapi-44.16.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (634.0 kB view details)

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

aioesphomeapi-44.16.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (591.3 kB view details)

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

aioesphomeapi-44.16.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (609.5 kB view details)

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

aioesphomeapi-44.16.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (656.7 kB view details)

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

aioesphomeapi-44.16.0-cp313-cp313-macosx_11_0_arm64.whl (526.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aioesphomeapi-44.16.0-cp313-cp313-macosx_10_13_x86_64.whl (540.1 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aioesphomeapi-44.16.0-cp312-cp312-win_amd64.whl (512.7 kB view details)

Uploaded CPython 3.12Windows x86-64

aioesphomeapi-44.16.0-cp312-cp312-win32.whl (455.2 kB view details)

Uploaded CPython 3.12Windows x86

aioesphomeapi-44.16.0-cp312-cp312-musllinux_1_2_x86_64.whl (645.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

aioesphomeapi-44.16.0-cp312-cp312-musllinux_1_2_i686.whl (670.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

aioesphomeapi-44.16.0-cp312-cp312-musllinux_1_2_armv7l.whl (600.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.16.0-cp312-cp312-musllinux_1_2_aarch64.whl (620.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aioesphomeapi-44.16.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (639.7 kB view details)

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

aioesphomeapi-44.16.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (596.9 kB view details)

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

aioesphomeapi-44.16.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (615.2 kB view details)

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

aioesphomeapi-44.16.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (663.0 kB view details)

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

aioesphomeapi-44.16.0-cp312-cp312-macosx_11_0_arm64.whl (530.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aioesphomeapi-44.16.0-cp312-cp312-macosx_10_13_x86_64.whl (546.0 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aioesphomeapi-44.16.0-cp311-cp311-win_amd64.whl (513.9 kB view details)

Uploaded CPython 3.11Windows x86-64

aioesphomeapi-44.16.0-cp311-cp311-win32.whl (463.8 kB view details)

Uploaded CPython 3.11Windows x86

aioesphomeapi-44.16.0-cp311-cp311-musllinux_1_2_x86_64.whl (659.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

aioesphomeapi-44.16.0-cp311-cp311-musllinux_1_2_i686.whl (691.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

aioesphomeapi-44.16.0-cp311-cp311-musllinux_1_2_armv7l.whl (607.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.16.0-cp311-cp311-musllinux_1_2_aarch64.whl (637.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aioesphomeapi-44.16.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (652.0 kB view details)

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

aioesphomeapi-44.16.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (606.1 kB view details)

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

aioesphomeapi-44.16.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (632.6 kB view details)

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

aioesphomeapi-44.16.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (680.5 kB view details)

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

aioesphomeapi-44.16.0-cp311-cp311-macosx_11_0_arm64.whl (530.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aioesphomeapi-44.16.0-cp311-cp311-macosx_10_9_x86_64.whl (544.7 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: aioesphomeapi-44.16.0.tar.gz
  • Upload date:
  • Size: 186.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.16.0.tar.gz
Algorithm Hash digest
SHA256 b5f39b7d2553a60c4f036aa670c05c2fea3709818a8a55385575b08f31d45672
MD5 ab4928b537653133576e3e6a8ae833e1
BLAKE2b-256 162a01e665f39e4ac2e553ab9b79e07622951b4003df5fcaae7173abcf2e7e10

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.16.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 1c2421572b36c699ec1ac16fca0e23f9069ee4d0c1089f3dd17f74a33f7c12c4
MD5 6756f1e6096068ba00428035b9ec1a92
BLAKE2b-256 5f8c76fc060060abc57286a74698b8615e0f0d3bfc63e9bf609a9375a09dccc8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.16.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 cfc4eb04e0b77a0de969f3702aa8dab8818956df30245a93c6b53eb0ddad0d4a
MD5 46bc5240e9eae3b5e3c011b65fb823a9
BLAKE2b-256 d16bde3d7a0652cb11fad4d759dbaf63f0786fc9f9446efd42b0ce725d8aed18

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.16.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0573aff24a6d0abf1109d8611b532018bbe94ede743c002bf6b69ad99b4e65e5
MD5 04990ad249f877754c2eb06157fa41ed
BLAKE2b-256 c0166e9d095e78cfde28ca16957b397db0537e6410325990d3c638f360d0d34d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.16.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 745b7d5b239ab65818eb69b52c594575924186d6b2f9580b47b9d81df41b6e06
MD5 63b0fb4455268cf56d76389e77c5b6f4
BLAKE2b-256 30b77bbf7160123bb5ba0772104957bd58bdb7da11c34b78a0eeb592e7bb87b2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.16.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bca0bf6761a902427d6c94d6b62e1b2b37eeea04fb6c7caf97344e4cb6688a63
MD5 8a86edc8ab539a72319cc10963dc3cde
BLAKE2b-256 532bf65e6e7803c0adadf1286792a9dc7bd58982e2034743297c1d6ece23027e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.16.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f5432ca6b72751cda4401e5ec53f5a5e20387e7f3f66fd8673bfcfc99d696fdf
MD5 773d1899cf4fc2a5af20c0d5b813499b
BLAKE2b-256 ddd0036e6bacb4ba7df632e10d982eb1189686a31d2522f815ebfd7fe8893cb1

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.16.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.16.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.16.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 26a6340e9f0d71d0d6d5bdb183f8b02838481e95f501aec3627d06b6035347e1
MD5 db65e03d835f2774f32fe00bf8619d73
BLAKE2b-256 df12065968afeafab4ec03592b05a314f0c7e38f967086ad05fb3ad140fe8d0a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.16.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 1cb714f6b43634830a1a8309935f3244c5c6820f41b82097139992fc930c375b
MD5 895be759c52fedc5eb37ed8ab6f6905a
BLAKE2b-256 759af6630809231981e56ad738de9b5a67127aff8e512f33300b9c8acac7c4ef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.16.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4e9b33ebac177ae3e5a40d812adb16c2020b622385aefd5d3927faae9606063f
MD5 220b61903c0aefc4eafadf1893767a55
BLAKE2b-256 4d8f78b96ea6586ec0769da0c36e6b3f02126673154ccaa58ba64bbc46c13751

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.16.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 335842496acedf2142cfb686dbc6564f4ee933bcccbe88525a96aaffc1757488
MD5 163c3424260c4d8a883ea7c24a8a93bb
BLAKE2b-256 1c1fa8b63376a711da9d9177409688fa1efd6fb256b5a39110259a1b148ba393

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.16.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bce08564be832c3f60649824cfd435397160bb6ada17a112238e8cbafdf11924
MD5 23e432485d7fba97990ece4784c0bc23
BLAKE2b-256 b45d11ffb9d8fc7921b6d52efddcd363a5d5240b40dcd0be6273a544efed20ea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.16.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 1c0c692599b2ad2d46bee5ed9ee6918b2658c8b80236438375a419915cbb6669
MD5 9665812a51967ca27777e4921e7b7a9b
BLAKE2b-256 7b23ba89d1d628a53bb4473d22b35a1517904983b9d99d7858faa098c1ef9a9f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.16.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 a4a8f5832281a4e8d060354f9a809666eea24031e389393350655d6d645736b8
MD5 50ac337bcc484e9075d3df0ed2201ff9
BLAKE2b-256 7b6664f07165aba92245295e91740d2008f85f263f90991302cb574327fa7b65

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.16.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 792080d307cebe19815d9d8a72c1fb34a685d29456f39d1ba7a338bcec6bbb6f
MD5 c7ec84d293e17573b68bedd5c06b77c5
BLAKE2b-256 60634eb57f7242032d56deae2cfc1d208ec2fb7e215a86a19ff922af620ecbe4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.16.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1dc6021364dbe14acf058dd4a57e474c272c78624675f4b4326d2cec714bd971
MD5 aa2be406d334302e5cac5c0b99522962
BLAKE2b-256 724dd60335b35ade843b48fae44b204797a9791e655924b38147b91122a0da1b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.16.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 61d4b752117ed3d7a136b878d8a2b22df46cb00520a7d8c59c392db713c0839f
MD5 665c44f9eb98ec7edc21524bd54855ef
BLAKE2b-256 f8b6cfd024a839049a511e1252bebbd886f765eb34e0e3123e7aa6a2d91e509c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.16.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7d467c8a34f2fcef1afdf93c226a23408bebb8a840a2d953fb70ea1de2f191db
MD5 239dfeec4dfdec9ea432472d46430cea
BLAKE2b-256 a027afd125e717df7e0a36efaf721321d8a652351f1bc925b6716007e2f38f13

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.16.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 466377f9caaecf1196ae994d99e87b8ef5f0bf5b2540a7a4578bf5a8af37a499
MD5 b7f3faf56b066a88c149e8858faa2150
BLAKE2b-256 e68e0e2a4b73a4e37caa39f74c02877e9ef05f7f8696f9acf1862794e608c2fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.16.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.16.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.16.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 718f7435c708a91de89f8f2eef301d5f1277f81db76933bdda07fc0ed6249121
MD5 95c70ba5c72f3e787f7a4f97833a62cc
BLAKE2b-256 16635bf6d8887091877223a41507427f0523260a7ce6074c61e17d7c498b9d42

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.16.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 e4a9551d06caa974261f57c73444f5372f0e9edbcd6cc2b762e50e01878cc020
MD5 6ac67160fef181f2d90ac7ce942d45ac
BLAKE2b-256 4ff22d994a51a21c27b7299a9fe398ded7604351e79815d4e1ec3451456d1654

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.16.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0b938b3908c3175ddb7884561e8ad16cef2554ba4a336616f6552eb32f6dcf99
MD5 57124669c441d3d349178662e0357c22
BLAKE2b-256 aabd79c3e7d55283e4b0b7d502ac2a652a6af06da775e3d9f6a45613e615433e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.16.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 78fb5550fd0dec2ae983b699dcc8be3a65d11d6437574afb55fe6b3428c3fde1
MD5 f11e444e1c095831a23de5135ec3a5e8
BLAKE2b-256 06452654d1788fd81aaca671c76b3cf61352e9e94ed7bcc98f7268df5fd7a07a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.16.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2956c50a7f8597ea93dceb767b41bd337c1004c91d1c71c6be43981e9def815d
MD5 dd6f7319d5e3f86397d34e82d364b3ee
BLAKE2b-256 2d7db8959fce863c52c949beae927ccd94d3e759579eb752a19e0a12511a274e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.16.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 64131641d947211720089a2f6c42012308b172a084a569b0b52b268bcaa4430d
MD5 7994cde5b0165db4dd39bdfa65866fed
BLAKE2b-256 d2070c18d2cbd83af17a2c98ec4d28a4299f266a4536afbfd022723966b80439

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.16.0-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 4e3a207a332e68f5789b07c60f6207beda8af355478c26b79ec4a396e21d8d4a
MD5 1b9ff83fe98fc9e3d296d1f6c4d3cd70
BLAKE2b-256 4e7f1cf0aebf673f894c816509b939e308aba4f6aa3d7a05b3664527ccc85c37

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.16.0-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 0f3786bcdb97b1b8d302931fc2df078a470cea696e7dce2c08db0b54beb43301
MD5 8b9ee4a5fbeecb76867af472e2625268
BLAKE2b-256 b3dc42a4261f16105ae063627939ef9e97e96aa1a140f26ebb9615c6845bb1e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.16.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4b01c3e9783a8c586d90400cb06cf08b11ff08fbf2b8dfdcdce678792f8b9e2c
MD5 c604685cd689533c24c314d38f044bfb
BLAKE2b-256 6dcd526409b9bfb54aabe61f562f3f48a804237373b794467373c5e9f1c439bd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.16.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d45bb1583055096d8d9bc07b494398e3f99d6e960fcb8db7f02a36074b724a9e
MD5 d803c9e91ab31aaff93e812802fe1cec
BLAKE2b-256 284891987f87f64dbce2cec1f7e6ce1d4c69a9a7389830e967b04d506bb08f51

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.16.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5f7bd5c249239ebf155fb9f335645abd797579af84e45c389decc702bd38eaed
MD5 e717eeea01287da3a06c327fba7903e0
BLAKE2b-256 356c47602c9b560fc92de7b47ab54d3a79db598d5cfe19ffd5340c49ab2c231b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.16.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9fc4c3d420ab5ba82391578dd135b71a21c026b15792dcba5c5cbaa19bcef2ad
MD5 4d7126f499a964461db8463777a295f3
BLAKE2b-256 8b6a31df7c456a08ad62db22c5665c6c4310522ea7e88272ee4e41f955806723

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.16.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.16.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.16.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 738c2bb1a4d5027699481a60f0633e63729a06eb8386ab80a4b1b3dab41a3492
MD5 7e0e7eb627b45d295d262880578224a6
BLAKE2b-256 66cc185eba48524121aefa84f7c625c603876aff42fb7996b82bda0099771603

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.16.0-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 1ad63e4be50317acbe16a290175b6f3779d499d3a80c8388161274d767d14528
MD5 d6a1b3e28edb410c697349179a5d8462
BLAKE2b-256 29518c88934da257492e138c7e95053fb773714a1a5fa9de9962a494bed83e39

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.16.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 656be9b85483f763e3590eb364c034cf3f8bac9e1d1f0337b4d1fb974fc0543d
MD5 f4013f6a0c3d92f4ac39ca6ff50cd485
BLAKE2b-256 33e660b9f2f1e357e76615cb475de0785b96dacae4e9c1b402216aeb3d36dec7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.16.0-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 923e2f37ff4cf6a30951deb7891e48d5ba043d165514434094b557b79c7cf7a2
MD5 fd160f29c7a0e8552e4029c8b4f2770a
BLAKE2b-256 3509af4e5faec88ec66044f1cff948dadc4f7dbbd3dac82695cae117817539c2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.16.0-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7e451f21f9bcdcf8bc943d6e5afcb8b5047b545746adf8ad5af4bd4d9c0cda9e
MD5 7fdeb4d02fb83be7df5a8b3df84406cd
BLAKE2b-256 6fb7ac1ec301cfa480ae1070e6fce2baf587a751bbecbc2a5b0fb07cd6bad914

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.16.0-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 94b8543e23613235ecd3c89779ae19e70735b1a9bcd3b0e148af002704499d49
MD5 24e151e468a678007640a8807b024579
BLAKE2b-256 a245ab97e69d9ce990e2df471eb6c43c4c0db4664a8e92a830fecb2c1c2548ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.16.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c31c31ba3a95dbc0f1ae0c13efa152edbfea7c3ad6a28a42262d91ce5af78bc1
MD5 074d36636e5d54657c5294bdab1228a4
BLAKE2b-256 48d54486c6afe86db9e84e964c96ee2d88fa5747942abe21d66e946fe100783e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.16.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 d794f14486910d2fa642a96fd49a2ad47bb6e7440f45075accb138dc25eb01d3
MD5 ef47a116da7dea419a45a052fbcb3704
BLAKE2b-256 c36170b9f6c9541c3c398b79b2447c0cd681548259d1321c696bc6c83bb81518

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.16.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1428bf51d0e01feb4225be38beb318b63c5b08b8f78ca7beadc9f559df18b641
MD5 ee0a3ec941178a88699708fbc59db08e
BLAKE2b-256 6f7965a56a6c7dd196489a5c80cb49c9d9e5687c8f5b9cc4f9f24ca96d2558ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.16.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2c83182349f01f320284de00777c07375d33e3b0db7921cb6e205df0185c1a6d
MD5 8b9f1fbe8c124dedf09eeae52aa76eb0
BLAKE2b-256 bdadd09b09a812b57337f12804dc61d615f0e8ed3d68e3bf526c50910ca62973

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.16.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 aa5c42cac148581d2115dc67887a5f1b47095f63b9c6d2f7506c8899eb278510
MD5 eddb7b3e3f541a0a8fcac2078de6c098
BLAKE2b-256 a220710e649dc4c3c29917c76df1b3d32e9e0a7a20a4f6be3f3dee36e87469ee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.16.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bfad20560cd6a6831d8459dedd88c3a0ae5a69ffcd5c9b606878405bb46aeef4
MD5 c20b617fe73edba7d44890c1e4ae80ab
BLAKE2b-256 328659b8ceff43a6c1dfe8776e1e000d891f031bf6709ec163969be4d4266d8a

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.16.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.16.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.16.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 07b4286879c14a01bffd69e56e4635be65a33d082f849b5ba859e6ec6db46cbd
MD5 60abc0f0a2f607fdbdbeb7e5fe9dca11
BLAKE2b-256 017156c66182331318816530af01381552b33515d85f78255312bd966ff1d333

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.16.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 b8d88fbcf4f15a92ada2025958154a8a2f64c3119c188c2e2be13e7b7c837e43
MD5 91411210f8a9200f1d5b65eeabcda766
BLAKE2b-256 a84bce9baf04f977a493774355175cce57a724bf0727ada3765d4728d4bd3d1d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.16.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9224b9172e94bd888ea97a5fc9a7c932e56901ea7fbd1cdf5ba367fc13063535
MD5 62e51e641b9e07d3a292b45008bf7b8f
BLAKE2b-256 9259143f15e907de645af11afd6bfa3c31ecf3d26710566eb527c2b250e12b16

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.16.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 a8ce2c128af5913eb46c19109407c0631fb447cf03afbc3ae430d5d6f450a7dc
MD5 268ff4369c17d59323add1ce166fcb96
BLAKE2b-256 135b1d500bb85712425f1abdae886b2e39fe4869743355a0c66faf6fd403a181

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.16.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b7e5adb07ff1d0653f23b91e0b400d2bf013abc73640f805557d80831794fbee
MD5 2187a5cf68ffb2fd1fd2dc27423147f5
BLAKE2b-256 72db3124074db93b53f04755e4b2b2280ec65b253e508242ebc9944c82125da8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.16.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 61269ebf28f7ec468ca04cfbae98f79acbd21a095d87335bc2e5a8c3921df765
MD5 58c8970044abf10ca6ad9a5d5671c3a6
BLAKE2b-256 c5758f4a41f41def394cccac132a19e315585689b4412c1ab1d4539fe06427c9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.16.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 872e6a854854b49da101775636fcf668f93d0bd7aae6cfb67f27a8ad36bb73e5
MD5 27af3c00ae820b24f9a5b57f70bb0a1b
BLAKE2b-256 460459c0c1480232c90da4960287e5cbaeefa81f8c8e17e534fa21445ce252b3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.16.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 82d5374ace40c37cd075ff8ffd4280a176791eea0df713f09a1e49c47bff897e
MD5 56a6c8bd1d1b90421fbc04317dfd7075
BLAKE2b-256 c12970b3cb851da67f7657f328caa3028672b35bb92060ca91c4750a499246df

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.16.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8ad7aaaf46c530051f0793ea97650ce8bdeb6a89aead8a9c27214bab03d2517d
MD5 439a4126f9fd82ccc65d9a30cc69fb10
BLAKE2b-256 3f0b935ddd30f2501c936ef463235274f7a0b737138d47fbaf02aad4a92c4423

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.16.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7445a1d4198e0c6b3e102c161552870e927c204d992e77b8fefbb4825f122868
MD5 bc841abb0379d568cdd66f5f64e5220d
BLAKE2b-256 951d9bcaf632a53d268e05198dacc04995ec1dd505b3afb0a8b082d9907d2cd2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.16.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2eee88b7feb5e99f1b104256e0f910bee3c4511aff47cfe1d8836aa828db5fed
MD5 dacb40f7e68f5b62560052888401162f
BLAKE2b-256 2c79c07f44cc4a50ee2036cdd6b07497055e0dff5a96845d6960dfe14e5fa8fa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.16.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e59aabb70fff7f53a0e62f582d3d76ec3d2d2a9c43da13d22fe3610e11c3fbcc
MD5 1b64d0ac8c89b4ee4549cdafebb2e233
BLAKE2b-256 e5e41465c5747abe42199213885547e8fcb646696d168ccd085a28c49b51c2cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.16.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.16.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.16.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0c1f9eabc241fb4157d226517f7dd7d68fa887e43bc1890c66bb1e98115c0dec
MD5 78426195bd1755fd436569302f76917d
BLAKE2b-256 428c929761cc021a794d61d12f063624fa6e1a9f7e5b708c929acf3eeacaa7be

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.16.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 8126355dba52bef25ac74486778bc10dd3b38d934fd14d315cb8ade2d4091971
MD5 624552f2879775208c17bcbd9940fb77
BLAKE2b-256 72790aeb2070b3a22c50c8c48533e8546e01f73099f7110504515c34d4e4bfd6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.16.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 254eec6f35fc1fd0a3ae4d08a8c588f452527287e3a82f447c7cdbbd5430261b
MD5 06239735a6d469413f0c87719862fbb0
BLAKE2b-256 849bb0defb5c8e4eba0cc1e24b71bc76a687f082c968f6fb1de352efdd74bd42

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.16.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 c53e39afad458061a5d5db8bca0446d7c99a05f4f89c4b8e23c9633d29403ae5
MD5 d7866bf5ed0839e380110d1ecf0af255
BLAKE2b-256 3719c3a132293d1711931105007c20e21fad3276452a3f11e92feb7dccb3a6cc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.16.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 20f0910cfb2276d35987ebeb7ec70f1a170479f0c247b05c8d7d341a83873782
MD5 4a9aafac884e6d987d2e75f62426ca45
BLAKE2b-256 de535aabd645ec8df05fe112556fb3f437ca6acfe458b5b696df1297ef1d4cbd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.16.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f53066e83cb3ffabcd9ddec15cae80119e7174dcaf88966c2e298a531ac790ed
MD5 cc74061fd6fa31d27d0151c8fe1166e9
BLAKE2b-256 c7f656521f95da77da3288bf27f0b0c0a4114cb2d99a5a701bcdffbbac1b95ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.16.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9b5b6a852f41cf5af70c4eec1855a613212c1cf3848e73b88bcb3d7d1954b3c5
MD5 1da436ef6ed9903602b7ce17d178abad
BLAKE2b-256 a1f44d523dd7fbbec196a0996baf7e33a6141755d466f60147f1c3c9190958da

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.16.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 da6480b6d3d398ece7ac76700f0a5c069c4c60c87dd00d2779fe2342eee4b298
MD5 72014a1c314e90a001e46f701d4ca07d
BLAKE2b-256 543d649c6d3eed1f070f9a6b70f2d624d0828efff8badf21ba5e2854db747eab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.16.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f73b39f434c4a0309fc89b50f2037613ede11b1b82b79f5a6586d5610d54d7df
MD5 784b3e31ddd67d0000843f2ef3ddea3d
BLAKE2b-256 b1d21a619682703c9de885c5a6c746b8a95a40b02f769a46ec0656f42192a440

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.16.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b148e4231ba66a23d132bac29e66238c99d7d13e0ad73224cf839e301b469fd2
MD5 8e040de8908702338d5cd942623836ca
BLAKE2b-256 c03e0030cd556811320ff9a5b46f2510fd17872308854c0425d291d98f12f7a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.16.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bc5c43a2d6d61b0c63634d8ab232e5336da73cb368b3727762b98c8fd2e8174d
MD5 71d10cbdd5c4261d63414305f29ea3b7
BLAKE2b-256 ea020635ba27471142900604da32ce06aa75b5596e0e7a625c7f357b853ed9f3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.16.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d4969766cd2a3c8596d65fec69e419aee604def645ac468e6fa1a6a4f0b7b972
MD5 e2f164f80056d72d3b315fdbae26fd9f
BLAKE2b-256 d2d84daab42746441cf7498fa9591785a8eb0b40060706eb9b483524135df23f

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.16.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.16.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.16.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 98af380f3b62cfa90090a1d1a9986c7f0573fe4da5f60a171a07d53a3f1b50ad
MD5 c0eb6dca6db5b29b25b619af07648f1e
BLAKE2b-256 c985b6c102806f4f04d2897eee198e16401dd6aa5df89a3ca0ab5826631f5cdd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.16.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 ac9baa1beb85170f3eae8397b60d380ec6339b6a17dd4f52de0e6c043e420a40
MD5 4557cb802aa0a2c0903112e3a63bc1d9
BLAKE2b-256 bee7a3ad043b292b0ba9a033108b3f14cecff12449a2ee34de1775870d83fef8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.16.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1fed15ab4c0d91cae68cce2a0ed313247fbd03e131de3646c2d60c4195798178
MD5 67305e48cb9c01003566eedb4d5c869b
BLAKE2b-256 332a2c29dcc43085fb208ede842eec1dd0ac438bef27a3ae6f380d2a4d041aa3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.16.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 80025b98407fa51857ab6423f4d004508b5996ffe324df874af9d0e428cedf13
MD5 4589dfd9ff386750164f77cc0fc4159c
BLAKE2b-256 5e1fbfdb53564eae4f0edf1d3b9a5f287f33bb910c4910efe74b7185fc68736e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.16.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a4bfcb1039cf82d16a8bdeedd4bf7a54488ba42a16847f8c9ff1715a0cefbc09
MD5 28879a7ca745d717592919cfcb2ac7df
BLAKE2b-256 522b2061ff1e547f15cd44bdd75ed380bcc4e8d6d9755597a17c0213475d9791

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.16.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b2b4cca7f301a88a51572c59d557f48e5e34b7674913620e61b54d1f484c4f59
MD5 3a409b849666797e0355b2e912bea533
BLAKE2b-256 e6e9c4423bab807f23e69402173ad0fa1d3930f2534cc25c79c938926dcf8f93

See more details on using hashes here.

Provenance

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