Skip to main content
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.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

aioesphomeapi-45.10.3.tar.gz (239.3 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

aioesphomeapi-45.10.3-cp315-cp315t-win_amd64.whl (618.4 kB view details)

Uploaded CPython 3.15tWindows x86-64

aioesphomeapi-45.10.3-cp315-cp315t-win32.whl (562.1 kB view details)

Uploaded CPython 3.15tWindows x86

aioesphomeapi-45.10.3-cp315-cp315t-musllinux_1_2_x86_64.whl (744.0 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ x86-64

aioesphomeapi-45.10.3-cp315-cp315t-musllinux_1_2_i686.whl (727.3 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ i686

aioesphomeapi-45.10.3-cp315-cp315t-musllinux_1_2_armv7l.whl (716.6 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.10.3-cp315-cp315t-musllinux_1_2_aarch64.whl (728.5 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARM64

aioesphomeapi-45.10.3-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (735.7 kB view details)

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

aioesphomeapi-45.10.3-cp315-cp315t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (698.6 kB view details)

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

aioesphomeapi-45.10.3-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (720.5 kB view details)

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

aioesphomeapi-45.10.3-cp315-cp315t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (715.0 kB view details)

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

aioesphomeapi-45.10.3-cp315-cp315t-macosx_11_0_arm64.whl (653.3 kB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

aioesphomeapi-45.10.3-cp315-cp315t-macosx_10_15_x86_64.whl (659.5 kB view details)

Uploaded CPython 3.15tmacOS 10.15+ x86-64

aioesphomeapi-45.10.3-cp315-cp315-win_amd64.whl (579.6 kB view details)

Uploaded CPython 3.15Windows x86-64

aioesphomeapi-45.10.3-cp315-cp315-win32.whl (519.9 kB view details)

Uploaded CPython 3.15Windows x86

aioesphomeapi-45.10.3-cp315-cp315-musllinux_1_2_x86_64.whl (740.1 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ x86-64

aioesphomeapi-45.10.3-cp315-cp315-musllinux_1_2_i686.whl (719.8 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ i686

aioesphomeapi-45.10.3-cp315-cp315-musllinux_1_2_armv7l.whl (703.2 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.10.3-cp315-cp315-musllinux_1_2_aarch64.whl (712.6 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARM64

aioesphomeapi-45.10.3-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (732.6 kB view details)

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

aioesphomeapi-45.10.3-cp315-cp315-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (706.6 kB view details)

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

aioesphomeapi-45.10.3-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (705.2 kB view details)

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

aioesphomeapi-45.10.3-cp315-cp315-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (707.6 kB view details)

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

aioesphomeapi-45.10.3-cp315-cp315-macosx_11_0_arm64.whl (607.1 kB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

aioesphomeapi-45.10.3-cp315-cp315-macosx_10_15_x86_64.whl (620.5 kB view details)

Uploaded CPython 3.15macOS 10.15+ x86-64

aioesphomeapi-45.10.3-cp314-cp314t-win_amd64.whl (619.6 kB view details)

Uploaded CPython 3.14tWindows x86-64

aioesphomeapi-45.10.3-cp314-cp314t-win32.whl (561.7 kB view details)

Uploaded CPython 3.14tWindows x86

aioesphomeapi-45.10.3-cp314-cp314t-musllinux_1_2_x86_64.whl (745.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

aioesphomeapi-45.10.3-cp314-cp314t-musllinux_1_2_i686.whl (767.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

aioesphomeapi-45.10.3-cp314-cp314t-musllinux_1_2_armv7l.whl (684.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.10.3-cp314-cp314t-musllinux_1_2_aarch64.whl (731.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

aioesphomeapi-45.10.3-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (736.4 kB view details)

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

aioesphomeapi-45.10.3-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (665.7 kB view details)

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

aioesphomeapi-45.10.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (724.5 kB view details)

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

aioesphomeapi-45.10.3-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (754.4 kB view details)

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

aioesphomeapi-45.10.3-cp314-cp314t-macosx_11_0_arm64.whl (653.2 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

aioesphomeapi-45.10.3-cp314-cp314t-macosx_10_15_x86_64.whl (660.2 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

aioesphomeapi-45.10.3-cp314-cp314-win_amd64.whl (579.6 kB view details)

Uploaded CPython 3.14Windows x86-64

aioesphomeapi-45.10.3-cp314-cp314-win32.whl (519.9 kB view details)

Uploaded CPython 3.14Windows x86

aioesphomeapi-45.10.3-cp314-cp314-musllinux_1_2_x86_64.whl (735.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

aioesphomeapi-45.10.3-cp314-cp314-musllinux_1_2_i686.whl (760.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

aioesphomeapi-45.10.3-cp314-cp314-musllinux_1_2_armv7l.whl (671.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.10.3-cp314-cp314-musllinux_1_2_aarch64.whl (711.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

aioesphomeapi-45.10.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (727.8 kB view details)

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

aioesphomeapi-45.10.3-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (668.0 kB view details)

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

aioesphomeapi-45.10.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (704.3 kB view details)

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

aioesphomeapi-45.10.3-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (748.5 kB view details)

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

aioesphomeapi-45.10.3-cp314-cp314-macosx_11_0_arm64.whl (607.1 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

aioesphomeapi-45.10.3-cp314-cp314-macosx_10_15_x86_64.whl (620.3 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

aioesphomeapi-45.10.3-cp313-cp313-win_amd64.whl (566.8 kB view details)

Uploaded CPython 3.13Windows x86-64

aioesphomeapi-45.10.3-cp313-cp313-win32.whl (511.1 kB view details)

Uploaded CPython 3.13Windows x86

aioesphomeapi-45.10.3-cp313-cp313-musllinux_1_2_x86_64.whl (731.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

aioesphomeapi-45.10.3-cp313-cp313-musllinux_1_2_i686.whl (758.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

aioesphomeapi-45.10.3-cp313-cp313-musllinux_1_2_armv7l.whl (679.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.10.3-cp313-cp313-musllinux_1_2_aarch64.whl (701.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aioesphomeapi-45.10.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (723.9 kB view details)

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

aioesphomeapi-45.10.3-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (674.8 kB view details)

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

aioesphomeapi-45.10.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (694.3 kB view details)

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

aioesphomeapi-45.10.3-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (746.8 kB view details)

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

aioesphomeapi-45.10.3-cp313-cp313-macosx_11_0_arm64.whl (601.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aioesphomeapi-45.10.3-cp313-cp313-macosx_10_13_x86_64.whl (617.3 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aioesphomeapi-45.10.3-cp312-cp312-win_amd64.whl (570.1 kB view details)

Uploaded CPython 3.12Windows x86-64

aioesphomeapi-45.10.3-cp312-cp312-win32.whl (512.9 kB view details)

Uploaded CPython 3.12Windows x86

aioesphomeapi-45.10.3-cp312-cp312-musllinux_1_2_x86_64.whl (736.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

aioesphomeapi-45.10.3-cp312-cp312-musllinux_1_2_i686.whl (764.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

aioesphomeapi-45.10.3-cp312-cp312-musllinux_1_2_armv7l.whl (682.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.10.3-cp312-cp312-musllinux_1_2_aarch64.whl (706.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aioesphomeapi-45.10.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (728.8 kB view details)

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

aioesphomeapi-45.10.3-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (678.0 kB view details)

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

aioesphomeapi-45.10.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (699.9 kB view details)

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

aioesphomeapi-45.10.3-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (755.2 kB view details)

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

aioesphomeapi-45.10.3-cp312-cp312-macosx_11_0_arm64.whl (607.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aioesphomeapi-45.10.3-cp312-cp312-macosx_10_13_x86_64.whl (623.7 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aioesphomeapi-45.10.3-cp311-cp311-win_amd64.whl (579.0 kB view details)

Uploaded CPython 3.11Windows x86-64

aioesphomeapi-45.10.3-cp311-cp311-win32.whl (520.7 kB view details)

Uploaded CPython 3.11Windows x86

aioesphomeapi-45.10.3-cp311-cp311-musllinux_1_2_x86_64.whl (750.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

aioesphomeapi-45.10.3-cp311-cp311-musllinux_1_2_i686.whl (788.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

aioesphomeapi-45.10.3-cp311-cp311-musllinux_1_2_armv7l.whl (692.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.10.3-cp311-cp311-musllinux_1_2_aarch64.whl (727.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aioesphomeapi-45.10.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (744.0 kB view details)

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

aioesphomeapi-45.10.3-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (690.7 kB view details)

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

aioesphomeapi-45.10.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (720.8 kB view details)

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

aioesphomeapi-45.10.3-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (777.8 kB view details)

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

aioesphomeapi-45.10.3-cp311-cp311-macosx_11_0_arm64.whl (607.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aioesphomeapi-45.10.3-cp311-cp311-macosx_10_9_x86_64.whl (621.6 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: aioesphomeapi-45.10.3.tar.gz
  • Upload date:
  • Size: 239.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for aioesphomeapi-45.10.3.tar.gz
Algorithm Hash digest
SHA256 e8f44ba6b1ac9a551775ed8b30c8b86aff1e8945813aa23df7efd46803f8b67c
MD5 2b5ea538bf3fc6ff3966ac00e2dc95c0
BLAKE2b-256 45e622ad09c70898bb0cafd21e3316eada198144cc8885a4ae70cddb0980e68d

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.10.3.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-45.10.3-cp315-cp315t-win_amd64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.10.3-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 6ddaba7e89eab8212ec67ea33bd2bb15e1756992d49801fadac29f85350aa04d
MD5 933e7c7d67fda91b0223706741520477
BLAKE2b-256 54eb927cc5bdc97c22b8a91e39fcd8bb29489e4421f42a038fb7ab31a36391cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.10.3-cp315-cp315t-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-45.10.3-cp315-cp315t-win32.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.10.3-cp315-cp315t-win32.whl
Algorithm Hash digest
SHA256 fd73f75a1ea62e53962e824c91fa1687837650600d744fc12529e4575ed4cbc9
MD5 e7900c32500d0cdeb49eeedeb7b1002d
BLAKE2b-256 e8562f5651ab9ceb4d6fdc03f4d1c3c9860565dbc45953be2eecdab2aa042a20

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.10.3-cp315-cp315t-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-45.10.3-cp315-cp315t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.10.3-cp315-cp315t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7b38d9bb4eb194382333c2ec870990f83e02b0b9364ecde8fbf4180f33851cb1
MD5 3595961993d271dac35ce9bccf05ead6
BLAKE2b-256 a2f179ac59c51fd91605f59739df5986efc0c611e55fb553d20d990f1ca4c2ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.10.3-cp315-cp315t-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-45.10.3-cp315-cp315t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.10.3-cp315-cp315t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 43b190603968acedbff29afb79e8dd93cd2246aa7a8bf309f30d6477d6f07fac
MD5 202ed2c2ec8b8ad4abac4355dfdd6aae
BLAKE2b-256 74c56785b0f23159d1a928cad5f6e9a021feec9d44aeef61d46b8cd89d63f13d

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.10.3-cp315-cp315t-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-45.10.3-cp315-cp315t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.10.3-cp315-cp315t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5750c6e355bfae5e7609ce5b4a4a566c4b2f7ae873217a6f1b88662fe86bd013
MD5 072f7dfd3180cc2293f2c8e987e34660
BLAKE2b-256 f76138736dd919d7f57bf4eab05540d201df3bf2d87d3231aa4f60cf0207e35d

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.10.3-cp315-cp315t-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-45.10.3-cp315-cp315t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.10.3-cp315-cp315t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6e139cb3cc9bd3d44fa192016a3968079a3d7f52987890e287d643e2fc2f18a2
MD5 7ab843807dd90ad4fe2817eb0b19c708
BLAKE2b-256 2c30c71da09cd02ea71210d3b4f9bed2a7bb02a3c4d9b654d3fd2524926bce5b

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.10.3-cp315-cp315t-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-45.10.3-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.10.3-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 96b5c70ad414174612ca45980b206fc0738af61521c8f36f77727f7074ef18d7
MD5 a30184ca3c66d7b61c2eeae7b60bcacb
BLAKE2b-256 bf6286dda08390f886427a0df0371bd9ef1ed39a76f379a9e2e73111149bf2ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.10.3-cp315-cp315t-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-45.10.3-cp315-cp315t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.10.3-cp315-cp315t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 f82e0efbcd884fe9798ed60570fb476713e7fed4dce0e7a508d59a73b15cca46
MD5 ff9887be163547d3f9556b5bed5e1bd5
BLAKE2b-256 17acfcb3d2b4a69a51c7976893e5c03d7c03de979b975567cf4e82a041896ff5

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.10.3-cp315-cp315t-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-45.10.3-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.10.3-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 613f324e498c30da4d02893376e4b999cde3885e6984000d09f7173b438c4039
MD5 a029fb43d8ec6f63e7fa3149dd629670
BLAKE2b-256 069d7e4e594edc1a0f000978d4d6e617e304f98fd70232e8eb12184a4a95c5be

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.10.3-cp315-cp315t-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-45.10.3-cp315-cp315t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.10.3-cp315-cp315t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 6b2237def27518ea39bc74f8e2dce8bcc3f22b276eb662bf83869f68b9a23bbd
MD5 e7df9cda5b0885b2e9c8d9b3ac60c0db
BLAKE2b-256 3da6607746550ce9733cb674e338f8302cac8a775721491755f5b39fd133f6bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.10.3-cp315-cp315t-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-45.10.3-cp315-cp315t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.10.3-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 badd6a6d2a91998d557fcdf88fa7cf2765bec1a186488b86902fe6171204f4fb
MD5 0a3bdafc19085ced4446d8f84f5bbfb5
BLAKE2b-256 e6a3b08922d769ee0431aab1a2eda336655f4546bbe1c335b97ea50825a2abfa

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.10.3-cp315-cp315t-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-45.10.3-cp315-cp315t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.10.3-cp315-cp315t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 fddaaea51271ef76242d31eb0424600731d7df6d36bdd99950640a848835cc3a
MD5 67896d0cc928b2efa18c7c2e9b99ce13
BLAKE2b-256 7bbd0828ca64ecd26e4a04ae4607d73aa60082d17e1695baafb9d7e668c3c7cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.10.3-cp315-cp315t-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-45.10.3-cp315-cp315-win_amd64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.10.3-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 11abe5dfa3849d8906bc1ff93f8c539956d520073d6429364a002afd85d2fea4
MD5 19b98bcc11be94c61e63e0299849cb01
BLAKE2b-256 28809cedc2dc3806ca195f65de7f23aabdad819008130e9c3553c157af2ceffb

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.10.3-cp315-cp315-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-45.10.3-cp315-cp315-win32.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.10.3-cp315-cp315-win32.whl
Algorithm Hash digest
SHA256 14cd99f1da093cb3acc1fc00aa6914cf9aeed23103a4c996dc7e7b26044a66e1
MD5 27b65e74cc31c0f3f8adf3cd606ad8ef
BLAKE2b-256 7aa80455438e38f66a55e890478925f6ccbbd25336e32d92785bba2cc173ff5f

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.10.3-cp315-cp315-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-45.10.3-cp315-cp315-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.10.3-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ee795db6773ab9978d8b0c790045f1176bee2aed5b6b3d8e73fd3ca7e68309b8
MD5 cfeea707501bb2e1e54a7fb5274e2f2d
BLAKE2b-256 096d84ba58c5db5227db017c1752c71f78ccf6e28e784a8ef569fa1ddb949ae3

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.10.3-cp315-cp315-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-45.10.3-cp315-cp315-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.10.3-cp315-cp315-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 738ed5bcf12043b75844bab93e7e31dc00ae2a4f81f71efeed390529c0a9c4fc
MD5 43aba79580029aeec512591c3ad3afa9
BLAKE2b-256 5ce323c735d5b4696ab1f8163f0498f443525cfb342bb490f6d26c9bff7985de

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.10.3-cp315-cp315-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-45.10.3-cp315-cp315-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.10.3-cp315-cp315-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 dc73fbee3b05cf388e504b80f29b35b8c5666edea72c330e16b328bcdab99d9a
MD5 686cdfa44293b4c15d66b7cb2f97763b
BLAKE2b-256 de0ce0110237608cc46271bf439b7429e4eb414b260211bdace5ecafbce0c348

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.10.3-cp315-cp315-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-45.10.3-cp315-cp315-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.10.3-cp315-cp315-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1a35356c31606a28d49651870ac5f6f4de2d13495b7b6162102dbb8fd45758c5
MD5 8dfaf124f2bcf2b8e0add8906a2abcce
BLAKE2b-256 bc5222cff74c65e368138aba1bca454a7c00ce54b267436e8ca7c7ce15808e13

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.3-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 476d9de61b53f0cef1ed3b3f9c380ee3cdb4a8b89b4253f281e36fa3e1605aef
MD5 e3c49956f159fe084648885499dc9ef2
BLAKE2b-256 8efe82c3468bbe8a205a42a476bd9122f7d1daff8bd786658a68ff75a7ec01c2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.3-cp315-cp315-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 fb327a7d25cba6f4e4ef5b0a5813d10cf139af537bcc0c438edf9032dcabb01f
MD5 8578924027273b67dafc6a0738c5218c
BLAKE2b-256 2c5067a8d4ebc9e5186d595115276beef87436f3dc2db5b65fd1d33de90c0841

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.3-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6d6162de7d7dc91e161e3eb0c7201e905aff1a4cad8a0bb6d4ab18e2b4d3a272
MD5 1531d805602d517e91c9174c4e2a3904
BLAKE2b-256 2fe5fd6cc9ca854f462cdf4d2d434fcb6173a4381e52725acba7ca55835e64ca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.3-cp315-cp315-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 d65cc2acb5f8affa2acd3770fcaaeb7804725ff46396779a97f337da33b64acf
MD5 ddbf716ca38278baa0cf4d3e7016e039
BLAKE2b-256 3fed1130ccda291e73a10625d22d36398f1c31d01c97d7ac50d4ed125b1a7301

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.10.3-cp315-cp315-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-45.10.3-cp315-cp315-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.10.3-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 43f6fcb8e33d3bf2231344bd444ee9cb332861ba1a715f10f379bab658c1af3f
MD5 49cfcc325c5b9fb2fd6aa6b3cb8c0b24
BLAKE2b-256 1d90700abf8c03954ab3f8b872d00752c4646e3230cde327fa9d1bc8912cfff7

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.10.3-cp315-cp315-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-45.10.3-cp315-cp315-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.10.3-cp315-cp315-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 c678512be120eb96c1043b906aa85d1de85ab4e31d8ce8ca3ce46d1f8d14b7e7
MD5 42b42a3c5b48ce24198bca15e9017904
BLAKE2b-256 65d6dce6e70bd6ce4fdf59b92d4fd9a312b8d4e65620ee6bc66c1e3caf09dcd4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.3-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 565754aac37c36611822ed67270da84f2fcd226b833c3687d32d67a9c9d7f708
MD5 afe78e15d8288499c6c818bcf2cb44b8
BLAKE2b-256 d0d87d79536d36798a85dec6aa70cf28eef9e7cb4ffe55c8320b0560f9262a9d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.3-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 0dbba2806cad8cb5f39457dd36f33afe3c3eed8c3115fcb8de1042b3c11afb44
MD5 889589b1a2b2e0004c969b184b578142
BLAKE2b-256 3d1f7b90ceb95eb0e4282eb029a1b2d2353d9d4e5c93b5e163ca1a8ac343fed3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.3-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5f434841fff385fd25d9c07ee76e44609d3e4be7a58a7225661d862809081294
MD5 dcdc8c1ae352922a4c0dd9d3daeed3f0
BLAKE2b-256 d8226f1105c04a7b187fb476f974332ff9421ec91997d59b74bb6d7cf494c6af

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.3-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 437d749942f84e8cc52dcc5d2b54de441d1c73afc2604620254bf17efd6476b1
MD5 3513213f1fe041c24db79f8365f39b12
BLAKE2b-256 c82ef9d8f24f4e62661b3546e4895862b62f20906965b5d20472d5ba3575dfa8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.3-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f6465cd6724b38985321aaea0b64cc9ccff1037f1d1c1503fa04ca04890292e8
MD5 9cb61bd8255b7fdcbca70c26173c5dc1
BLAKE2b-256 bd8f80cee94f06de173ad071dc561e904fa190bbe767f9a9e81aa4ffcc33d723

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.3-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7994ff5a2da18f67ffcaa5afd77e77b9bcd128d30c8a1fc954c98be760f87a2f
MD5 ae205a1c36b6873ec656216027a810f9
BLAKE2b-256 5d7b6289723c775bc51ab47e2eb21518caae2d9bf31a3b23a57059e2cc3362b7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.3-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 03bcef99bdd97bde6850852d826b9ac4525c21cc161420974e5e8305d709acdc
MD5 92a1475deda3ad60b4e5991938c8df24
BLAKE2b-256 9a66be184ad707a724642f7a4deb7213e1bd26883411f8b727addfb5a16ac5c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.3-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 962f77eb85c6093fd0873ebb0b604da4196393cd1ae36d6c799e2ced5f1ef88d
MD5 75c984e16818c5ce460b3d6126c39977
BLAKE2b-256 bd4a329bec073287b12be20548c8a304831dcd87b7bd2bafe8d4054ecda9f5f6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fb1e80b8ddea24b4aee3ae5fd8ec9d3185bdc5fd1df41268e8b4c366067bfbd1
MD5 e785a4a4def1056d45a389880a078c52
BLAKE2b-256 f07f0baa3bc0a4f771203aa614b84e70aba4628e898ccdff2d7a4eeca3dc5ccd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.3-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 023d134eb55e3acaf8e7a32ce06ff7c8bfe2a68cab1fef50e9370b8e6d14ac00
MD5 2338415368f26b98a4a155f77833c8a9
BLAKE2b-256 0d85685d35af179b6b5e8ecfb4ca66a518ae96e75892e0ea4e1d301c2d8725bd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.3-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5b9ec729a7c67002f7c8245b3f40bdd928b37824cf59de7d98756042c724bca0
MD5 9ee33708d3702cf405e3253e543cdc63
BLAKE2b-256 5291a4608743a0fc6a30c4c218ff345fe8c28b4029007d4eb8ad3bb3d386099e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.3-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 f94bf8e68f90fb028c3054d2ae12198eb5b319b780173e622ecb73afb016fcf0
MD5 53a99a446281f43b068f7e94f3b4644c
BLAKE2b-256 92dc9301391b3972a00c9759a8feb1f0e4ec3706bd362a76b63807f4543c365d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 775220e5cf576366c6e1427b6bfac75a8570aaf0e396d9f6e3235c7a9e7e035d
MD5 1cc29762a0b7931f557c23317817b870
BLAKE2b-256 bd46b0821d86b2fce0eda24250a2321f8bbfd913ab1e57e9240cf0b67919dbe6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.3-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 77a2afea48bd202573039d253457fe31aea53fbbb636b33d057d3664b0219428
MD5 474fba529d255a86bbfda10e9b83b16f
BLAKE2b-256 06abdebddc993491f522cb5a24f0a9efad98e9fbd888af164f3af1dbc608c2a2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.3-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4e6297750190dac288c29f503d0592e4964c7ea87ab215d625bb173b927eb465
MD5 6a99e6f72ceb3400eceb87875471a4a6
BLAKE2b-256 84f73c94e62a51e55e2c63904d9fb32417c9d5b992fdb3998c54d70ff586c763

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.3-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7d6ea571d17d9a5fdbdc041a2ced6a4a9b27d04ad0312830e61cc14c50feb84c
MD5 f3a2c8a2e818d723752952f33af08c4a
BLAKE2b-256 f51e561ce3134c68b441f60f5aaa14c2f676706d2c6966d3a46effaad6536396

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.3-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6ccfbb81e094ab21c93356d84253f67a23cee0323eb251003889f2ea98e637d7
MD5 3fb6f64e571ad883219b6cc0c2c09da1
BLAKE2b-256 2654bc6ff032952cdfecf85686764e0c647e50f4b8ede25ea5f76b7a5c39fc4b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.3-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a7694f4ddbe6865417b0e9b1e8631bed25f6bb02f5f7cb3ec5aeb067d6cd290b
MD5 4471921bf62f944d7b22fe6caebf79a2
BLAKE2b-256 acb57f1eeb165d7e293e4a7e0ade6eb95c96b3fff70e5461d5c9441e32230835

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b34a18c93910ea7686225bb2af40c1933b1113ca3bd3762001fdf526b951724c
MD5 885a0b9e86f2d8c5d94df0e0a4e572e5
BLAKE2b-256 5dc9ac54d35670df96d98e6509db6efabb0d43103ef0ff877fa7a1cdff97d0d8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.3-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 43c54d5eb6d26f3e57bc05a56647c625090cda77668dae482c1f64c7547e0295
MD5 056beebfc980100b93f39231ae9b9f23
BLAKE2b-256 8bba002653aae5e068ac8baea4df1de978a298f4ab4e9b0f9c47db6cc4fbc1e9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2cc522d919063c072d12af310d06dba01bdb4a03579bd182e45d644634a62adb
MD5 22df2930d220cd2e5a5611fa395ecda8
BLAKE2b-256 63b0b9957a09069bf80d55d5ea64d3aa976e3b32feeddae823d18021211c2566

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.3-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 15ca3d8428e0cb00e8336d58c620fd8995e0a22faf548b19308fa1f74300befa
MD5 a61baaae9bd73a5b887a31f0249b5dd2
BLAKE2b-256 29f1c097b982f6566f05076c32845e2f35698fef592f4bd7571c5cd931aa825a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7c10a5f8ea9269eeac44b471147e53256eabe345b8c6043d31b74b74656a3d68
MD5 2449bdd3238c8fb90f94d17bba04a44c
BLAKE2b-256 e46626d5a9b3ed2a3ddc9a62cc3dc0e3366c266baf4244fc54c090d6a08a0a06

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.3-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 6ba77dc2dd7819882203ded747ffb178db15b21510be08f4e23a713c5d1e3f06
MD5 674dba0a9bb2262632b8274c6745040d
BLAKE2b-256 e23c368921ed473ba3b5aab527635bfd5cf7efc73920f1385ce10f4c7cb2d122

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 62331ad30a545304288da267e4b2180205d7dfa8ad9f780aa21c9d037c8a88b6
MD5 794472929a5cd8033ad0fe95eb941fb8
BLAKE2b-256 b33539cc2ecfade704c08132a36303fb1efcd8e8edbd314c612ea8fa51ae604f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.3-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 1aeae821dabe2467af0a2241434c7a50e8edc4a7fe87aeddc5dcf8cfab1defbd
MD5 7e1cf1eb15f75dad34679a81837c6926
BLAKE2b-256 7d0a66531a9836cedf69f33b6048b4730695bfc644beebf638c60bfcc4937bf0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7a453ffa3c55a901c07a6d81bde8f5bc547e742aeb3548e02cb9dce37faacad1
MD5 0f98edacdee46c363db9c22aaaa3e349
BLAKE2b-256 faaa6ca2557afbe502844bdbb7c4f63774b2be588fc82c25c6bd45d0740c3e2e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.3-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8878a2f54b22265be5ba07da55de958b2071954c68f10ef963666f581979fba4
MD5 40485b5031d47f23f2dcfb9b794e0788
BLAKE2b-256 f7ff4329d1c091e80b95fcebc8d8bbdf998b414233e061b204b8444884e78790

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.3-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7fc7d59bc3486c1d3fe039aec237e3e7b195d7b2da4d95a874e050df5ba18a7c
MD5 61ed576e44f2e1a4e11cc44038b9dc02
BLAKE2b-256 64b004f0bd7090b3272b491f5aca3832168ff62fa4e28961895e1ac28c8698f8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d5ab4739cbae7be516067f56d8e5a0487203525fdf0e417125c86020c7915b28
MD5 658b9643c0ef6d7b8d9e5c988de2c8db
BLAKE2b-256 e76105ee26e49e8e5b0e1d52ae96da0c0eb16824ae97a3b41a4f225d4771e4ac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3a9c3fd02d9b2cee5d2011b57d57ce91c9feaf71b737f3b5012aba2b0e288d7b
MD5 36835cf28f80cd9e9776ce2fd0ebcd05
BLAKE2b-256 ab90995120a78238be1420d5e327ff266e0dc32cf9bfbbad9a5588d35c7d9f63

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.3-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 ff9bcccfa6535cf6b10567ebc082a3634e3ee632ad7491918f8c8dfa6eb37b2c
MD5 df2e04660782f3d8e20f035b2f2d6dbd
BLAKE2b-256 45ae434f8d6f9f4b5810cc9054b63ba5e15cab90a8b34e3526fb17cbffc9d09b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c5abd8ac507a395376d5303ba9722d621891668922f4f6e90812736bf10fd80f
MD5 6414161d27162c2bb3151d1d17df0605
BLAKE2b-256 67b6be9593380731fa1e1c0a952ce2774b4500d8f19696c4167fc9f6a5eb2cec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.3-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 e5d431bf2b9f21e76e0748c23ae79c438e2264a8a4a2e92e1aed7a174c77cf89
MD5 3c3d8005f35f2f12885a94bfe45bbbc4
BLAKE2b-256 2db53099038c861284fd08fe1c0a3af83bf26c30afff8c3de8fd5d84c670fa1e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b780e8c157b3469d9f101802e7476a3a83ef2fe81296c861a1990f71398275f6
MD5 2dbbea58bd70f60021e2c1e8632799e8
BLAKE2b-256 dbc6180e6d2152ac3e2f146b587b9f1ed293fb8327ffce985003fff845a4c07a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.3-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b73369e9a6145f4795f9e9d09cfb440f4da8ba9d17fdf584afb7fa9f6488c3a2
MD5 191b10b729e2daa22e48699c2ea97db0
BLAKE2b-256 3ef6d8efc2747829ea6fc3ef35079421cc20799c5f9f1e6a4252dd30f8ebefe4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 55466102e303824344b3fad960e00a47a04ed0cc27347c753ec8e0640ee9fe9f
MD5 d2625dbce3bd8bb28b28720cdc9763cb
BLAKE2b-256 21d982a5045cf13ba0ee249dfa9ee6f6438df642a647c8f04310e5b2e43824ed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 1bfc40f29a813b4f131e22ae59df57edc06c885a7e1c932da8c6193a0a480875
MD5 4e7b4628d3d29e1973966a7aec7238c0
BLAKE2b-256 b2fb04486f5e7ba1bc12aa7cb9c93a5ed22db097c1fd3418d68e93c3a6c665be

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e7b0dd0dd0d4ac70f0b4a38060694a6501283075f313cc080a8529e318f21ea1
MD5 d8b656917cbcac24da19a3ce38b7a0ea
BLAKE2b-256 84f17e383f8f5b6621fbe81dd150ce6717f6417498d05e5e1d4bebaaad920a93

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.3-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c995e9bf6c5ea23e0c881298ae3749eeb337882eacbac8347919c8449c22990b
MD5 a674788efdcdcf41c7babb8c339f2a91
BLAKE2b-256 1d24d756d6cc0019b5915c8429621064e430b748e5d18c738971d163eab0535b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.3-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7609e3b6241b11ed81568e23c0a872b9d9f809cb60fcc11b503305194e17f40c
MD5 adcc6d8c592bfa58d591f5cb5044cc02
BLAKE2b-256 e26a3895c96e44823f4e1342d57edd8214836efd42296dd6f842bb09d29eb011

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b1eb6aa45848861a1498b492e396986a0cef655938c2eaca22383296c96bc5c7
MD5 ad3d6144dd84b482e8ade7331215dadb
BLAKE2b-256 43d5972dd81aed4736801e2455007e3132e28ce6f102d8115e9d8db4637da5e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7293a139955dfed9ba9b7b818eb359adab0fcad296fa20d0f59ba5da80acf5b3
MD5 6f70222a7da5210b527775b48d7abeb3
BLAKE2b-256 7f33472d72e93fe5cc207ecd5ca76743f4600c5356ea1f96eecf1e4edc071c7c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.3-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 6d1f6ca867f6102a79bea35fe1531475bfb003c99bd52e10d0c74b2f52070863
MD5 a5151b46924c5d3f283c0b586d1ba325
BLAKE2b-256 a6acfa83766b4ed7fbd3e34d8e910e79415e7520b15c8f94e0ca0666955ab1e5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 64b98f1e594be3720db28f6f2cc37feb98ff0f873840a49a854cf0fcd9e05776
MD5 ce9054c962967ee277db0bc293363bd9
BLAKE2b-256 a83b7f3a47dec83e45c526931e1f9e7774881d0bc47bd19e51cdb92fb5d29272

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.3-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 a192aea28597c98d90b07c9d4c65c6f7a8e35bafae302690c3ffa305ccb44f31
MD5 6eff2b6b7865c5bd5fdd36277188e694
BLAKE2b-256 f35c7b2b22dbf8b17d3a0772c3c76e015cedc0f08c6d77b28fda888a2a0f1a6b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 51bf6011f8a55a0fd0e340f9d27dea57c871174e370b46613712db5d77b26bd1
MD5 a5778894cebf006e23e8b47092855c9f
BLAKE2b-256 8133b617b243068bae4ef77abdaa5f50ea2c14f372fde31d662fa03513254912

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.3-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 89fa624bde90a01fcec761e7b93178f474edc3da59ce47b64331e1ef1c959f10
MD5 74fca60b5cc5815228428acb95960674
BLAKE2b-256 72f970ab65feb448779367cfec3148025f4ab7dbcb965d46cce7b0edfd80c10b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e8bc4cbe72287222f8554797ce62e47fed459d53bf8ceb703a1241a997553102
MD5 f2e906560c9b7daa71b10e3450aa64fb
BLAKE2b-256 b87b37d7cc68aeb21e4eb2c5653617032093b8f0a51601e72c59675d9905e6d2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 8a4e39ae62e6d4b72c47880b71d69ff6b782366cc66a8bde4ac0ef74bbc307d9
MD5 945558e8d3d507db0b48c825dd9aee95
BLAKE2b-256 ba2029542c57e8850dd72559f406c39fb25f7919d4fad8d9e532164bcf7e20fe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1643ef3b7442c7f0f4051cd179d5b4dee9cca6186b27bd2d6b3e9c92754785e6
MD5 1c677293f15f6ffc1663e8bd73c8f0eb
BLAKE2b-256 8aea87b723a59c02b6887eeef9169a3c6ea17ddcfae99e64ac56db88d83274da

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.3-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1d5a8a57b27eb79c47aca8b5b32ed501192341e8985ceb7286d883cdd2e49375
MD5 4acae44d32ec645719f6dd7c71960896
BLAKE2b-256 789acdb981b131c634f9d36672c3a825717719315f346217fe6ce7d7fa1521e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.3-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 dc8701f2a685e2292b62300bdb7ae6641f3046f5125ea8945df424513f46e1a3
MD5 ebefbe370969bebe2aa07d84c3cfb2a3
BLAKE2b-256 18aeca3f0bf05fe26b037eabc8d0e4f0ff7e5c78b0a30bedb2780c9daba86433

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5c902f78aaeda4987fd741adb0f569ce426a15df46bfb126cb811f1eb74b34b5
MD5 8f8fb868aca1b4a0d62ff2cbd2ad173d
BLAKE2b-256 7b2bf2043e4ca6c291cd357231cb786033e13eeaed9b27d793f7a823117fd714

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5d20791c7b403d5303315a861cccb0203bc79a01f9cccb526e98ca903ca50fe8
MD5 0e2828ae4cba883768d4e9074ee06716
BLAKE2b-256 ac88fb4230230bf23b4ab71c725a3116a1953152f4e1467ca8e7c322cb3cd734

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.3-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 6ba29ebae3831f0fd0bc76c9be2460678c60fe3969185dfbde29b1b51fa729d5
MD5 446067e3a8c3634ecaaffc46e8efb6ae
BLAKE2b-256 a8336f1de9ab9d41610ed72c53fd27fec238df21a1c793bf4f1b5c142e461018

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9b4410472fcc7e49a5bbdbc222e6899696ba6449d08ba02d79abd430d78ad1f9
MD5 84de6207b2733ceeb7c5b25d7ad010c6
BLAKE2b-256 0d029a038fd0c2cbed32356c047f4e5ca862d8c727363e88d84e6d9738fc7f0a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.3-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 b1f24b863d5918f343432dcddb17b5af2f1130e838560544172b76bcac91a05a
MD5 d2483d0f4a100a921265ea3ce1350f56
BLAKE2b-256 facf5906f11285a31caa2d88f3b248bc7b95be39b48a1b3ae19b49513047387c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b0034bd97aca8d7a96c3f5b33d160f0229fc6573b1049537d8a655296847e214
MD5 196945a8178b0cbc27e36ff579adff39
BLAKE2b-256 f7b730891ed39e7d7dd99d190bb3eacd3b015acfffa46c31eeb157467c5f501f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.3-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 896a4a62518ff21eb658a9447ef6e4b71a6708473239d9f51fa16e016a5bad33
MD5 f8171b0db170efc87c4774d3ef4efc29
BLAKE2b-256 21c7229c766824e3251da653cd2081be2142225460f24aa52c6eca7dd7d2b668

See more details on using hashes here.

Provenance

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

Release history Release notifications | RSS feed

Supported by

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