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.8.0.tar.gz (229.6 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.8.0-cp315-cp315t-win_amd64.whl (606.0 kB view details)

Uploaded CPython 3.15tWindows x86-64

aioesphomeapi-45.8.0-cp315-cp315t-win32.whl (550.9 kB view details)

Uploaded CPython 3.15tWindows x86

aioesphomeapi-45.8.0-cp315-cp315t-musllinux_1_2_x86_64.whl (729.4 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ x86-64

aioesphomeapi-45.8.0-cp315-cp315t-musllinux_1_2_i686.whl (712.5 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ i686

aioesphomeapi-45.8.0-cp315-cp315t-musllinux_1_2_armv7l.whl (702.4 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.8.0-cp315-cp315t-musllinux_1_2_aarch64.whl (715.2 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARM64

aioesphomeapi-45.8.0-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (721.4 kB view details)

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

aioesphomeapi-45.8.0-cp315-cp315t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (686.0 kB view details)

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

aioesphomeapi-45.8.0-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (707.3 kB view details)

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

aioesphomeapi-45.8.0-cp315-cp315t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (700.5 kB view details)

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

aioesphomeapi-45.8.0-cp315-cp315t-macosx_11_0_arm64.whl (641.1 kB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

aioesphomeapi-45.8.0-cp315-cp315t-macosx_10_15_x86_64.whl (646.9 kB view details)

Uploaded CPython 3.15tmacOS 10.15+ x86-64

aioesphomeapi-45.8.0-cp315-cp315-win_amd64.whl (568.6 kB view details)

Uploaded CPython 3.15Windows x86-64

aioesphomeapi-45.8.0-cp315-cp315-win32.whl (509.1 kB view details)

Uploaded CPython 3.15Windows x86

aioesphomeapi-45.8.0-cp315-cp315-musllinux_1_2_x86_64.whl (724.1 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ x86-64

aioesphomeapi-45.8.0-cp315-cp315-musllinux_1_2_i686.whl (704.8 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ i686

aioesphomeapi-45.8.0-cp315-cp315-musllinux_1_2_armv7l.whl (688.8 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.8.0-cp315-cp315-musllinux_1_2_aarch64.whl (697.9 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARM64

aioesphomeapi-45.8.0-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (717.1 kB view details)

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

aioesphomeapi-45.8.0-cp315-cp315-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (693.9 kB view details)

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

aioesphomeapi-45.8.0-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (690.4 kB view details)

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

aioesphomeapi-45.8.0-cp315-cp315-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (692.7 kB view details)

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

aioesphomeapi-45.8.0-cp315-cp315-macosx_11_0_arm64.whl (595.3 kB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

aioesphomeapi-45.8.0-cp315-cp315-macosx_10_15_x86_64.whl (608.1 kB view details)

Uploaded CPython 3.15macOS 10.15+ x86-64

aioesphomeapi-45.8.0-cp314-cp314t-win_amd64.whl (607.1 kB view details)

Uploaded CPython 3.14tWindows x86-64

aioesphomeapi-45.8.0-cp314-cp314t-win32.whl (550.6 kB view details)

Uploaded CPython 3.14tWindows x86

aioesphomeapi-45.8.0-cp314-cp314t-musllinux_1_2_x86_64.whl (730.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

aioesphomeapi-45.8.0-cp314-cp314t-musllinux_1_2_i686.whl (753.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

aioesphomeapi-45.8.0-cp314-cp314t-musllinux_1_2_armv7l.whl (670.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.8.0-cp314-cp314t-musllinux_1_2_aarch64.whl (717.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

aioesphomeapi-45.8.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (721.8 kB view details)

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

aioesphomeapi-45.8.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (653.9 kB view details)

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

aioesphomeapi-45.8.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (710.9 kB view details)

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

aioesphomeapi-45.8.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (740.1 kB view details)

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

aioesphomeapi-45.8.0-cp314-cp314t-macosx_11_0_arm64.whl (640.9 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

aioesphomeapi-45.8.0-cp314-cp314t-macosx_10_15_x86_64.whl (647.8 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

aioesphomeapi-45.8.0-cp314-cp314-win_amd64.whl (568.6 kB view details)

Uploaded CPython 3.14Windows x86-64

aioesphomeapi-45.8.0-cp314-cp314-win32.whl (509.2 kB view details)

Uploaded CPython 3.14Windows x86

aioesphomeapi-45.8.0-cp314-cp314-musllinux_1_2_x86_64.whl (720.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

aioesphomeapi-45.8.0-cp314-cp314-musllinux_1_2_i686.whl (744.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

aioesphomeapi-45.8.0-cp314-cp314-musllinux_1_2_armv7l.whl (657.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.8.0-cp314-cp314-musllinux_1_2_aarch64.whl (696.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

aioesphomeapi-45.8.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (712.6 kB view details)

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

aioesphomeapi-45.8.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (655.4 kB view details)

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

aioesphomeapi-45.8.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (689.5 kB view details)

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

aioesphomeapi-45.8.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (733.2 kB view details)

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

aioesphomeapi-45.8.0-cp314-cp314-macosx_11_0_arm64.whl (595.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

aioesphomeapi-45.8.0-cp314-cp314-macosx_10_15_x86_64.whl (608.0 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

aioesphomeapi-45.8.0-cp313-cp313-win_amd64.whl (555.7 kB view details)

Uploaded CPython 3.13Windows x86-64

aioesphomeapi-45.8.0-cp313-cp313-win32.whl (501.1 kB view details)

Uploaded CPython 3.13Windows x86

aioesphomeapi-45.8.0-cp313-cp313-musllinux_1_2_x86_64.whl (716.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

aioesphomeapi-45.8.0-cp313-cp313-musllinux_1_2_i686.whl (742.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

aioesphomeapi-45.8.0-cp313-cp313-musllinux_1_2_armv7l.whl (664.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.8.0-cp313-cp313-musllinux_1_2_aarch64.whl (687.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aioesphomeapi-45.8.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (708.8 kB view details)

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

aioesphomeapi-45.8.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (661.4 kB view details)

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

aioesphomeapi-45.8.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (680.3 kB view details)

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

aioesphomeapi-45.8.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (731.2 kB view details)

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

aioesphomeapi-45.8.0-cp313-cp313-macosx_11_0_arm64.whl (589.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aioesphomeapi-45.8.0-cp313-cp313-macosx_10_13_x86_64.whl (604.9 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aioesphomeapi-45.8.0-cp312-cp312-win_amd64.whl (559.6 kB view details)

Uploaded CPython 3.12Windows x86-64

aioesphomeapi-45.8.0-cp312-cp312-win32.whl (503.3 kB view details)

Uploaded CPython 3.12Windows x86

aioesphomeapi-45.8.0-cp312-cp312-musllinux_1_2_x86_64.whl (720.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

aioesphomeapi-45.8.0-cp312-cp312-musllinux_1_2_i686.whl (750.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

aioesphomeapi-45.8.0-cp312-cp312-musllinux_1_2_armv7l.whl (668.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.8.0-cp312-cp312-musllinux_1_2_aarch64.whl (692.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aioesphomeapi-45.8.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (713.9 kB view details)

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

aioesphomeapi-45.8.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (665.1 kB view details)

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

aioesphomeapi-45.8.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (686.3 kB view details)

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

aioesphomeapi-45.8.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (740.4 kB view details)

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

aioesphomeapi-45.8.0-cp312-cp312-macosx_11_0_arm64.whl (596.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aioesphomeapi-45.8.0-cp312-cp312-macosx_10_13_x86_64.whl (611.6 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aioesphomeapi-45.8.0-cp311-cp311-win_amd64.whl (568.0 kB view details)

Uploaded CPython 3.11Windows x86-64

aioesphomeapi-45.8.0-cp311-cp311-win32.whl (510.7 kB view details)

Uploaded CPython 3.11Windows x86

aioesphomeapi-45.8.0-cp311-cp311-musllinux_1_2_x86_64.whl (734.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

aioesphomeapi-45.8.0-cp311-cp311-musllinux_1_2_i686.whl (771.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

aioesphomeapi-45.8.0-cp311-cp311-musllinux_1_2_armv7l.whl (677.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.8.0-cp311-cp311-musllinux_1_2_aarch64.whl (711.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aioesphomeapi-45.8.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (727.7 kB view details)

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

aioesphomeapi-45.8.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (677.8 kB view details)

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

aioesphomeapi-45.8.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (705.3 kB view details)

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

aioesphomeapi-45.8.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (760.7 kB view details)

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

aioesphomeapi-45.8.0-cp311-cp311-macosx_11_0_arm64.whl (596.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aioesphomeapi-45.8.0-cp311-cp311-macosx_10_9_x86_64.whl (609.5 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for aioesphomeapi-45.8.0.tar.gz
Algorithm Hash digest
SHA256 8781561c89b1f0f4178f69447e3dcd43904b14966a6975f4e7ab87305ad6271e
MD5 a5c830a74c653551995a5d10aefe14d0
BLAKE2b-256 9dd13d17a78737f06593367f8b267ff6f22cfd52cc690e57b99e313f396c5974

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.8.0-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 22017a6503affb3df99fe73e18c82bcc7db593ad9e38e4d169ee601f6f1f4d81
MD5 320babe13a71e4b1503ff598dbcb797a
BLAKE2b-256 12e5b52d16a29f8143448011c15882897a407894d47db1efcaf4735177e33b27

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.8.0-cp315-cp315t-win32.whl
Algorithm Hash digest
SHA256 e467e9aa55a243689087e650fa05c374cf55e5ee50802ebed9687f251fe0ab9d
MD5 6c6a815f28f022d1c7469d0d10cb8c5a
BLAKE2b-256 269425e93a5481b60cf80b7f3927002c9e457cc332af688a4e42a68c1f3d58de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.8.0-cp315-cp315t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2929791f829b4624805913627342c0ae0cf4f047cdd6d6be296bf3b7df3a8646
MD5 bb1ac443a3021c4750f4c58c3971f94d
BLAKE2b-256 e7205edca4fb5fe1910c14688fea2e6df347a845dea55b365973c25975e4a9c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.8.0-cp315-cp315t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 26019efafeb056ea078a9b8d53f8ecbf71033fd8efdaa1f0e5e0b27dcb8eb8f1
MD5 6dd8ca8d01c56fff97a406920e50f13f
BLAKE2b-256 9d5f536204ca4903db2d8de7f7c56e9bdaaf3ab3aaf6f57315d1aa3822041343

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.8.0-cp315-cp315t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c3f83612fae96adafe89a61af879b9fbd47c38fb23ed456a4c98fb42f40ddd61
MD5 66f9347dfcc70ba9e0fc3273c887f50b
BLAKE2b-256 620e725c1d700552b2904b6d5d8682a8ae25050d4bb518b4f98c58369bf76abb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.8.0-cp315-cp315t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 102a2ad47ec34ca9f951d8ff1743a658a82dcaac0ebbd58b72c959b232a26b24
MD5 306ef2175992d721da898407da2ae318
BLAKE2b-256 a41377f25ab1d86708e05bf553ef3a7bfa942806adde6a4f6f963007b7a0703c

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.8.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.8.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.8.0-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bd7820218ceb99c2740749f509812107e102498d7ea06cb0918fbe894955dcc9
MD5 659679bed53d08f6c9fb5696114b0966
BLAKE2b-256 74b56096f08425316d60222d5664c6f2b14bbbfd0c44432523fbccda47c237d1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.8.0-cp315-cp315t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 8d8b154e08fac09a252303fd82af9acb6ac7a8d294ce983dd1ac4139fb0fcc7b
MD5 464071126fd03cfdfb76e0321696e3c9
BLAKE2b-256 7e121f59b4f5753ea5aaa9c929469e3569ec956dc6a8d4e0e81b1499876fd1bb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.8.0-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 134275b475782d1e5ed63b54299843b0108ad47856c84af683f539462856b3c8
MD5 194a64b967f3cd28548ad69be2631e23
BLAKE2b-256 9ee53cc9c18c51d6a951e170dc369357aad730c7e2863b730d7fe9d7f8ce892b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.8.0-cp315-cp315t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 e263eabaeaed04bb6ef29112380711512a065b11d7bf381ef84b0a12b397a2a9
MD5 38a86f0392f763df98c92d90f53506f0
BLAKE2b-256 d6d3a97429a33a905c11e9422db8d1465842ba95d97ffadd5a9066bd173ccb1e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.8.0-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c9eed93d9d00f4547b6335673a52d9a42a2582ff7b2ba1d050768d48dee3fc2d
MD5 0c87b6b86f09ad8952995977b03375e4
BLAKE2b-256 e7725562595c27a3158bfdeb6037af5f31373643f14fd2845adfef5fe250020c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.8.0-cp315-cp315t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 a31c21dd9f6218d91fcbe4e0944182db53ba7d2e34642ef6ac6c1f953ce3f3f2
MD5 5281faffc24154a02750033c78eadc80
BLAKE2b-256 4323eef48c6f1d94735e42deda36d64cdbbf2a767dd13e8c845ca33a0e013754

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.8.0-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 7e15def78e23575f39d85284ecf33081458cd5f6d1320d10261f43fe74205f4e
MD5 efc609d6c4a5a796337c0a5d0daa77e4
BLAKE2b-256 4357d325f96a2f5402f3395a18687135ad614ff4d8b1ad964e3759a4bc6ec8be

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aioesphomeapi-45.8.0-cp315-cp315-win32.whl
  • Upload date:
  • Size: 509.1 kB
  • Tags: CPython 3.15, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for aioesphomeapi-45.8.0-cp315-cp315-win32.whl
Algorithm Hash digest
SHA256 0201b85dffe94c932fcc2ef583af5b1bd5c9bded2c3ad4d992cf04a072b1686f
MD5 448951503aa4edb19069f6783e1a23b3
BLAKE2b-256 4af513793096d663588044eb28aca59996236bb6b5a934b8188e5eb3dcedca72

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.8.0-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 246c773d7b34a27c0632a1e7b3ecc78fc2e17f0281b393243fe94350f6337fd9
MD5 4d4fd893f567d12ceb0f8727632ccec2
BLAKE2b-256 d8d81767385c948cd9e9b8f2b44bed7cd570afd20fab1224204d771adb1bd330

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.8.0-cp315-cp315-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5fb5cc98b94ea8e67b68b0bb84f541d55609bb4728667b5a2e641be2ee344db9
MD5 f242fe805306d8533ac3c8b0d49f699b
BLAKE2b-256 16d5489a5d3cb9d491fbd4555bf1b74b75b1173c02de6fc3ee3f8142c2bf9e41

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.8.0-cp315-cp315-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bb928b4dae867b26c6fb56547eee177c17f5fb3844683bdafe3e7d9d543be575
MD5 0435a5d10ed712901f6d57d0e967ca7a
BLAKE2b-256 937ae40050981a7d4327da6c0922c242bf2b24e40ec2180d7d32a4ec659175fc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.8.0-cp315-cp315-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1de3ae700430691fbe2ae0968b989cc80d33fa81d8c3311e439a47a1ffa139f5
MD5 fafa6745d33815012f3368f3b89a0943
BLAKE2b-256 b68bd0292966034015b68460bfc77f89bb42595858bc57edf8d4a7f88494a828

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.8.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.8.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.8.0-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 72067ad081638d0af127e6f3da8802482893b7af775e4e4a21c6020950efa2d4
MD5 2ae6a9005f3487fd065f618809ef3ee2
BLAKE2b-256 64fa19228f161f0c21ddbe729b2b0a1a000154ec74266fee3dbe69ebcddee1aa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.8.0-cp315-cp315-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 d353abb68369c203deeb7399c5312d2bce93d1d6ee345da42d416f40b0b8c01c
MD5 812e1aafa38bd1feedbe28a5301ebc79
BLAKE2b-256 f192731cd7c63f11a6ca51ee0f8a37fcba09ef98cdc6dae6b1e30289557fd21c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.8.0-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 674e116ccc20f840e1a4bab6484ddb2141b4350ca7399feaffbec5434ca8a804
MD5 c9f41649171e3b3894a258b0ceb0f95a
BLAKE2b-256 51e3773489c25b19a184d7acd4cfe953263f604a1a798a803d6d1bb2e0dd5a6f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.8.0-cp315-cp315-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 f2a0bdeab82392b15f212cc4cd1525a963411514c48eb4c2d79d3143e3803f5b
MD5 0ad3aae41117233a1fc207d66ad8db4e
BLAKE2b-256 2451831f9f0f0bf08509b00da66b60a27d9afba19034bbfe5d2592c5cbbc8f65

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.8.0-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6f1e25612ed430a4f2e097a01f74fd1f3d7df2beaa94ddf08d5e75a99a6e4b8d
MD5 0440df2092619d09e18ee7b5da5588ab
BLAKE2b-256 076671a43ca78c64d192ee8257ac0b252d5aedda73916c2a47159ddcdd3d8fdb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.8.0-cp315-cp315-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 38117ceca8318d91c4e7d9fb024c4df6b5b73126c8f6dfe0d2ec7c65ab666a44
MD5 79d184eb549831cb554ee5127849ed39
BLAKE2b-256 58d5ad5f7f4af770f12ce369e168e7a002e9a312ba54f5d052a94e1db29da441

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.8.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 889310d393c2e4d41680ee312e299523615e6601d48be0424e72fa7e41d3c2a3
MD5 df2bb3ea170716b3cd73b72bffa973dc
BLAKE2b-256 91246cc4378bb2184840146d2f24610e8cd9d4b309f7e1f66f1ce378812d6661

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.8.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 416e67cf80e6c5e2788d7b970903fe3959b98909e5264e12b9dca3ed18cfcd21
MD5 0e03ddd577b2b92e3dbcfe2e64c15c8c
BLAKE2b-256 d8b58573c1e739cd443a61fb94866e6f7d54dcc8d415480f22f14883c3baf3f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.8.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 74a298e4c619055cf5e0ae41d865df86ccd1125b8541299a5c6cb7d91c3d0323
MD5 238ca53ed4c18fa1ced1ac946d27fccb
BLAKE2b-256 68fd92d9f587091d90786dd21e4a6bbb66da72488eb27e3981bc74c1ab508b95

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.8.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5a5bdced49d668a6a0c1c9c9910af689e4a6df2f0ff26c81d3c3111b4a0205e4
MD5 ad1c3338ba91238f6322dd22126e3920
BLAKE2b-256 818f16fab5589b850123be7fb30bab925df67ba7e9183c039b70bbd1a81ec93b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.8.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c6ed74693491dfd5975f36f992e701f2a890f3bf3841523d4ddd4a650daba216
MD5 ca96806af8100c70a6e1644efd61af8f
BLAKE2b-256 20fa950fb818e4db8570917f5523c8dc1e58942828422de7958b1d5164633654

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.8.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1b8e6b4dacdbcbe2fc472b9b6d6a581ed9f555699942824bdd0548ecfe6e6454
MD5 7fe5495fb8b83e4be460ce4ab0fe6518
BLAKE2b-256 e550e5d4fabf891efc8bc621fce938b2389200c097ec93fee2b46e56279f3700

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.8.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.8.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.8.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 65d8e0abd200421e7b4f99f88e5e354848cb73f1a5a00e0137de6be46edc9468
MD5 c824ec1d3cc740a488e937cc99aae5ce
BLAKE2b-256 a17f35967d11ae9ef5b8366c304006ed2999c254422271a13a46a0afbf915a78

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.8.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 f6786a0d562b8019983cb1a50c3b76c683da772fa49297c9c27036be9b7a3801
MD5 c0cb7cc340bdc8eba7b726c35c36387f
BLAKE2b-256 93cb1aae6f9d5ff9c218006d7e0c72ee9a803bf99e5f605c285b4e521d8be48c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.8.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 037a2e098e4388f67852617c5f2866877f88e41ac01de20e07c59b3f907fb154
MD5 439ef34a62a73a628844ef3bf6ebb7fd
BLAKE2b-256 3e8e7b7aece2862d91869daa4f6b325319a24b9b457abffefeb71381669358a6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.8.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 aab4cb0a3cf6f0e813bc89e6ee576736b0373b77d2ad9199aa62a8227b061fe5
MD5 c13b0331b4117f5ac396ed705998d961
BLAKE2b-256 6598adc91c02c8133d30d16f3a0dcd8fd48add83ecdc36584c1744e0eb2a72e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.8.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dfaec976c4505a713e0cdc1837bf58ad4fa86c410777d54a6b82535a8b09aa7b
MD5 6689d9d849b17afe97533cd2ab1462a0
BLAKE2b-256 379074152273c5d5d9aef5ddb2556383760cbfd805add02666525dc4a90c02f3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.8.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 286b61f15532176d0886baa865a58dca428e368f34ca02fc01a52026af4c63e8
MD5 2560aaa0992a348980af77dc103bf263
BLAKE2b-256 fb8b05017267e40d9b434c3efc7480de53a51f5ffdc5fb83a74e7921d98c2eb4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.8.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 13893ad5b8ab2b2bc30afea2c48a9f63c45338268a80c700e36199beb7a5e58a
MD5 0a998bb20aa752599f5d95de35e2ab64
BLAKE2b-256 cfa0745f9b488287f447d5b3bb6430a83a6f98404c42f87af93e046a5240d1c2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aioesphomeapi-45.8.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 509.2 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for aioesphomeapi-45.8.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 d73e887af6709d00bc491c54e1172b0acf85bb2e993b3959783fdfe983a71d6f
MD5 d7c5a793223db8839f80e7fb2c078bc5
BLAKE2b-256 733c906ab5cb78933df4ff62703a5b039ada9b311cba765f56b4e662eaa99727

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.8.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fa1e269881e0da77dcafc6282b96022b56bc9062080e5e64de30ab829352380c
MD5 178ab51772272a11c321333773b8eec1
BLAKE2b-256 201e66b18380e4d42e208d4e81c5e597ab3f39e89f6a1f0a9277b00fda5f753b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.8.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0c7b068163e231123d4e6d59d1b72d527c048722d104024984a52f353d427194
MD5 5d18b03ad306f167b3ec01ea6fdd36f9
BLAKE2b-256 c1444cf25de2bc893d2495483dd083a2a5d445861622d1ca3c92f335bbcbb55c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.8.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 87ee6d71882cb8091298ec01c795108cca76fbbd305de811fcc756549cd4105d
MD5 931516af8fd592a9a2331702fed84ae5
BLAKE2b-256 fd2964fa4a040d38d3eb2ee77eb1bcbc914422b409f954880cdf8e61f2b85fa1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.8.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3ad869a023b5080a98ca5afddf0837a36a9381c0b1f4f1bafd152ee3a27fca53
MD5 d294ecf467f0b6695f664e1b5299d45a
BLAKE2b-256 bf73f25e2f25d78104f0fdff1b23ef7dd2e180110d971ca391f5dab2d8905443

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.8.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.8.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.8.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 59dca2efe94dcd434d8c83d5e30e11779dc771257541fbc094d1c4ad0c969760
MD5 c2644e003b6129a954206ca9a88f2e9b
BLAKE2b-256 a09e216776ad339b398294a7ddd73eef549f5c08c367da2af291df97134eff2d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.8.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 66f8c8c8c92f2f7828a897db28e86dcbc37b304c262f1eb366b857e3a6339dfc
MD5 7280ac65ae08a6566057a1e3308a62b9
BLAKE2b-256 3d4cd46727163eea39286ffcdfd762901fd13b58ccc3becf5d5238edb8a99e8d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.8.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fc9a9f30f9d8c63931437ef1c38630b02bcc24a1eae8cc41e45a368ce2d5db2c
MD5 40c0bf8f51f76a9dcc91e1ab0c0727ef
BLAKE2b-256 d83be31e59b6d17b020812b7b82fb17d479157de0fd10c31873a528b47707518

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.8.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 e1a1f050f025315ae81c31ea579c7a2c76984e560d37c19ac60cc33e013a9856
MD5 a87014cb43549226644ec9922fb1005b
BLAKE2b-256 126221c7e00f111d587a4cb469bfb7cbfcaca032a4540e17f7dd139e015b2b51

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.8.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3000e421e4aa5ce45fb126d74bd78b4d978903d2c53c6218670ef8209cad08ca
MD5 9081e98996633f7828c712823f536b21
BLAKE2b-256 15be6fee34764aaffe821b3e55ef3c1124c6078ccac785f5ce16388a1e464e58

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.8.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 21abaf8180d5aef8ad79e1721bc108a63dc1b195560d8cd21122cec62ea45f60
MD5 f1c1c96c2f8626298f1486ddcd4d7a12
BLAKE2b-256 a19fc5ecb262f959ab9fdab4188b8ec1bb4a2a67c2cc8e67ff5629b8bec25e0d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.8.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b9f1881979cfd213950a12b6d70fa5330749c46f35c85d40e59daea4a6f1b2b1
MD5 37b5abb966fce3e05619df1fa30ad398
BLAKE2b-256 9fa7366e3fa6b9f9a6ccc43bc586be1d39510ae038bd2e22fa6a83921b3671c6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aioesphomeapi-45.8.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 501.1 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for aioesphomeapi-45.8.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 d91dac34ce7d4d17e4b05a2eb69362d0c66518918feab8a34a157ab5c53cd240
MD5 158265faee5bcab5647fb1bdc9cc9e94
BLAKE2b-256 7bcf602b45e63dbe71fa38492422332807a421279c6b5ad9b0b5a8a6c9be7464

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.8.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1dd647a7c3e580ed8d570b718c6b742218a6670af0430431629f0a8bfba869ae
MD5 8ef7bebb53be8c532cf6558a59e95bf6
BLAKE2b-256 540868c80bc781ddaaff03ffc3792a8d07f8120d8ca753021fd9368d2a58cb4d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.8.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6c99c05ffde5cb53c55d5cfdbb90751dfd460bc8d31fd47ee26a830a68b249a2
MD5 bb9edc375b110acdbaa61012803ed041
BLAKE2b-256 d0a8cad2cd5e3cf342ac1df66d1c48f1fad4c68e190df645c655405fbdd5422e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.8.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c32b6a4d8490cf4372cc25daea0f8b3f60764c6c86774b31ceb5dc97374dd7ac
MD5 c9bdaefad34b4b08c8bda5b5f033c312
BLAKE2b-256 c011ff7e0760361849612f66b04a60ecf9251ebd08e4ca61ab0dbd87debb5427

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.8.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 05a7142da3c3ef7b346abdf05cea1be485fca8a1ecea5614d880b2ef2a5d1640
MD5 b6eb15cc55eefdd938caaf5932ecefca
BLAKE2b-256 dfcffb8a8d581885fa5f5e00ff741dcadd87cb8ca7535ece8e50b39cabe0c064

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.8.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.8.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.8.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b223e299c475d8b89245e3a225d5728f7a0c2a2f6f02abf60bae6724e0c71a95
MD5 fc0a3869964fe35f51d6c91d24b78142
BLAKE2b-256 d2aa3a3a6ce894fb7b6e07f1a8a3b769270c5883297f3fa07b8f81704a9c0457

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.8.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 afea09ab26401381327b4072c733ec3dadf8a54019061fd4c75c8cb6a9a8e170
MD5 57addd52723709c323825bc9b6a83125
BLAKE2b-256 d78b502644684f86cc8861cb0bdd89f6120719ba734ad844891bd80b8d57c91b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.8.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 61684c9a5092ed96df04dd652c28a3e0ba44f53202b3a4250a70a01454ae9cf7
MD5 16bed4ce63fcf840db73498fc8067cb5
BLAKE2b-256 741d5b2384f1099bfe228e8b54142e51597d088b83e496955fd826f76d1db1cd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.8.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 d27c0d32bd40d36588713b9fcd8bf73e496a797129be04d716bf1a2b9ff48b61
MD5 47046433906fbb949e6f9896d527cfe3
BLAKE2b-256 d787a30d02f67de38423287fa556e44d1035ad3fd0eab3a314c7dde4f6f456d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.8.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8018b8ac419b7c0fd54fd878d5572c9a75010662a2e615f2b873b00fac5285fb
MD5 c4d822a3ccab14f31885083db55f3862
BLAKE2b-256 bd229214393046dff68ba4e657de5a0803effb2d9019b6d96a6a1e31d3d1a929

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.8.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 af5dd8b7baa56ddf45bb9ba91096efd8338943feb92ec809089ccb767f812180
MD5 5b59c6b05c2ddba61fceab865d318520
BLAKE2b-256 a5c1af1477dfcf7d4d2de8356aba0e260ebfb5e12a0ebabbf932cb6a15b1934e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.8.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 4e2a6e7187d4a8e54ed84a6815887461097386f5eb32d66c176560f6a19562f8
MD5 2a215cc7513c8a25f02eafc40e872dbb
BLAKE2b-256 9d5cd92e489530b6fa1c60803e837b751bcc40912e09572e883cf6807959deb6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aioesphomeapi-45.8.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 503.3 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for aioesphomeapi-45.8.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 659bc75a0c5193115082e5ccf3380e99e0902272ee131ba5ffacf4e552d3e2a7
MD5 aa0bb84232d7be5b209813cda0424b2e
BLAKE2b-256 b885ccbdcfb871613747ed3fff853613c81f0de88f8be430ca108866908ce2b9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.8.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 85df11aec02490068832774589bed710c812d5805688a4099e9e0f1578b61413
MD5 16e080db32003c104253bfd09283e824
BLAKE2b-256 2e5e3ebe8e2a00a182fdcf18e8b45cd129603e378eef9e0fefdf3ecf702ce1c5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.8.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6f25dd9aca98c19e0ba82ef3eb8dfb46bb1ebf2806de281fa0051392464c7349
MD5 af3899b7a2a06051aeaca870975c0021
BLAKE2b-256 7c219c7a8d3485a119c159b1725538f13002dd4fafa51ea749c13187c15547fb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.8.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c291ed1efc8a625644afcf1f148d0a2d21d64bad76e2c58e0105edf534743516
MD5 d31a52ae34865dc4e63e134bb461b24c
BLAKE2b-256 4f32314cb9edb9bd7a62c9e4663866b565d876b418fb19696ecd1c2378c6d78f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.8.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bd6c6dc986b57edbac69f68a9c339a98220eec49668ec730ebd01b3de1d9c64e
MD5 2f2d19a68c532867659e85e63153f25f
BLAKE2b-256 e2386a6b21014fef67c58f867a0c969036c6dd7d8a6d12cb32876aa3dbd98ae7

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.8.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.8.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.8.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e7ab2bf432bad709d8c4314b46281e81c444542b9c6976951becf93dc45e911c
MD5 6e6d54e7b61772c071429a1939e80789
BLAKE2b-256 7c0953702dc3be187cada0a36c710cd6e9858643494a598a58053646db6bf8d0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.8.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 9bd5db13a6882638ac1c8fdb5962a216a3c4166c17658ba9a0499e626165f96c
MD5 4ef6d65a140843a3cbc6e93a8f85d81e
BLAKE2b-256 e9cfce74474a9f2bb8136176fb5d2c25c6c126abde7261c798381ed0464a64c6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.8.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 20c7eaf3a347731df64a1aa9f7a1ce91409ef3c4889e7e4c78e3faf139e7714c
MD5 c7f0cfb002f9e0b7f71ba1cd26ac453c
BLAKE2b-256 a62296face11c31215d40c5deee30ae044b91c31f919b2fbe59425e4cce04762

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.8.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 9aa206f005366096a680b5bcf5a600ddde3206507642d6d24ba5b0cc102474d2
MD5 ea65fe61401d339948c16f49d925a09f
BLAKE2b-256 51e18ce6d1078f0b2d98a9f6462920adf65a3b3d8b9155c0867ad8cf0e94776e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.8.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4076058f2421673c23b890e6fd418e1a00fc6c8ff2a7abf43656d0e7c6dd021c
MD5 45d3c133210e808e8829b0fb683b0d7a
BLAKE2b-256 f493ead50dbe4595aeff00a0f5bc50a5d72e9003c7c61fc31f538b77a8c46d72

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.8.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 14d6f1415bae7e13a2cd8319c2d93f2b12247fcceaec68e6c93192c31e2c3870
MD5 f3278775a0a9da1817cbac31bc952288
BLAKE2b-256 fc4a95e6f27256bdcfe8f7726160624498c9bb810637f1cbe1d2303c82dcbb11

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.8.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 fd9debb47ef1233aef9fd8300f426fd8f7ba32e21639228560fb5b64d8403440
MD5 f70d38b71f125bf114f188d5c8a8b0bc
BLAKE2b-256 0b04b14f2f42b4365af6e2e02b5d63b1611bef4e3864c9e11efe94ff35fe23ff

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aioesphomeapi-45.8.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 510.7 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for aioesphomeapi-45.8.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 e2292f6ab7c465a8f83f932ab566162c1a9cd8d84cf1eaf80f9875d785cbbabb
MD5 a17c4eefe820875c5411cf0db38c9108
BLAKE2b-256 57aa88a26fd0de89b59ba3c504712cfc97edef0f50b973e3041c44854f59fd79

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.8.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1ec721e79df0826af09c30677814ff24abe607dbd88d82836c2205c15dcc489a
MD5 97f6b6e346505f86a760132a25cfef0b
BLAKE2b-256 dcb786051c2f8820f294ce9b9810b4041204ed2066f5d137ba0d5289fd0f74c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.8.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 513a8dd5d28e91be0aa5efeaf28cb7d6eb82f9946f22b1cbc22d08de3a6b94e6
MD5 e0b95748595e292232e5f5eceece58ac
BLAKE2b-256 62e9bed57f3ffa023cdca30268234bb8bcf6d9c9286b8125026b39fc2c4f3ef5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.8.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7e5e8965575df66e990b3879a5329e6d2395c8bcb672cfdd846d58b062c4be51
MD5 ab13a7e5e0ce23ba2fc3c45798cbb92b
BLAKE2b-256 959922a5769f21f770d6c315df5e2f6d95897f73d3739437fb4950df4bb57e8b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.8.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 41618ced4dd1587b6667feadbdba552ec9ab177f1e2795554ac003f82eb1fddf
MD5 51d0913001eeb9db0a0aca71f614f911
BLAKE2b-256 78129d9275e0a127c154ac0c54ea1a114159d654e3f6ffbab6bb50a0789b8c12

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.8.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.8.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.8.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ae75a8f376d03318fd7a41879c09025735c62d812e96081c240c5cafb3584a4f
MD5 8816d434bfbac1efa792b8bd556cbb39
BLAKE2b-256 ccf236449e07b626dca16c4c3b71c45a05ea06d52c470ae1c6498ede22a0e0b4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.8.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 6f9a25be9b22d764eb9a15044a17b8ad9fda6287c12ff3f877ebd450947d6d91
MD5 a98f6e83ff7ec7eae1f0405f998378c0
BLAKE2b-256 7066ccb109d0b1d88e928f80b75a5076bc8dcec097903a514be96d506ae24610

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.8.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a071ffbf28fc209458c95633ee0c51bd3c8ccbe8925ff5f93e506ee534dc51cf
MD5 c42105a1a9bdd35439ee4c5d0020c981
BLAKE2b-256 6416d5d33c1c168f1333bcf973b880f34ba9b7095732a348ec24a8c96a0b9b7d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.8.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 5efaf63c9de532f4886f974ccfec5ad7e8d564beec085f12c276037230bcf560
MD5 c9f3d49d82b2b3e837ab2aff1d65aed4
BLAKE2b-256 08864615c36c2da2d4c331b76453d6838e2e16229177955262741f6d5f74d6b7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.8.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 77036a83644051ca52b57f4568646cf79cd56ddb841f384718ca8abcb6558396
MD5 39ec06425e244b18febc6a8cd5df80f8
BLAKE2b-256 3176a23c0807293dbccb268fb6113a8795c501967327ad6da63c6fb40725e9de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.8.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 71659faad671920ce5c1f8583d52ddcf9d2c9d944536a633447293118663e08b
MD5 26a7e3130e8092b0b77ccdab952de61d
BLAKE2b-256 03693bac5eec3196147e17bbe0f64bba77c79dc9ca074b72016662ca8dc1572a

See more details on using hashes here.

Provenance

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