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.0.tar.gz (232.2 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.0-cp315-cp315t-win_amd64.whl (607.0 kB view details)

Uploaded CPython 3.15tWindows x86-64

aioesphomeapi-45.10.0-cp315-cp315t-win32.whl (551.9 kB view details)

Uploaded CPython 3.15tWindows x86

aioesphomeapi-45.10.0-cp315-cp315t-musllinux_1_2_x86_64.whl (730.4 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ x86-64

aioesphomeapi-45.10.0-cp315-cp315t-musllinux_1_2_i686.whl (713.5 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ i686

aioesphomeapi-45.10.0-cp315-cp315t-musllinux_1_2_armv7l.whl (703.5 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.10.0-cp315-cp315t-musllinux_1_2_aarch64.whl (716.3 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARM64

aioesphomeapi-45.10.0-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (722.4 kB view details)

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

aioesphomeapi-45.10.0-cp315-cp315t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (687.0 kB view details)

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

aioesphomeapi-45.10.0-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (708.3 kB view details)

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

aioesphomeapi-45.10.0-cp315-cp315t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (701.5 kB view details)

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

aioesphomeapi-45.10.0-cp315-cp315t-macosx_11_0_arm64.whl (642.1 kB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

aioesphomeapi-45.10.0-cp315-cp315t-macosx_10_15_x86_64.whl (648.0 kB view details)

Uploaded CPython 3.15tmacOS 10.15+ x86-64

aioesphomeapi-45.10.0-cp315-cp315-win_amd64.whl (569.6 kB view details)

Uploaded CPython 3.15Windows x86-64

aioesphomeapi-45.10.0-cp315-cp315-win32.whl (510.2 kB view details)

Uploaded CPython 3.15Windows x86

aioesphomeapi-45.10.0-cp315-cp315-musllinux_1_2_x86_64.whl (725.1 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ x86-64

aioesphomeapi-45.10.0-cp315-cp315-musllinux_1_2_i686.whl (705.8 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ i686

aioesphomeapi-45.10.0-cp315-cp315-musllinux_1_2_armv7l.whl (689.8 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.10.0-cp315-cp315-musllinux_1_2_aarch64.whl (698.9 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARM64

aioesphomeapi-45.10.0-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (718.1 kB view details)

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

aioesphomeapi-45.10.0-cp315-cp315-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (694.9 kB view details)

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

aioesphomeapi-45.10.0-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (691.4 kB view details)

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

aioesphomeapi-45.10.0-cp315-cp315-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (693.7 kB view details)

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

aioesphomeapi-45.10.0-cp315-cp315-macosx_11_0_arm64.whl (596.3 kB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

aioesphomeapi-45.10.0-cp315-cp315-macosx_10_15_x86_64.whl (609.1 kB view details)

Uploaded CPython 3.15macOS 10.15+ x86-64

aioesphomeapi-45.10.0-cp314-cp314t-win_amd64.whl (608.2 kB view details)

Uploaded CPython 3.14tWindows x86-64

aioesphomeapi-45.10.0-cp314-cp314t-win32.whl (551.7 kB view details)

Uploaded CPython 3.14tWindows x86

aioesphomeapi-45.10.0-cp314-cp314t-musllinux_1_2_x86_64.whl (731.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

aioesphomeapi-45.10.0-cp314-cp314t-musllinux_1_2_i686.whl (754.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

aioesphomeapi-45.10.0-cp314-cp314t-musllinux_1_2_armv7l.whl (671.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.10.0-cp314-cp314t-musllinux_1_2_aarch64.whl (718.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

aioesphomeapi-45.10.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (722.8 kB view details)

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

aioesphomeapi-45.10.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (654.9 kB view details)

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

aioesphomeapi-45.10.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (711.9 kB view details)

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

aioesphomeapi-45.10.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (741.1 kB view details)

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

aioesphomeapi-45.10.0-cp314-cp314t-macosx_11_0_arm64.whl (641.9 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

aioesphomeapi-45.10.0-cp314-cp314t-macosx_10_15_x86_64.whl (648.8 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

aioesphomeapi-45.10.0-cp314-cp314-win_amd64.whl (569.6 kB view details)

Uploaded CPython 3.14Windows x86-64

aioesphomeapi-45.10.0-cp314-cp314-win32.whl (510.2 kB view details)

Uploaded CPython 3.14Windows x86

aioesphomeapi-45.10.0-cp314-cp314-musllinux_1_2_x86_64.whl (721.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

aioesphomeapi-45.10.0-cp314-cp314-musllinux_1_2_i686.whl (745.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

aioesphomeapi-45.10.0-cp314-cp314-musllinux_1_2_armv7l.whl (658.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.10.0-cp314-cp314-musllinux_1_2_aarch64.whl (697.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

aioesphomeapi-45.10.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (713.6 kB view details)

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

aioesphomeapi-45.10.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (656.4 kB view details)

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

aioesphomeapi-45.10.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (690.6 kB view details)

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

aioesphomeapi-45.10.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (734.2 kB view details)

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

aioesphomeapi-45.10.0-cp314-cp314-macosx_11_0_arm64.whl (596.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

aioesphomeapi-45.10.0-cp314-cp314-macosx_10_15_x86_64.whl (609.0 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

aioesphomeapi-45.10.0-cp313-cp313-win_amd64.whl (556.7 kB view details)

Uploaded CPython 3.13Windows x86-64

aioesphomeapi-45.10.0-cp313-cp313-win32.whl (502.2 kB view details)

Uploaded CPython 3.13Windows x86

aioesphomeapi-45.10.0-cp313-cp313-musllinux_1_2_x86_64.whl (717.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

aioesphomeapi-45.10.0-cp313-cp313-musllinux_1_2_i686.whl (743.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

aioesphomeapi-45.10.0-cp313-cp313-musllinux_1_2_armv7l.whl (665.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.10.0-cp313-cp313-musllinux_1_2_aarch64.whl (688.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aioesphomeapi-45.10.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (709.8 kB view details)

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

aioesphomeapi-45.10.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (662.4 kB view details)

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

aioesphomeapi-45.10.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (681.3 kB view details)

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

aioesphomeapi-45.10.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (732.2 kB view details)

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

aioesphomeapi-45.10.0-cp313-cp313-macosx_11_0_arm64.whl (591.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aioesphomeapi-45.10.0-cp313-cp313-macosx_10_13_x86_64.whl (606.0 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aioesphomeapi-45.10.0-cp312-cp312-win_amd64.whl (560.6 kB view details)

Uploaded CPython 3.12Windows x86-64

aioesphomeapi-45.10.0-cp312-cp312-win32.whl (504.4 kB view details)

Uploaded CPython 3.12Windows x86

aioesphomeapi-45.10.0-cp312-cp312-musllinux_1_2_x86_64.whl (721.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

aioesphomeapi-45.10.0-cp312-cp312-musllinux_1_2_i686.whl (751.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

aioesphomeapi-45.10.0-cp312-cp312-musllinux_1_2_armv7l.whl (669.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.10.0-cp312-cp312-musllinux_1_2_aarch64.whl (693.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aioesphomeapi-45.10.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (714.9 kB view details)

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

aioesphomeapi-45.10.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (666.1 kB view details)

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

aioesphomeapi-45.10.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (687.3 kB view details)

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

aioesphomeapi-45.10.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (741.4 kB view details)

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

aioesphomeapi-45.10.0-cp312-cp312-macosx_11_0_arm64.whl (597.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aioesphomeapi-45.10.0-cp312-cp312-macosx_10_13_x86_64.whl (612.6 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aioesphomeapi-45.10.0-cp311-cp311-win_amd64.whl (569.0 kB view details)

Uploaded CPython 3.11Windows x86-64

aioesphomeapi-45.10.0-cp311-cp311-win32.whl (511.8 kB view details)

Uploaded CPython 3.11Windows x86

aioesphomeapi-45.10.0-cp311-cp311-musllinux_1_2_x86_64.whl (735.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

aioesphomeapi-45.10.0-cp311-cp311-musllinux_1_2_i686.whl (772.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

aioesphomeapi-45.10.0-cp311-cp311-musllinux_1_2_armv7l.whl (678.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.10.0-cp311-cp311-musllinux_1_2_aarch64.whl (712.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aioesphomeapi-45.10.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (728.7 kB view details)

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

aioesphomeapi-45.10.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (678.8 kB view details)

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

aioesphomeapi-45.10.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (706.3 kB view details)

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

aioesphomeapi-45.10.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (761.7 kB view details)

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

aioesphomeapi-45.10.0-cp311-cp311-macosx_11_0_arm64.whl (597.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aioesphomeapi-45.10.0-cp311-cp311-macosx_10_9_x86_64.whl (610.5 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: aioesphomeapi-45.10.0.tar.gz
  • Upload date:
  • Size: 232.2 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.0.tar.gz
Algorithm Hash digest
SHA256 990fda72719c48941a1426049699864ba760a4d801d41b4a940221d3538c1b7d
MD5 d7a84210167966e2da162e68c7fd342d
BLAKE2b-256 3dc22da1ea6f8a4db01349e8385c0a1f08ca19e2885d3a5b2389532dc3af9bf3

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.10.0-cp315-cp315t-win_amd64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.10.0-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 1bf5dbb40bb081f3e1063115dcc20ae99981b1da651b141176af8029c452a1b4
MD5 0ad7afcbb98eaa7175d662f9e530d751
BLAKE2b-256 4dd985bc3f2f43958e0f17d1e744063b00117f45c1033dd14bbcbbed49dc7b05

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.0-cp315-cp315t-win32.whl
Algorithm Hash digest
SHA256 9283100454f44fcaea46fbc74d6588d1df6c81688903b3742d0e9e2687506127
MD5 7af98324d24ea2b60e2c25aed3df6c4d
BLAKE2b-256 7dc765278115c3a85b4e3f8209750b50447aad3a261e5d6a0e11c5d05c6409b9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.0-cp315-cp315t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0f5d5baa45927b0df978723b8fb812f96b89d99cfbc0c8d61e3190a5fb56d80b
MD5 04683ebdd4fc2de4b8664ded30fb3659
BLAKE2b-256 da5d3914d63919dfb5a4eb8d991a9c0a7667269da31da81a716167a8bba76a1f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.0-cp315-cp315t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 90b58cccac09d58dcc672df19985195ac0be0db0028619c8a59445d746c1d55d
MD5 fd568095a4b4e81164ff0741ac517337
BLAKE2b-256 deaf07cc157a95566ebe7fbc1b05096944eb49a21a43e40e3ea39a16fcef7b46

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.0-cp315-cp315t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0bea543f4bb9b4d5669af7b79cf289cbcd7ec589c841676ca13de0e9fdea35ac
MD5 30780986a9584f26108f9cc2928c8045
BLAKE2b-256 8614c6f02f0b2ae351dfcba23c3151d928ebeb54c1b61e4831a1b1fe3f16fdc0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.0-cp315-cp315t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2c3ba0778b50ff9d8744d81bb327bb4a117d1c878f094ba4440119e5b3b225f3
MD5 d5b7745b97bf4c236882ecce7161a124
BLAKE2b-256 6e96bf8400cc5a68b53f8c2ba46cf6a2a18132e9f1ae90a9fd2ae0c759abb577

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.10.0-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.0-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.0-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b8daf5f070538e250bcafcdf41bdfaad13b7129782ca2bc07bf38384bcbe05fe
MD5 9792b8afb4de441eda45748943a260af
BLAKE2b-256 b897e0721fb9c5a1136ed84bc6edfa1b9ee8797236afd9aa4863b44cd5b919e5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.0-cp315-cp315t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 b9a97955aec270a5c067ad4a7b644ae57890972c9fbeea82d8d47d447816b4af
MD5 7c4f52bf6cb35cee04cbe19cee5fbde4
BLAKE2b-256 285bf516927f6fafe78bc56309823c238d28ad49d03673edada65799aafea93f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.0-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 387548df4b3e981dc0be1bfd2f25a0b3efb82744b3f46504c1dbc39b86532ea4
MD5 0c56d40752e07e1ed81851109bfc0566
BLAKE2b-256 786abc641884ab5c042f292c97f7fee1287fdb2a1386c4315af9f98b8dd5dd36

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.0-cp315-cp315t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 3625b33cdc9c25567b8c68c22c6a628bc6d60afb5e0712e046154890029562ab
MD5 6fae7db90abdb70509381176504ef0a2
BLAKE2b-256 86f4c377a109f71872d87941720537cada6250a26cb145ae381099244130f1ea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.0-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e4c8808a94b90384cbc43dd5ae55f4cd403d0451229dfa4a27f0213e08c9c423
MD5 8750cdef06cfb6a037bffc263b559b13
BLAKE2b-256 8dc905ec1c799218299f66c0b5be791e151effa0f9d43ffa58055f445e63ba41

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.0-cp315-cp315t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 acbe07f5c822fc11d474feca547df8f3c8716c2bfa6dc57cab13dd4baa05fd0d
MD5 c73327e3fe6f38178bb2f1e529b01d07
BLAKE2b-256 2509e48190f8692d16b5c31f47d253ea56baea0edfbf59a1a8f9362452ca8241

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.0-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 d14a32c71aa82212f1dce069ea04e451d1c2e9a040daaa3ea80d030b34b2fdf7
MD5 69a89d20144e03bcbf2e398ba33e972e
BLAKE2b-256 8994a14654309fb855552ed76bf36a8342f2ba15c94117c2fc598e088c312802

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.0-cp315-cp315-win32.whl
Algorithm Hash digest
SHA256 6dd6468cb71ab684f234dd81c5c180e9e9212a8be8ad0dec8ac2241a645b2d4c
MD5 596754ecc3c7043449ae84865d6481ec
BLAKE2b-256 4f89c1c1ea101a9ec93e37da9b40b39017ab0f30409d308ec7b7b6c8e7a49095

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.0-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a33bf322ead50667d68010f9a796fdb40fa7574052cd6c6a13c24e4eeba12824
MD5 138b190c367f4b2e64d62b78e1f10e9e
BLAKE2b-256 a98e4f21d6ab297123494984cfadd84e0a93e7dbec5d23c0de8b1f27a01bcaba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.0-cp315-cp315-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3b214217f77e59692a25c9a7eaec6fecf49ab1a2c93f50bf8b0950e0415d0bde
MD5 143edbb751164d4e7b2ddffaaf2d88bb
BLAKE2b-256 da8bda62a6d347308468c618e36cd17f5db41625cb9c27ff70c152888f4e3ef7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.0-cp315-cp315-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ae497a1caba82c173d9874fbe4e8575811385344bdf54703d3a1ca8c8c3fdc91
MD5 a6dfb8dee4aafd6e0aa6966b5259abf4
BLAKE2b-256 b0162dcbee82b5afd8d9db4e5a0fdc74c3859dd13b4c5b144ec37790ecc2110a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.0-cp315-cp315-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9f6b61cd64096b32e2a3c745c9ba25f6a82c9af1d0c6f4fb5d453468b1a98713
MD5 8796d1b967a494455ad54c5d9de82b14
BLAKE2b-256 e982d3baeb0e03b5ff76362806c197df1c97b7971c92e9794e29f1588c632c88

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.10.0-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.0-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.0-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 32a321fc8ca92f6ff4559474032c5db4bae1327e1a60e5a0bfbbbe79376414d6
MD5 4fff5a63698eb05fa6c85a4fd7b7976f
BLAKE2b-256 7cf4ecedfbfe919027d148c84d2d99b23c4b6966b6725a86005378c007e1320e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.0-cp315-cp315-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 5b6642ec8376d3afd440f7eb1bb36a546e8fa4cfbc5275a410301d1de1e8046d
MD5 bc54677be20e17cc725be27f4625de53
BLAKE2b-256 70fc915a97509558a6680bb87c14c4af4e3ea885bc597f6d243f5d38bf30c357

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.0-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e96eee01e560a0536ea0f21767962347ca116c55f83dcaf4a613ce741a4433f1
MD5 6f8c2dd6db8ef0769cba02dcfc7aef9d
BLAKE2b-256 07d5699efa8ea8fb5df8586d51a971e4f535b5f7ca5ed8dd676aa44c59866ef2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.0-cp315-cp315-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 e054c3ec708eb50db32499b055c5b7545648bdb361257cd140b8542a36774e8f
MD5 498aa1a968a5dc6072faac5f5e6d18ed
BLAKE2b-256 b0099d25e99d00353a6fe5ce57d40e714b51b6fb2f5fc80b17b94eeed3b6864c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.0-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 88974b4066cad477039822a4b430339b1582e3c91f8638f7240938f4a452e595
MD5 e43a462bbd18a773949123ed6781ffdb
BLAKE2b-256 c92ff32a43ce8891d0329ccded43ec1213b0679e9c7e347c4aaf809d23b67236

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.0-cp315-cp315-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 fcf7572f037fd4946472d1ac857e0ea92e0ebfa76e864eacb1e27056d17b9042
MD5 6e9f619e30a781208593e8a88ab02b2b
BLAKE2b-256 29db440e16009cc6886c61158af0be568744920e1c31d27cd9ba91ecba35e547

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 3df3d0f605eef770891f7fce5b80d8260bed5dd2d04ff76a51f1659123318e83
MD5 7c934a74b5d2296c8273e0a52e1d2d2d
BLAKE2b-256 fed97e2e31c28c0db7e769d1b16a71fffb777af6e1e0e3a44a5294fce7adec0c

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 a03f01f1687882fad4f09b3238e511aa3ee5e772627b682f8082b746a6106bed
MD5 a6edd121fc606b17bca53c47c71a9b97
BLAKE2b-256 0cbdf96fa597956beca4de1e0bdc848ab2f6d0aca80ac8b371a221f1c2576612

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5532a11efcb962c355b5885be86f01f5f22e53b54250142ca80d302bb6d6bf5f
MD5 5b5069ffa05526b071e0c32383710c80
BLAKE2b-256 b4a8f42b2b4665ecc31a44a91aaa7c6614ad9d22c22d7f5d98ba1fa48e47b04d

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ed40291e55c736469d4bc8d10eb73f1d556d31d7e3e6e262c45b4f1e12fc92d2
MD5 f104bb58cd4109aa33c1f44f0db2c5bd
BLAKE2b-256 f041142030826f1b1ed7b6c8abbf0edd211a1502edeb2e970d51a21b07c03a4f

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 947788c23a94524c8d993af172de22950ae6754d5681f030c75d9f579dda4144
MD5 5d4ab04e66e7561ac9d45a3d560b55db
BLAKE2b-256 aaeb1978ea0c62e4db2a1542e86e2b6cb9ad86227100a528e76f67ee2487a331

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 87d60437fd3644bff43d5c7651270820dfb490253754d737bb10664e523d5096
MD5 eb7cc98d5866a0c0246d6a3969532639
BLAKE2b-256 0ee6ad0c5e0382d0b1ea2dca2c133fedb4b4651007e0cee6e7c2fa6787eea6e3

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.10.0-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.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0b73743feacb24bf864bf8ef936b0d7d9e3d195a222025ca3b294209d736189f
MD5 c8eddae353772168dc810661f42557b9
BLAKE2b-256 be048cbd9c219dc461ad4334a8820030b15661a951645048b97b9f7736e1d61a

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 2272429e4a444c1c82c971909242376ddac7747181fc5316501e2714c8d28baa
MD5 ca224594e08289e6330b7c0004ac8559
BLAKE2b-256 176c674cde777136627e73e7cd724beb76b33f855aec3c8021c7d63cb7da9ca3

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 467c4dd86a7aa07c38cc92371efc44ea57827539af5eec9e60c3c7cbd6806655
MD5 532d2264ae5acf444c31d7b4fc1d4722
BLAKE2b-256 51b89c4b38e7b83678ec66d8902870d8b72cf4bf11922c770aefbe13c366c7fd

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 c2f7dcb464367c42711925bee968574397360a6a44745bb31a6dfd2011c313d7
MD5 0a55f430ddcc2c22feaab1e0f6997c66
BLAKE2b-256 d0ab2da0d09ee0df9ac17863e150313d130ab1f04057ab0cbaf3c7bf3ebc05fc

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5fd4748c991215e3b2f8e19376a918d5a0a1433df2269f4bf5a893658a0e34b7
MD5 2854a31fe78b7f6c51a00a704b162637
BLAKE2b-256 0cf6e18f3cd1b257e7760ac6008e6502df0da5f53092b6298510b302c8d78c5f

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 0239450f770b669496171e1c4dfe1148db0875a03c205577983aabcfdb603d7c
MD5 d7de0dbe095c1882fe720275702a1876
BLAKE2b-256 248fb27d2622e669367f48b3be50bcce5662d253483033a633005a9b1401f7ac

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 075cff1f0b2ddd2b78cbe3a29ab6d1e2b191d7466d2486f2f905a3cb2828667d
MD5 b8f5b18d4dd799af6670a619edcef5ef
BLAKE2b-256 4a9857e997f6fc3cd33a1c42076c6495ded1e09496ac00ec061d11413fc0cab4

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 478c01031ab940776280a77bdfa5ace0f801d7be623db115a8d6c655ccbb7170
MD5 05d9efe1de51e29e52988b010f2ad3a9
BLAKE2b-256 5cb7f51365fd3d1aa79a3c9d2302184d2b10328bc073abf8f1172a36cf759938

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dfbd375ff503a590379a77b66cfe5b03e47c9fb9d85a006018c7a5d5478b6299
MD5 3772150bf24275835a1f9bc62e5fdaa9
BLAKE2b-256 600ce59d703261570e462f946f474cad267d9c4cf7c212c16f7e9e64e8043d28

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9bbe629279feb3976acff63574a924736cdd8fc12992d5b7f42e4c8c1497780f
MD5 19f1a0dcbe6e9e5f948f04a761145818
BLAKE2b-256 d4b21547ed46f824567915612f68bcd388a162d4d9f291cfdf119daa4c00763d

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3861dc9a5f128f1bd14f4dad7280a1fd8230ad975e4cae3c117b03b8dde53edc
MD5 98353385cf95128fdac46ae86fbf8c22
BLAKE2b-256 8a1076c0dda87faf363342a8d1f2c42b438a30a6aa4f2ce0eaed2b061855f1ff

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ca118ff9fdee7b2ecb0b798cf23bb8ede2e0bad47d7a69dccc118d83d0497b5d
MD5 147b1ae022987d0288b090f6b1162239
BLAKE2b-256 10cad996dee480e408efae2ea568050aa2e0eb8eed8487866945a0eab796b5fb

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.10.0-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.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3b0ce7c29a756c39bee87b9b3b4c94a5e81d4bb79ce95a2757179c0927801cfc
MD5 a70c666128b2c5021afd4dce133dacfa
BLAKE2b-256 a64b98c74ed333ba96c60d60a4b6b74aa148e07f50bb28d322e28efc535f5951

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 bf9390b398538152a5cd4e456c50a24d5042655de22e04057b19f26ff94918c9
MD5 f8eabafac1190b284a7967449f4d4b27
BLAKE2b-256 741c612a0d82240f0301f9b9bb02db88ba3fb2d055ab8f60f4244ef5f448e8dc

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 55a79f3588f801319d7d9cdd855ab9be43de7165be97cbefbb6f119624fb3dc9
MD5 a7bb8f2092d954ff8e51f8e00b866c35
BLAKE2b-256 6b081ab79e2efc9dce7f34ff906bc3f40583e01ea9509168339d46a98381720f

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 e3766da05cc5cb99dc30f7ddf4c08c4b0ab171e458ce8a58bd9c126a1ea8bc5d
MD5 cd52743f7d2a9218182391a74520348e
BLAKE2b-256 530a31ed4d9b4fb5280fdc2ece2366f2faccc37b8b631f9cd6ece269dbbbfab8

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 740ebd773b3f77828a28eee96820cccb4cfa17d53a7d42f3b9a23f435fc57804
MD5 018c1439a2ae2bc09417b284f3adc0e5
BLAKE2b-256 6f1c0c2154d62e57fcd3cbfdaba4a2126e7f911688b8205f2fab76f17125c6aa

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 0caa73ffb3962850d936092689ba2c07b0f12bcb46e0fd4edcb6d204c06df709
MD5 70e0ba9dcb9eab330fb2d0cb776671e9
BLAKE2b-256 ab8a09138e304d9e8f7be2e19cb221bfa9307537ae1f8f137151b6d6a900b884

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 fafc81dee101f30769de4a43af6072e50db4594f488c0a7ebc7b9ff4e1f8edd1
MD5 2815aac814f0c5b6f16134c2e69c77f1
BLAKE2b-256 f6ddbba93cdfe28fe85d7161f154ef924751b2f41d13e87bf8898ce4c55ed9e4

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 c36fe1278caae53fc22126a53c673c65725e9abd089124501b78f91994610c1f
MD5 94f9e4538f89d3218f5f9fb00a70dbf9
BLAKE2b-256 ffbb20e4a5748f20736fbde1380fe8ccc0ce3b77da03853314a6f6f6ff91bd6e

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6ec11e6ef313468876d4629d929d9a530d8099a0423ddba9364e56d819019171
MD5 8f36f48023a5c47a4ced366c773cb272
BLAKE2b-256 f2b751e1b9d99d52ba3a92328a7e939898fb8135dd6befad0783571cfbf7a558

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5baa3d7623d1b45135e416cd1d5bfc4bb7d1d2a6ee502cc06f980ee16773a1da
MD5 1d8beb2a21e9f9ae0aa19d7aa44de7fc
BLAKE2b-256 4e0cc236aa4ce8cfeb3d6f3808179bbee57b19fb318107347196f60e831033d8

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d12b93e5630725314f7cfb4a114beac2c8ff40f286bc0d33b2631456d04cf1e9
MD5 8bdcf2cb706ce9ff88a9500e52daf8a4
BLAKE2b-256 93b315d953a1a6b0ec7b0586965e675744fc36c238a276c12cb2ecfa529d446e

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cec851ecfaf939a4b3e5f7e422061a62ba60bb3db53b10c49c4593ee587855df
MD5 11a26166c7db0e75a10ff09987faa33c
BLAKE2b-256 179740dbfd5f2b32d0124b4522a52eb332b64751c10479273797fe7f81401172

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.10.0-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.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 26f60eea5ae2e74da8f1e1fbc90469e5bbbeb2395419ba0b80d0dde68ad421da
MD5 3be74b363ccdf181a527b530bc7b1d5a
BLAKE2b-256 2a925dfe3dd060effa52f34fc2818ad14ab6bc952c77fa8bd6e8573cd900688f

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 2cc5ff7f9dd444f130c6b6f97520cb1ab7834229244ffbf918dd94c03f7cf64c
MD5 642d5982becfb19103930dc068544635
BLAKE2b-256 89424bba9e634f2e2f2a3db602b7206ce755cd73d109259b251b001828acb707

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d61ba337ef9c66a9381cb74ca1c776e688ba4b27ba9628d37144914982eb69c0
MD5 9f575e75885410ff97c87bb4f903ac09
BLAKE2b-256 fe1d49705ea080ee842edf8ae5a04908950b3349571f5258c101931285c3df35

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 335e11b0fa8b9e2aa88acebf8323504f7db18ce48ebfc29bb9473bcf7e08931a
MD5 a885d83b8b083b9b6d799b1801614bed
BLAKE2b-256 b66c740d8d4e4478cb0841b70f955f44f2ffb4004fd0bd2565d875befcf9ae11

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b0cecf23f3e65bc3f577eda294b7587e534834f5b8daf32f25c125328533d85d
MD5 ed597a558fdbab11a212cdd12da04b56
BLAKE2b-256 178b59ba9350f9f80086a8abdb499e2e13a34e1a01e8b77d17f786dde6329b6b

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 ec0ff2ef41c4e961a35d8be69fde8e9a870a8062614f820e685607dfc5570aea
MD5 d848cf88d89a96da6e6cb4a6b4fa8cb4
BLAKE2b-256 3724f312b14bddc7a1e41072546d346c685e995f86591a86f6e8d75555776972

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 93cadf3b49431e2dfd1f8a6f4bee1058f5888b414992683ca7ce4ec4b4260400
MD5 bb7f358c0558ee94c9c5e085e5efc71d
BLAKE2b-256 cb44fa6f14e413546e3494bf129b8f2b36960042cc8b9702ba946e526841226b

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 2fc093e53e8f68399874bc0c4dd2e8a4c70b5b9e419038c485c204498495dc2c
MD5 5a7a7607803f89f69798e25fc46ea66f
BLAKE2b-256 c4c95bf377803d172d10105213a299e13cc4d2e9e99b48e3744e9f902b41d8c5

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 33bfa56d0bc232b2025ba3987ca2b3a655744a45cd6bbd43f5d6c568131920c8
MD5 a32efc3c6861f211d3dce60f411ee3b3
BLAKE2b-256 4117ce6d4ca96f93ad51cdf67b4ce3bc877b57a71470535b962d4a419c4098b3

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b20c4e9fc8592c84337959fd0d3d6aa09ea3107819ee5afc0d801a5fbf782a39
MD5 d335b21f4abd3620602704da431badbd
BLAKE2b-256 d2a7fce174e495021ee6573e959e7c12b5e66c05db8b9cf5e86db929fce82607

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4719d343a2abf073133638131b992f074a109ac9ef565ffcf6fb6e3e30750c56
MD5 2794ebcfacf5fd36e18750b3eaee378a
BLAKE2b-256 0475c3023ccc29ab595d70b6fe4968cc2f4391211d52cada40e84fdb9c110bf7

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e07a0271197ccb699f3f7f3ccab3291959a983d727280d443274beb96fd9d048
MD5 1c411819eba33dc1c54cbd281c41586a
BLAKE2b-256 d3fcfcaaf8607512bc32ce7225dd6cb751142eb5a95f31e33f99430723edb82e

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.10.0-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.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4a0eda309b6bc402ef42a5be436d9be91d5a9f0c85abe4b526fd8e54b54fa85e
MD5 f3863e41e9933445acdf36b23a000184
BLAKE2b-256 b4957ef7784e7a327d6422797192eed006cf4b0a175cc0769642daa7972bf179

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 e68aef82142f54f4b37588025ded329279300c65f43e7b1acba4b392621d154c
MD5 a618a92ce6a4eb62e05a24f9a2f91eee
BLAKE2b-256 718e569b218a992b1e91a74d290a257d36057900c1f2104b6b9393570f602621

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3e7caa98562cec819bb082ae78212681934723058dfcbdf9c3cc28f44365e1a2
MD5 714850bb7a943a0bbdcb79c0cd1171b7
BLAKE2b-256 56421877538d08f9d4460c21f4d46b641603da001685ed5450ef124a8a585f1c

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 3935cc984c49fdfcdeaf3197b98dcb0a009f02fe753b4307047f1a1b85dae7c5
MD5 889d9d48c7e63200441053de63f52fbc
BLAKE2b-256 d8e52a9e2b9043dbf267b6ae56f7f74395a18f01373414f94af52cca70ef809e

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c0d3612ec5b5ebf8da95899beaf01d961faca1aee40b9a9c45840872326a9bcb
MD5 c45ddece8d7c8d21f2673e8ece4839fc
BLAKE2b-256 f1b419f720c8b6f6b886709f4e2168a5e05875370996ffc54e7b8b98ddacbe2f

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 0b2999e02ce1836a1dc062505821ed00cd012559d557751e3e35547dba235d01
MD5 d63856bd5a452b20ef47a2b441246038
BLAKE2b-256 3a93452e605a452c261fbf38c0a28f724a67406fd204f19abb379cbbc5f9dc5d

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 525308271a6cca479c2989cb94bb138d53967dc20351b5670ed703a0bcfaf6ea
MD5 352c5217344bc58288dd11d916ae3bc0
BLAKE2b-256 e2f8077f1dad9df2be8e48b7d493cc5fc353e5a9781dbe8a56e6ed03eb93e322

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 4d73eda213fc167d518f86e34aafc0af4e2373548e2ec9a2861c3f90aa9d7f97
MD5 1a9eeff231d033f153c49791d1cb5047
BLAKE2b-256 93da23f4325a1332d26345c2f844555cf83573d974656c1fc409657db30610b5

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cf78373e31360b9934f97f14216a5117eb95de989706b81d330ace140465bb87
MD5 469732d935d1bf15315cdf9ea7a90268
BLAKE2b-256 57260e96cdc38035cc239e299ac141b0fd27c4d1caaac63dd6a85e21a3462840

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 eba4b1ee2a7a1b32fb2f16398302b14aabba39a8d710a4f409dfd9a9e1d4fb85
MD5 b641facf501b6af55403408a7112989d
BLAKE2b-256 67dc91c204cc9ee062ca542f5f510d611e4c9a5ccbaa63ce72861ddc78782a2e

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 99893f326ac0e044a8a11757d9ed87cb69a1cd962920c61bccb7a30dc906cc80
MD5 4850f47008348f20a6f75e4e9f1e508a
BLAKE2b-256 e5a4152f3a3b4817f764bdecd0a28eab185f2b8563dc2fdbd2e6723e4a50afd7

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cb947ccae63b636301dc65d79c97a5019e21057e64ac126595c4466931dca8bb
MD5 eb64b62f5bce01feb02fb1576b6d8f78
BLAKE2b-256 fc8dceba0c93ce92f5dda4d2aecb0b965e3828ee74ae0ee8716a53f56048eb2d

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.10.0-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.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5e0d091596cef3d764e976d75fad321b7c2cd7d55c4efebd83d18a3e2944a173
MD5 557893522857d19510f73feeaae8966e
BLAKE2b-256 b5946dc259220cfa78cea09ae7f0b2bcb64433594c9ea16038c5502f5d9cda16

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 d2b0449f1555cef0823d4a8416dd8760a83da8da704fb94025c0dbe56b8290c5
MD5 80dcc4a8218b7d6ba74e147b8a5aa0f1
BLAKE2b-256 c49949a55ce0764ba7907748a57909f18ce6539727154d1baa7e42c77385264d

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8706379126e4d3a27332c74b904c07426b90b34fe7e93d21d70a09506bd26a88
MD5 2028081bf927def4f689724b9f17cb71
BLAKE2b-256 d686762fba5fb8f4194fd9d321b1d022765c5126db1fd79e233c655cf4f0192a

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 9e703f700db3b34980dd7958bf61cdbddd9b9484f475346ad750c36a62cb7b5b
MD5 b841e5cd7ea2b777dbc5d7aaa616a851
BLAKE2b-256 0a21ce421a17a0dd7095c8221f5a8d16bb27d621a771556eec3d3f1d8d65b643

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3b2ee797a0c0f3e472495b4fa146698664a5d66bb8fef68d65b560161f164ef6
MD5 5deded0a9e749cb7e5207bacea211838
BLAKE2b-256 fcd77786fdc31f05457f0ea5c2f5bfc6e3202389e19a87771e4e94cbfe571dfd

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cba39c8d2049e950291c2b1c058fc7d313590d2fcf751dee9a0d74eb1045eab1
MD5 149d111e98b6fa9c4d85810b50f49081
BLAKE2b-256 5aab2e0ff8554e1adf2b86cf2542c16c97d3380ceea7977fae0d0d26157aa2e9

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

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