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.1.tar.gz (186.7 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.1-cp314-cp314t-win_amd64.whl (609.4 kB view details)

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

aioesphomeapi-44.16.1-cp314-cp314t-musllinux_1_2_x86_64.whl (658.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

aioesphomeapi-44.16.1-cp314-cp314t-musllinux_1_2_i686.whl (676.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

aioesphomeapi-44.16.1-cp314-cp314t-musllinux_1_2_armv7l.whl (606.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.16.1-cp314-cp314t-musllinux_1_2_aarch64.whl (646.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

aioesphomeapi-44.16.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (650.0 kB view details)

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

aioesphomeapi-44.16.1-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (590.3 kB view details)

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

aioesphomeapi-44.16.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (639.1 kB view details)

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

aioesphomeapi-44.16.1-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (665.7 kB view details)

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

aioesphomeapi-44.16.1-cp314-cp314t-macosx_11_0_arm64.whl (571.2 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

aioesphomeapi-44.16.1-cp314-cp314t-macosx_10_15_x86_64.whl (575.9 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

aioesphomeapi-44.16.1-cp314-cp314-win_amd64.whl (519.6 kB view details)

Uploaded CPython 3.14Windows x86-64

aioesphomeapi-44.16.1-cp314-cp314-win32.whl (463.0 kB view details)

Uploaded CPython 3.14Windows x86

aioesphomeapi-44.16.1-cp314-cp314-musllinux_1_2_x86_64.whl (643.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

aioesphomeapi-44.16.1-cp314-cp314-musllinux_1_2_i686.whl (667.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.16.1-cp314-cp314-musllinux_1_2_aarch64.whl (623.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

aioesphomeapi-44.16.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (637.2 kB view details)

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

aioesphomeapi-44.16.1-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (585.4 kB view details)

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

aioesphomeapi-44.16.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (617.4 kB view details)

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

aioesphomeapi-44.16.1-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (658.5 kB view details)

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

aioesphomeapi-44.16.1-cp314-cp314-macosx_11_0_arm64.whl (530.9 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

aioesphomeapi-44.16.1-cp314-cp314-macosx_10_15_x86_64.whl (543.1 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

aioesphomeapi-44.16.1-cp313-cp313t-win_amd64.whl (578.2 kB view details)

Uploaded CPython 3.13tWindows x86-64

aioesphomeapi-44.16.1-cp313-cp313t-win32.whl (514.8 kB view details)

Uploaded CPython 3.13tWindows x86

aioesphomeapi-44.16.1-cp313-cp313t-musllinux_1_2_x86_64.whl (656.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

aioesphomeapi-44.16.1-cp313-cp313t-musllinux_1_2_i686.whl (675.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

aioesphomeapi-44.16.1-cp313-cp313t-musllinux_1_2_armv7l.whl (605.3 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.16.1-cp313-cp313t-musllinux_1_2_aarch64.whl (645.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

aioesphomeapi-44.16.1-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (648.2 kB view details)

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

aioesphomeapi-44.16.1-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (588.2 kB view details)

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

aioesphomeapi-44.16.1-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (637.8 kB view details)

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

aioesphomeapi-44.16.1-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (663.2 kB view details)

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

aioesphomeapi-44.16.1-cp313-cp313t-macosx_11_0_arm64.whl (569.4 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

aioesphomeapi-44.16.1-cp313-cp313t-macosx_10_13_x86_64.whl (574.1 kB view details)

Uploaded CPython 3.13tmacOS 10.13+ x86-64

aioesphomeapi-44.16.1-cp313-cp313-win_amd64.whl (510.1 kB view details)

Uploaded CPython 3.13Windows x86-64

aioesphomeapi-44.16.1-cp313-cp313-win32.whl (454.5 kB view details)

Uploaded CPython 3.13Windows x86

aioesphomeapi-44.16.1-cp313-cp313-musllinux_1_2_x86_64.whl (640.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

aioesphomeapi-44.16.1-cp313-cp313-musllinux_1_2_i686.whl (666.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

aioesphomeapi-44.16.1-cp313-cp313-musllinux_1_2_armv7l.whl (596.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.16.1-cp313-cp313-musllinux_1_2_aarch64.whl (615.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aioesphomeapi-44.16.1-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.1-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (591.4 kB view details)

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

aioesphomeapi-44.16.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (609.6 kB view details)

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

aioesphomeapi-44.16.1-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (656.8 kB view details)

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

aioesphomeapi-44.16.1-cp313-cp313-macosx_11_0_arm64.whl (526.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aioesphomeapi-44.16.1-cp313-cp313-macosx_10_13_x86_64.whl (540.2 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aioesphomeapi-44.16.1-cp312-cp312-win_amd64.whl (512.8 kB view details)

Uploaded CPython 3.12Windows x86-64

aioesphomeapi-44.16.1-cp312-cp312-win32.whl (455.3 kB view details)

Uploaded CPython 3.12Windows x86

aioesphomeapi-44.16.1-cp312-cp312-musllinux_1_2_x86_64.whl (645.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

aioesphomeapi-44.16.1-cp312-cp312-musllinux_1_2_i686.whl (670.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

aioesphomeapi-44.16.1-cp312-cp312-musllinux_1_2_armv7l.whl (600.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.16.1-cp312-cp312-musllinux_1_2_aarch64.whl (620.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aioesphomeapi-44.16.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (639.8 kB view details)

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

aioesphomeapi-44.16.1-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.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (615.3 kB view details)

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

aioesphomeapi-44.16.1-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (663.1 kB view details)

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

aioesphomeapi-44.16.1-cp312-cp312-macosx_11_0_arm64.whl (530.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aioesphomeapi-44.16.1-cp312-cp312-macosx_10_13_x86_64.whl (546.1 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aioesphomeapi-44.16.1-cp311-cp311-win_amd64.whl (514.0 kB view details)

Uploaded CPython 3.11Windows x86-64

aioesphomeapi-44.16.1-cp311-cp311-win32.whl (463.9 kB view details)

Uploaded CPython 3.11Windows x86

aioesphomeapi-44.16.1-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.1-cp311-cp311-musllinux_1_2_i686.whl (691.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

aioesphomeapi-44.16.1-cp311-cp311-musllinux_1_2_armv7l.whl (607.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.16.1-cp311-cp311-musllinux_1_2_aarch64.whl (638.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aioesphomeapi-44.16.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (652.1 kB view details)

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

aioesphomeapi-44.16.1-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (606.2 kB view details)

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

aioesphomeapi-44.16.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (632.7 kB view details)

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

aioesphomeapi-44.16.1-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (680.6 kB view details)

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

aioesphomeapi-44.16.1-cp311-cp311-macosx_11_0_arm64.whl (531.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aioesphomeapi-44.16.1-cp311-cp311-macosx_10_9_x86_64.whl (544.8 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for aioesphomeapi-44.16.1.tar.gz
Algorithm Hash digest
SHA256 834c08314883e2fe3625b8847a591001e1f8e4eeebe5387f10b760c2812660a3
MD5 30cb262d6c9022bfdd145817129b6a4f
BLAKE2b-256 25b1ba6eb7eef5386ec42ab43a28a81b2585f6994878b974e51e82416d4b7423

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.16.1.tar.gz:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.16.1-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.16.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 6ab682b0b439d9a4c4c2927646293bf82d1d7d6dd78004fddfa6d257842caccf
MD5 84c8f9c4e20141039e47328ee77b80c9
BLAKE2b-256 629ea4abacfe55c11f7e700130221c3fa7ac189f48e23ca6c36ad166c2cd015d

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.16.1-cp314-cp314t-win_amd64.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.16.1-cp314-cp314t-win32.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.16.1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 1db0700fe686b8320ea2b615fb57686583e9c0c71b6103c66a44429532892a61
MD5 57deaf908d1df847e52e6d51b4ccf21b
BLAKE2b-256 6eef2029dd867d7eeb5b8fea9d0e377ec2a3390de16e8e9ef1596b9af39c489a

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.16.1-cp314-cp314t-win32.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.16.1-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.16.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 64601ea1e2e20dde2c4cb5bfdd80ee85b5f4caeed64ff563f6545edc511a6bf5
MD5 85fcef0f605c55540178a03df66cfb88
BLAKE2b-256 e4de5d194c36d6ae4449676ec626218519e4ba0e03e19134e131a5c72e443dbc

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.16.1-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.16.1-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.16.1-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f4eadfdeeb6301ba55a366f0ab941d7da54aae58421e229a09bad5f52f1138ec
MD5 ed444bbd57ba64bf070c3871e391f307
BLAKE2b-256 e043c558729c7c3567846578ae209cb47f4f3d1e841aa8111380063b3af35b25

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.16.1-cp314-cp314t-musllinux_1_2_i686.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.16.1-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.16.1-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 00774c211e2f621ae6b045797cd4a1435470b85b9a73b94ed3d9a19a20154012
MD5 46b559c79bb526e23fa7e7c77215fe80
BLAKE2b-256 b5c8849e885c0c760baaae2083bb977cd1a52c41478650e2e4b5f7a6352e88ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.16.1-cp314-cp314t-musllinux_1_2_armv7l.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.16.1-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.16.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5d1d7db0475c78b66728f9d6f14fa61784ffe2c47bd258662618342dce4f5373
MD5 b20988ef57f9328783be29e9b7148bed
BLAKE2b-256 ef9a582eebd147be1dcfc7e92539976fafce2c1a927a69e66cdffa9eb064d148

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.16.1-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.16.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.16.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c005fde944588696bc089b5adab8a2789bad27e4f1df524f3e1d7464ce6bd6e8
MD5 009d3b2e59687c663dccb9477616e077
BLAKE2b-256 f3b25f5fe7dbe5ad5591448fc265652ff670b783f17491734d1c8ec8068b03e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.16.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.16.1-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.16.1-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 8c6f3aa9e2aadc10ebb5443a58897a99ed7dd96a0ebe36284642b27f760c352f
MD5 f061099f35c6714bf434c20719b1a1c3
BLAKE2b-256 e1e9b4be21ab4663952d0328b7ce09b0fdffea1be18e4655858815d02b761daa

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.16.1-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.16.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.16.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 374c1315bdbe80c0fe015a4953c77f40adb72b18f26e028116191094f9ab0d37
MD5 dda7608db7975aacd675de1eaf1bdc8d
BLAKE2b-256 ac5b938e7f3590db605af68c7e62985e182b4868f53647b29ca99c38d2137c6f

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.16.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.16.1-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.16.1-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 4b55c0a18d33b53235ba35a0505eaa9f0f5f79a2814d6a8554b62d8e8fc4ff24
MD5 c3a90c66e5dc31f4a0c0edc99e96ff45
BLAKE2b-256 7e9d19dd1b20f2c70eaf1aff3e20b79d4d6d07307e31cfaba10fc9fafef279af

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.16.1-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.16.1-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.16.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1cc19c50df60e0ea33a0ec8dd25f9afdbfd8646d0d3d8bc75178fcafa97f45f2
MD5 c7202464f5b1427e4719a2219e2c7a55
BLAKE2b-256 444b95d34350b40d0d929f50057646013098e242b688ffc0584d1c624ce474c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.16.1-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.16.1-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.16.1-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 9ff34dd2e1f82d6208ac6fd437b8d7758a9a0ed4e11ef9ea03096528a77ad267
MD5 8ec73fc254971dfc952bf7c2687c3438
BLAKE2b-256 684201b988df6ac53391464867f57bdfe30e8bdb30ee1732298415e97c16a065

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.16.1-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.16.1-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.16.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 732471907afe92860d244a0f939999ffd79a4829d56304a588425e0d5079e265
MD5 58d2dfc8c5a8b411460d8ce688cedfc3
BLAKE2b-256 e3ca86e1845eed0997769d3d0a6dbfa5737035cf7c080793cdf1ca6b67b458c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.16.1-cp314-cp314-win_amd64.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.16.1-cp314-cp314-win32.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.16.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 91da1d67e8156d00fef14e69170f3ca19584fc8e0e9370a74a3cfb665943aac6
MD5 a52a75fb1147571c667256edea8b3e42
BLAKE2b-256 620ecf9c08d8b9f66dd66aa20782ce0058d633510b7b9ca06c956a56ea7357d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.16.1-cp314-cp314-win32.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.16.1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.16.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6501cb784f388a138aadd7b0c397016888bea4f59b2f8cfc26282bd85074309b
MD5 95266ffa693337e0533d33867bad3191
BLAKE2b-256 ba786589eef8a5bf30395f9a389c0c39c86da21172d7d145dea6661e62b001ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.16.1-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.16.1-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.16.1-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f5093b9da56b9bc984e8fa6d205f048768f26c404ef68c97403c1e831eba60eb
MD5 aea2f243f5985e33b209200fbca4e895
BLAKE2b-256 cbc353aca052ea7a93d2880123984cb3f8f75b11719ec0cafdb16374656432e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.16.1-cp314-cp314-musllinux_1_2_i686.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.16.1-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.16.1-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 998f614e43b440e53c5119874b2b3907ad6877f81f502e896f432b7d655aebe2
MD5 c71b4ad6cf3f01f72dcffd4b3723ca47
BLAKE2b-256 06e426f2e5e927320db0c4ca0616a670a90ff1f671df5ff316934f3c178aa8c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.16.1-cp314-cp314-musllinux_1_2_armv7l.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.16.1-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.16.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6fffab4b1ef9e27f561b2aa6cda40ed3a0834be6649a5179f2f7d8b7611b4410
MD5 606d918c6f2992b74b546eee52cc58c2
BLAKE2b-256 d3aad7e0ad516fbc901b901153763eaf9d26d0ac5575d85975de03c2a0e11e08

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.16.1-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.16.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.16.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 88d2e55d984db62b0f4de9d37ee54c2054efdee007a8fa7c9d7e44700568f8c0
MD5 b1feccecadf1c34835a9e97485e1fc1e
BLAKE2b-256 2302301d39fb0cb8d3c900e507532f4450f4cce7a19847f773def88443c09550

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.16.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.16.1-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.16.1-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 40db262f57f0f26aa2f9893c93b8f007166c7493a0643a837ee2631eaf78c432
MD5 c500beea25729c01432129dea62ff0cb
BLAKE2b-256 cc22c065ba9e959954102481bb06c350bfa1d04dcb814111bb56a55338ce59cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.16.1-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.16.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.16.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f1021666accf332204a5030f3e30282f25c0ee9d269060be970c5efe03277488
MD5 00f43975ad219abe6a448ac304c4515f
BLAKE2b-256 aa6ab2356e7446baa493edd1edfa3de5593bf3328538be8707e47c4a4e589310

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.16.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.16.1-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.16.1-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 114c4cc8b3da5f216d4767088303c3f0440916c1313d82065d29cdc70a8320ee
MD5 a48eb692222c1e534e5759aeac21e260
BLAKE2b-256 8111fd68d075435af35a6561d8ab8cf0dda00caa48f429e7a01c024c45c47a12

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.16.1-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.16.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.16.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 de910b676ba02abc23cb1ff99586e63f472619a3ccdf9fcac7f74529ae3db173
MD5 1a6186de697bcacda0a010d85d4e1ef8
BLAKE2b-256 daafa6d769798bee7fd903c714a54c496870443d27e2ac38502028a82ad54e69

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.16.1-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.16.1-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.16.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ac6c8822345c3e1d67a7df48bcaa845074844a517737c13cf27d6aa9e22cc814
MD5 6501e0f4b6e75f4f1dd196122da5bb59
BLAKE2b-256 60527ce93f4f994118aaaf2008c0a50a4c93227e6e7830de22b3d8dc841e1c5b

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.16.1-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.16.1-cp313-cp313t-win_amd64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.16.1-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 c5b38e30f2077456a5f5d7323b6e63bc3c62aa6afb4041c8918547256b1a72a0
MD5 2f8e23a938e00ea716f36b8adf882df3
BLAKE2b-256 8f81603d9f57c711bf692734ad47e24d2f840ef6b2a51e134ecd926f74af6f74

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.16.1-cp313-cp313t-win_amd64.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.16.1-cp313-cp313t-win32.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.16.1-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 81dba2d4f920ac1994a7e907ba906a600c5fe717baf5764242b24b4f8ff63c4a
MD5 604b85dfc344ce450f1031648a7d1930
BLAKE2b-256 d4c36d4e11c63f76ad4d1f2e81ece0d95c139cf9930618bc4f082936314fac2d

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.16.1-cp313-cp313t-win32.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.16.1-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.16.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 36143f509d0119b8d793e763d5aeab72cf3d2cdf052302d269af652d4638cf61
MD5 69f5fb78d6da8163fc0823f1e16fcb7d
BLAKE2b-256 22a5f4a61814d8f794e60d10dfcef27acb763c9e698e6d4acdac241e9be23905

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.16.1-cp313-cp313t-musllinux_1_2_x86_64.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.16.1-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.16.1-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 161d3219f36fac8a9ed1e16cee7d9cca5b720ed9009869493b8c38e2d0781d32
MD5 24e90bc03f07e407e5316c1714e8dde5
BLAKE2b-256 8022560e985ff0a30c4abeaa563f315c2ac02a3b093369ec85435923784f17c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.16.1-cp313-cp313t-musllinux_1_2_i686.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.16.1-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.16.1-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3c4dd8fcabc03fa4b1fe99886750ad0c8557b749ae36cc1670d573be8bd35ee1
MD5 175fd085698e2334285e34011a90406c
BLAKE2b-256 92f4d744b1b1226dc0d1a458ebd11bb252a3b31abfd0a189ba51331a6f1ddd19

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.16.1-cp313-cp313t-musllinux_1_2_armv7l.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.16.1-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.16.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f2c17ee031214a5e592bf9a09e091fb7e210a58c7e9e5a58da741107e1c003fa
MD5 a8a7c2ed512852ad4e6776139b1ebf8c
BLAKE2b-256 3a9c73d10aeefe1e693bce7acd7f7ea3e8ba25caf86951dc4f874c0a5021639b

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.16.1-cp313-cp313t-musllinux_1_2_aarch64.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.16.1-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.16.1-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1687f8b0690b525c27eb03c9e373871d87d528d798f713c227a2809b05659295
MD5 88e685ba497ce16d93967bbcc183c10c
BLAKE2b-256 cbe001f8960b717c3ccf7e71a757f21e6997b13d9a8adbc7df6fe42021e4ff67

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.16.1-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.16.1-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.16.1-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 c3949067699fbaf5795feb7c65fd57bfc372ea80245368b2137d287237304df3
MD5 553313ed874d9d05de30a205624fb3dc
BLAKE2b-256 d4cac895ca4891c864e942a2ae1945c1e64f564d8750740cf02df1ba580d3235

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.16.1-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.16.1-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.16.1-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a4d7faab87e75539445c28369c54c0ce7e01cac2070c0c781d54081ee52c435f
MD5 b324825dd90a377be7720860118b1c01
BLAKE2b-256 0d0d0e96927be1d49509ac42d975cbdb03d0ca2adf70efcadfad549dc2a3e830

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.16.1-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.16.1-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.16.1-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 a24467454382d38cb339f6bb0110979f9b71ea557698f989f36f62da4aee3cd2
MD5 c1aee678c522a9f99dc689f461d2229f
BLAKE2b-256 0e7caec91ee6027411712c823c430f5a2d1d99e9a8e6c4327f28d2097f6c18bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.16.1-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.16.1-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.16.1-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e3e145477d7819aeaf638e17eaa65851856241adda8f4d1f8b6b28d3ba8270f0
MD5 ff017ee168d66587a7de1625d32ff421
BLAKE2b-256 0fedec218814c552e0e3d737876f397ef4c0eac9654167434a82422e3ba9b284

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.16.1-cp313-cp313t-macosx_11_0_arm64.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.16.1-cp313-cp313t-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.16.1-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 8d338798e26e6bb4153adf99cdf3710b810c0c5e6dc09c2022d3225786372d4f
MD5 4a7d4ca19ad2f61c11f3943d99a3e504
BLAKE2b-256 6f52ce909e12170f6bbb35e72a976a88343f1627d8ea934bc9907d5f6e5b194f

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.16.1-cp313-cp313t-macosx_10_13_x86_64.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.16.1-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.16.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 ff29aea3b7964babad2836f53a7900d0b92f0ce4c56320c4be5479f6ca417feb
MD5 1ce3cdf629d2905902efc836722ceb2a
BLAKE2b-256 f0715b704d9c145b7b06a04eb73bdbdd892b4fd382a081e309ba73b7236c4a44

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.16.1-cp313-cp313-win_amd64.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.16.1-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.16.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 eb1e9b07427c19c395d0ba4026506dce0e25a657ac9da7fc30f688411f638052
MD5 9188d95474d5a87d321ddbf5acdd82e0
BLAKE2b-256 ce3e15b0c736741be9e63ca62515dc146cfed302df3b8f57d9213369dabf300f

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.16.1-cp313-cp313-win32.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.16.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.16.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a97e6546c567b5d2993d89e35d1dfce4d224da38b89ce824e5596856fe4d6a01
MD5 3b1b340feee21522da0c7211ca3eb0f7
BLAKE2b-256 4d479ecf8ce3d0d9d1c164fd4e4bbaa4ba1ce01d9781cad7d8c87af8c9c08272

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.16.1-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.16.1-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.16.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0cdead68e37a72b3789e6e41efdef2861562f4ad3bb31e5030d6be0355f7912a
MD5 d194fbb49665e98c4f1dac132a2c0f64
BLAKE2b-256 29e6f66cbcaa5f8e0691b022e8e197585930808722db00d719237aa897955a45

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.16.1-cp313-cp313-musllinux_1_2_i686.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.16.1-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.16.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b2fe40dfad437031fb70726b051abb479410d0a7ea8e3a26a875d87da042c7da
MD5 edba6abd9296a974fbf2225265658e85
BLAKE2b-256 a750af7a93c422b1755629e198943e5dc24999ea103446e94f019d9308ccced3

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.16.1-cp313-cp313-musllinux_1_2_armv7l.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.16.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.16.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 177ed5d62626a316a2584bde1a356e1a5f6820346c9419914feebdaf7e56b116
MD5 af6e8f862884e535ccac68aa1c3897a9
BLAKE2b-256 c57c06f8ae830baf036380fad6295170625e0d5f03fdf1ddcc9189cde7b6da37

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.16.1-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.16.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.16.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fcbce9562fdcbfbaea84c065accfbb9149a81c73ff41d3eeb695b029eb05b84b
MD5 2804753039b3080b5fe02857ba2a74d4
BLAKE2b-256 3747c199cf8ca783b3340a7d79348ba17f910b56c8a9afe14de0acc1b50d9e20

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.16.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.16.1-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.16.1-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 184e74424e675f2ed8ccb5a03da7bb18e151b8ce1110000e0fd8a066d32e0fa5
MD5 28673c0d339a19225884129abe0bb3d9
BLAKE2b-256 88bf165ec932ed3eab6b544dd84fd745b1baba2d417edabab3e6feeebe953695

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.16.1-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.16.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.16.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b1364d051f4c671c9d3423e9e2eea180cc0859832b30cc5e4cc433a48875d20d
MD5 042fe3d6b731d8d00361844a161d8670
BLAKE2b-256 d322d54fea84bc84380093eaf8642f1c99345804f22c1d72744c9226fbfafcb2

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.16.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.16.1-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.16.1-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 525986e567bf6861c234a1118744fc480694f05a29ed6cc2839d57f001f1b8b2
MD5 95ce8ac407bb321783068a03afe9b4a7
BLAKE2b-256 47f9cfc86566feeb7356518635131de40277630a886bb9ee5a4c459a691d4c67

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.16.1-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.16.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.16.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 896f8747b248e07f85ccc0d33f7b00dc19aae63057defe40802523b3a7b7e2e7
MD5 ad024de2f5e8751b9b9a99229d24f31d
BLAKE2b-256 a5fc3c6bf3dbf486375bfaf9b8fbc2194b619f3147bfb3bbdcc6789a6ea20346

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.16.1-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.16.1-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.16.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 8c226c23ff119f4f2f5812ca214d1822d661afca70702242ea7eb68b0d47807e
MD5 e2916059b47b67aaa3c2f90415d39e86
BLAKE2b-256 492bd81e9b922cbb3bb0750e66270c7a919c4911b4f0082943e9adfc4c5be890

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.16.1-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.16.1-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.16.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d510c80f1e57c6dea5d9cbbcd6288ca1fe1e1b170fe53902c333c43f6c544b77
MD5 4c4c738df72ec0d3fecc8f51a2be44fa
BLAKE2b-256 a7206842b46bea63b19dd84af67ded545e46b6523720fd74f1f8ad8ba87d9263

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.16.1-cp312-cp312-win_amd64.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.16.1-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.16.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 b61021db47b081cceaa97be5312c2eacf23c2c724e810d66bf4bef817571aa17
MD5 c317126d4b161722900282681ea0d2dc
BLAKE2b-256 060cdbcef280a94b6f30ecca085432fa256d22cccdedab3c39f3e982139806b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.16.1-cp312-cp312-win32.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.16.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.16.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 23bffa23c9a1134e5340b7552ffbdb90b465cd2202829ac264b948033e405fd9
MD5 6db4bedaa5eed6510f3edaefe5ea1862
BLAKE2b-256 8750d976f99639848e72063463f61213676c45cc2fd6e5c3fbd461a352a67f32

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.16.1-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.16.1-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.16.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1989f35f74597d0ccbe9a636bc453fcb8139e093bcb28da0712f61460e7e87cc
MD5 23feb0aa5c9676ccac6c7897913e38bf
BLAKE2b-256 21a46368f06e595142d03b12478ec9cc9b8e0cc8336f828b4b5883917da1f352

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.16.1-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.16.1-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.16.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 61518197087e7f9370d994e3de6992c466d5ce46b02ae66fdcd6569f274c1aaf
MD5 82697a1cb5b867644c5446bf22659e80
BLAKE2b-256 336d8163e1639f26e424200a1d8a8da5882d8b50a986bdc8151695042016dd36

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.16.1-cp312-cp312-musllinux_1_2_armv7l.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.16.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.16.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 982f4f84c99f3c14b07b704cf8e60fa3f9285c15c345f7b4202fb16121a6ff4f
MD5 ab00f4552a8e4d3ee69d95b45140f2b5
BLAKE2b-256 8b2167a7c9a9df09685a79b86b542260c6ad9b2f70880be3b99053d93e02bcf4

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.16.1-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.16.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.16.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c914b9d5e22bec0f1ab21729f48c47360d1c21bf95feb939524697ad9af3ae76
MD5 e6cae1786798e0ac2821a8c3710b5937
BLAKE2b-256 66e242f770aebfff52639c24a6ffbceae5a2ae9b011c6588f447ffd7d4b8082d

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.16.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.16.1-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.16.1-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 e1ad12d602559c29c22c23df6049074bce2892367985e113d240f8f80d3a6263
MD5 c68d1e2d3e579859fc11a6c932ce4554
BLAKE2b-256 cda03302d3f4c745633e21b44e0fad8c531b4022e639b38697f8171ae86f3948

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.16.1-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.16.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.16.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 92baa0fed436fe5398ca4af52b075b05e93bbff3886d059652871df43ecebeaa
MD5 7dd2b867cdcf47cb4950c86689236adb
BLAKE2b-256 14eebe7aa97f31ac25897af3eb71a07df1ccef5195ab96d4658d8677ea31fda3

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.16.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.16.1-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.16.1-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 cc460fe0c1a708dc922a6773321158c1be00927a7bd70cfa63ccb127e74d51f8
MD5 e49b1aa15ce5fdd0765e4a9fdd62b1fd
BLAKE2b-256 595d68321a082f0da1572b2c663555f0a7c19de0c3a8b5eb8e9912cf454da49f

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.16.1-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.16.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.16.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 09ac018df357f7bd8775b5c91d726fedb31acfb25776531aecb641deae4d99ac
MD5 3d6e180a35151dd16f4502ffc53cd8a6
BLAKE2b-256 884a5b1782d3ea0c9218a6f8025c272b0ef0dd8f22e77bc7b3da4a06e9f82679

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.16.1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.16.1-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.16.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9753345f457b12b426d9b81313a40e2f0dd00efdea8d85d2552f978cdeb90a07
MD5 1ad1dfd8172e7346d7a0f8535609669d
BLAKE2b-256 d3df8039ec23b1530dff68bc393b57337d86794cc6ef0d79086ed5fc1908b833

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.16.1-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.16.1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.16.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 45fa4a6e240c5cbf4e2eea9373a71cbddbcd5ecaf1ae2d0797e1cb4fafcdbd88
MD5 7292c878198b83a8367c501192513322
BLAKE2b-256 3aab08c3ff81167b52d819acfcd6f6b908a72f712dcb90133e4840048633be9c

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.16.1-cp311-cp311-win_amd64.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.16.1-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.16.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 b43466daa34e0894471839c04a1bf04320e09840c8859d1f9b42038105ebca60
MD5 96d01784fca7599df25598e39bea8f4e
BLAKE2b-256 9ecf8ddfcfd18e7a5701e9a3ef504f94b5ccaa2d43402510db9fb7b1a8efae16

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.16.1-cp311-cp311-win32.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.16.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.16.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9f3e5e208a088d0f5bde7e60d74fc6ec76ae31d6901f1571b316d49b522b440a
MD5 8f7a87737a0b66f66ce3140982577e15
BLAKE2b-256 500467832e99db1d6ffc4bde2e5940bfb6eba712523318c061161cb60ae53783

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.16.1-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.16.1-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.16.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a0fd02070c42a4b3f3823958dbe44729d91bbab03c240740dad848ebf5bec9db
MD5 91a62e14985640b3e2f0cf8dcd55aa79
BLAKE2b-256 4f64ff3e016caa278544d64fe435520dd9b6095b5c6201af13dc03eee48cfe71

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.16.1-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.16.1-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.16.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b7b1983df9dda17bb376ff67430c7e1416357bc6212b29e626887e11881e4ecc
MD5 1ae48e9746f4eed5eaf0fb3a309e0236
BLAKE2b-256 9582df304a8ada2274d9d540f61d161578d0dd1c7eaf992723f0295fa90da217

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.16.1-cp311-cp311-musllinux_1_2_armv7l.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.16.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.16.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2e9c134720edfe1cea1777517f612412c57314c54ad0bf919674ba03b74099da
MD5 ac3e0b54d88feb1817b8578818245108
BLAKE2b-256 7dadc35dd3b5561b241a487a2c29a069a22346c7873925d64adfaaefdd3d28a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.16.1-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.16.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.16.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 62979381204fae579027094325af469d9b09e17f17522a2e06e1e72c9095f310
MD5 b83584179f1e5f8cb45f62a1d8eb0fa0
BLAKE2b-256 f45723df45457f47d42547f36d49915db4d52a750484dbff76130f79f902a337

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.16.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.16.1-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.16.1-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 935bf3a3bb7f605e4c1eff94fc680889c7f88a5e695cc9463bd0a740cd0f6405
MD5 482fd0e743663c3643b4c12eca31fa2e
BLAKE2b-256 2591e224c29856d3abd298d5bfcf33aa39dda99b8074b7dc719ab56ab9a5812c

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.16.1-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.16.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.16.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 599cb5d4b788a037c2fb326fa3fea7f9c0c36f8edea7cc665eaf6c5c5a459d30
MD5 ba8f4c92778e439262cda3adae6d946d
BLAKE2b-256 70a29ec5ff252482c2dc567cdaac5bf1d96fdd78120b2a92929448c6781c96f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.16.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.16.1-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.16.1-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 e6145e96302e3951d532ccc4a1e4053ef9d9ea10ea6fe3147ca4ad057eaa5e01
MD5 dc4983d855139aaf6642694c29717b8c
BLAKE2b-256 37bbea8594d2c8ff6d60bd969540e69c23beb1c4bd695affdfc43d0330602622

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.16.1-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.16.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.16.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 57cd94e06e9efedf409a19516344d1a2fa56c1c79eced246e60948ed31641c84
MD5 9111fdebd5c58d909199ddada31cacee
BLAKE2b-256 354a3ff40aef5a5e43590077ec5762eb9faa73390680586553e7dc4644ccdf06

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.16.1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.16.1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.16.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fd17325e003b623474d25f12bc1c6b1b5c38c0c859e563f60853d9c9c2561cfa
MD5 743b94847734d5d96896dfa6c38d416f
BLAKE2b-256 3ca25b60d20c12f6970462f858882f62a443d5b1ffcb4ffda26d8e08a452d99b

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.16.1-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page