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.9.0.tar.gz (232.1 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.9.0-cp315-cp315t-win_amd64.whl (606.9 kB view details)

Uploaded CPython 3.15tWindows x86-64

aioesphomeapi-45.9.0-cp315-cp315t-win32.whl (551.8 kB view details)

Uploaded CPython 3.15tWindows x86

aioesphomeapi-45.9.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.9.0-cp315-cp315t-musllinux_1_2_i686.whl (713.5 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ i686

aioesphomeapi-45.9.0-cp315-cp315t-musllinux_1_2_armv7l.whl (703.4 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.9.0-cp315-cp315t-musllinux_1_2_aarch64.whl (716.2 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARM64

aioesphomeapi-45.9.0-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (722.3 kB view details)

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

aioesphomeapi-45.9.0-cp315-cp315t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (686.9 kB view details)

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

aioesphomeapi-45.9.0-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (708.2 kB view details)

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

aioesphomeapi-45.9.0-cp315-cp315t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (701.4 kB view details)

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

aioesphomeapi-45.9.0-cp315-cp315t-macosx_11_0_arm64.whl (642.0 kB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

aioesphomeapi-45.9.0-cp315-cp315t-macosx_10_15_x86_64.whl (647.9 kB view details)

Uploaded CPython 3.15tmacOS 10.15+ x86-64

aioesphomeapi-45.9.0-cp315-cp315-win_amd64.whl (569.5 kB view details)

Uploaded CPython 3.15Windows x86-64

aioesphomeapi-45.9.0-cp315-cp315-win32.whl (510.1 kB view details)

Uploaded CPython 3.15Windows x86

aioesphomeapi-45.9.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.9.0-cp315-cp315-musllinux_1_2_i686.whl (705.7 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ i686

aioesphomeapi-45.9.0-cp315-cp315-musllinux_1_2_armv7l.whl (689.7 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.15musllinux: musl 1.2+ ARM64

aioesphomeapi-45.9.0-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (718.0 kB view details)

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

aioesphomeapi-45.9.0-cp315-cp315-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (694.8 kB view details)

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

aioesphomeapi-45.9.0-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (691.3 kB view details)

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

aioesphomeapi-45.9.0-cp315-cp315-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (693.6 kB view details)

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

aioesphomeapi-45.9.0-cp315-cp315-macosx_11_0_arm64.whl (596.2 kB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

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

Uploaded CPython 3.15macOS 10.15+ x86-64

aioesphomeapi-45.9.0-cp314-cp314t-win_amd64.whl (608.1 kB view details)

Uploaded CPython 3.14tWindows x86-64

aioesphomeapi-45.9.0-cp314-cp314t-win32.whl (551.6 kB view details)

Uploaded CPython 3.14tWindows x86

aioesphomeapi-45.9.0-cp314-cp314t-musllinux_1_2_x86_64.whl (731.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

aioesphomeapi-45.9.0-cp314-cp314t-musllinux_1_2_i686.whl (754.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

aioesphomeapi-45.9.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (722.7 kB view details)

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

aioesphomeapi-45.9.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (654.8 kB view details)

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

aioesphomeapi-45.9.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (711.8 kB view details)

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

aioesphomeapi-45.9.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (741.0 kB view details)

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

aioesphomeapi-45.9.0-cp314-cp314t-macosx_11_0_arm64.whl (641.8 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

aioesphomeapi-45.9.0-cp314-cp314t-macosx_10_15_x86_64.whl (648.7 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

aioesphomeapi-45.9.0-cp314-cp314-win_amd64.whl (569.5 kB view details)

Uploaded CPython 3.14Windows x86-64

aioesphomeapi-45.9.0-cp314-cp314-win32.whl (510.1 kB view details)

Uploaded CPython 3.14Windows x86

aioesphomeapi-45.9.0-cp314-cp314-musllinux_1_2_x86_64.whl (720.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ i686

aioesphomeapi-45.9.0-cp314-cp314-musllinux_1_2_armv7l.whl (658.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

aioesphomeapi-45.9.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (713.5 kB view details)

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

aioesphomeapi-45.9.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (656.3 kB view details)

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

aioesphomeapi-45.9.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (690.5 kB view details)

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

aioesphomeapi-45.9.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (734.1 kB view details)

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

aioesphomeapi-45.9.0-cp314-cp314-macosx_11_0_arm64.whl (596.2 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

aioesphomeapi-45.9.0-cp314-cp314-macosx_10_15_x86_64.whl (608.9 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

aioesphomeapi-45.9.0-cp313-cp313-win_amd64.whl (556.6 kB view details)

Uploaded CPython 3.13Windows x86-64

aioesphomeapi-45.9.0-cp313-cp313-win32.whl (502.1 kB view details)

Uploaded CPython 3.13Windows x86

aioesphomeapi-45.9.0-cp313-cp313-musllinux_1_2_x86_64.whl (717.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

aioesphomeapi-45.9.0-cp313-cp313-musllinux_1_2_i686.whl (743.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.9.0-cp313-cp313-musllinux_1_2_aarch64.whl (688.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aioesphomeapi-45.9.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (709.7 kB view details)

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

aioesphomeapi-45.9.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (662.3 kB view details)

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

aioesphomeapi-45.9.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (681.2 kB view details)

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

aioesphomeapi-45.9.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (732.1 kB view details)

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

aioesphomeapi-45.9.0-cp313-cp313-macosx_11_0_arm64.whl (590.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aioesphomeapi-45.9.0-cp313-cp313-macosx_10_13_x86_64.whl (605.9 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aioesphomeapi-45.9.0-cp312-cp312-win_amd64.whl (560.5 kB view details)

Uploaded CPython 3.12Windows x86-64

aioesphomeapi-45.9.0-cp312-cp312-win32.whl (504.3 kB view details)

Uploaded CPython 3.12Windows x86

aioesphomeapi-45.9.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.9.0-cp312-cp312-musllinux_1_2_i686.whl (750.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

aioesphomeapi-45.9.0-cp312-cp312-musllinux_1_2_armv7l.whl (669.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.9.0-cp312-cp312-musllinux_1_2_aarch64.whl (693.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aioesphomeapi-45.9.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.9.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.9.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (687.2 kB view details)

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

aioesphomeapi-45.9.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.9.0-cp312-cp312-macosx_11_0_arm64.whl (597.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

aioesphomeapi-45.9.0-cp311-cp311-win_amd64.whl (568.9 kB view details)

Uploaded CPython 3.11Windows x86-64

aioesphomeapi-45.9.0-cp311-cp311-win32.whl (511.7 kB view details)

Uploaded CPython 3.11Windows x86

aioesphomeapi-45.9.0-cp311-cp311-musllinux_1_2_x86_64.whl (735.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

aioesphomeapi-45.9.0-cp311-cp311-musllinux_1_2_armv7l.whl (678.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.9.0-cp311-cp311-musllinux_1_2_aarch64.whl (712.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aioesphomeapi-45.9.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (728.6 kB view details)

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

aioesphomeapi-45.9.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.9.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (706.2 kB view details)

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

aioesphomeapi-45.9.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (761.6 kB view details)

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

aioesphomeapi-45.9.0-cp311-cp311-macosx_11_0_arm64.whl (597.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aioesphomeapi-45.9.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.9.0.tar.gz.

File metadata

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

File hashes

Hashes for aioesphomeapi-45.9.0.tar.gz
Algorithm Hash digest
SHA256 caf544ac5b0114ddd2a3b5bec95ba15ce8a8680b925a50847ae6cccc04e90bdc
MD5 3cc67ad89f399a5a01451c13f7340524
BLAKE2b-256 d80e9620e56b4c8bc836d3f235a995350e22d5a569f0a3f0171f5df55e765683

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.9.0-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 f7439878fe342727d3487f170e2eaf2842b4e52b0266afe29a0f370ed0b6731a
MD5 4c12c3530912d87256d347e35baed585
BLAKE2b-256 aac3cb4b3ec12c4e64b24791d6b3f6134f638d4ccf900f873601c1ac105c4042

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.9.0-cp315-cp315t-win32.whl
Algorithm Hash digest
SHA256 8fe755e3ea8896dd0731ad82deb16605e36982ebf5f9d51a39051f8219c89378
MD5 648e14b45a9a17e725a7cd6c73f7d28e
BLAKE2b-256 28d0c90c287834266c09b6c0bb469ed9909159ae022a46b804c6eb40b2bddca6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.9.0-cp315-cp315t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 af54a6c17f70598afdc42d140d8ecfa85edf55aee27de5616949cb589eafb25e
MD5 62da0355bb983741b1f7ee571f33f67f
BLAKE2b-256 537aae687ee118e3f49b7079c08083f6923d71bdbdf1dcba941d62ea4f45313b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.9.0-cp315-cp315t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2a3d3f57eaa3d2456ad7c80b1ac7d1933209f78dd21c76c94455179ad1c676dd
MD5 bbcc592665d243bcf45adc08e8c8ec8f
BLAKE2b-256 0fe4af2b0c39dfca8d19e74e3d86763408f6cf740a60db5d9f44f40efcc500f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.9.0-cp315-cp315t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 77c7f3ddb60647eed1e7780f514c5d39bf631b1d5ff03ea39ea82b4e21f2d41c
MD5 acd7ab0c93c75434253c38c444fe0a9d
BLAKE2b-256 6579d701165ac9f3a74566e946ba37374b50caf0896e46ced31183b5cb69bc44

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.9.0-cp315-cp315t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 099476428d82f6641b3ea360bf1dc45cd790556d24677fef6bee3e68158071c7
MD5 491295710b175cb5e3521f5acba58017
BLAKE2b-256 489f4fa7f0b878540b8f7bd7185b09b3d810f01b0eb3d323717038a56a4ed86e

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.9.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.9.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.9.0-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dfe36d4d1cfd6637339286c4ef7a44bb9af7927caffa519d13be4527f0e2766e
MD5 539ffec21096b49f4ce1d9d2e9590957
BLAKE2b-256 cf791dc5f1bd9751be146b79565b19f758095373dda525254db0fe7946c77924

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.9.0-cp315-cp315t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 8e2b5f2a8e1ef7dcb4bfd639e07d3685cb38e39c04e262c85b82c41099f82756
MD5 6bb6722e3f6dc542b57f6fd4b4645e38
BLAKE2b-256 64fcc60ea93dd2ae2923e2186f7f671fc4f869e2f8b8304576ef1d89879c7160

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.9.0-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 79d88bc53785d77be81b3d039b5bb1cb4a082f7a4521e8fafbace7351d0345d1
MD5 86637eb8dfacf33027b3f6ed26384b28
BLAKE2b-256 c57afaab2e5490cc658ab00a7760e1ad6d3583e2e769374daa98caeeead26275

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.9.0-cp315-cp315t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 59e4b9bbfbaae554adbc4996942726ebfd8929447b53461824fd332541f2585a
MD5 b6918310e6fbe4a8936c13122f4da74b
BLAKE2b-256 d06bd14a5c4a61fc2cf7ac2121f57d7811b9d79ba8d44a13e48d393d5f2b6fa9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.9.0-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 67ea36e311b6008be75a38bc2377fb51d0f397aba4df66818a38e5795dac8a74
MD5 1bdf894db019321422036405b2c4959a
BLAKE2b-256 673c97af90e6223d2fa4c978177927613f84ba08ef3d3b8233f0269d2a3fd2d1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.9.0-cp315-cp315t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 01452b6ab68afd71d192b63030559a19b6ebbdaee75eea4fcb7648f108576f3f
MD5 2978d022541cd5e3f96a071e0c8ba280
BLAKE2b-256 9b2c54089049cc1b687c3f61e369fe0435e0177b81fc12d0d2de17d93facb255

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.9.0-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 9d04391e00b33e5301467ec0ac3a1aed845a36be1090725535602ade0bd02caa
MD5 d8e74f535550ae1eba0c698352f0c953
BLAKE2b-256 dee0b2f0b103e21b35d18aff46c5e625fcb26d2be6723f9d1bdcbbc19a0f514c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aioesphomeapi-45.9.0-cp315-cp315-win32.whl
  • Upload date:
  • Size: 510.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.9.0-cp315-cp315-win32.whl
Algorithm Hash digest
SHA256 5dd7955f7a87d58ec827674e1c4352b5a9e1b1a079288cb36285c1e2e2d0ec84
MD5 bfcacb6367233bb7ca352cbdd115439b
BLAKE2b-256 3c4c43540add16cc6613bb34b2f5d8df184b0c6a97399bb3d7491dc279a1128a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.9.0-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a8de120414a07fc10fa1c7927e0565b4f524fbcef394751fb60aa0c01b0b855d
MD5 8995aa930a6495e9a7a05b348885d968
BLAKE2b-256 e429ebd8e1c4b2b48efd5ef7b8f7db32883022d0a6e774a30a6c153302eeb2c5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.9.0-cp315-cp315-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c2fa97b985e7daedc77ab585c67bf40eb60c33d5134c3548aaae75b46da30a41
MD5 d2c81f1b4d30a13e88b06aa6fb50e9f1
BLAKE2b-256 a144918980fe40a25ef4465b10fa29022288bdb40a7f8c58c50dec8bb8311e48

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.9.0-cp315-cp315-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e841ec25f31b9f19928fd130d41b832a7959a475b5f2ee6406772ea9661286b7
MD5 5c797d224217eb4a0c38071ecd751a8c
BLAKE2b-256 9f09c00dfe2db3e73904e9c63870e91a9923047eae2426b1b2e8eb9a857b8fb3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.9.0-cp315-cp315-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d8bf304c3b88d23ac6d96deca18bc67a53ea28304fedfdba7a0bb441cbcc7535
MD5 b636b2dd971552d4c17728652530e972
BLAKE2b-256 1e71c0bc2956dbca6fae429b3b10c3b9ca0ecb618af5a680a681831ea59ad39b

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.9.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.9.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.9.0-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6b5783b8c3725cc483a05e7da748a6d826bafcfcc358609626b2b6a047f576b1
MD5 57ba95181c48e471fe61d98f60c30303
BLAKE2b-256 d2e46286dfd08b4d568ee312ad7aba3b6d4c619f498d5dec45fbc3be3f2f87ce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.9.0-cp315-cp315-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 fe8e6da6021925872759cd79e292675af4e4ddca8d646491b689f6c3e74d5e71
MD5 884f62562180dea110fab092e4b3e4c1
BLAKE2b-256 21f441b59a994bb5922d98399ac67c4945b11e67e85701fa75b96b723292b080

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.9.0-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a200c6a9477f3e209a761057a30946b5e90be82c0290d092f8e8549006f6cc93
MD5 deb37d98948779066677d6ef82ca59f2
BLAKE2b-256 768443432bcbd0ef8d222cf794f83f161b4ad8c297ccad31a78f3441a9d90f3e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.9.0-cp315-cp315-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 8230b7fd468a77861b7b23c93841dd70c9f949540468e095c708cb7c5d66d27f
MD5 e716fba09b1bc17db147c45244c5cd63
BLAKE2b-256 8c01175f86e1ffa709ef92b8c66b1918cd3a8471e3412058dd39beb8b38ec597

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.9.0-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0268dba239972cef992b522a7e689248823a49e5154fa6de33cf62054a42360d
MD5 bdd46d56e27cf29f83c1d801866de0d1
BLAKE2b-256 0c4ee2edf57581fec44fa52890aac65af32fc870cbae3e2cbfdce0cec7ac7d11

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.9.0-cp315-cp315-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 4973acc18a8752e4b37502d77ce4b23c2c31a4e427cc2e5de1be91c08dd66e7b
MD5 2d325d9699b1afa84d60df8a1a8fa08f
BLAKE2b-256 55d44feb4deac8ad2b99fb6953bdf2d3d2acbd46a0ffc5610189eaf14c3373a6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.9.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 604712d80df401130749698cb71d72d3c1437d4b12daf46b1568b2851e6ee2d5
MD5 5ed32c31800f68b2e303ebb75a4210e9
BLAKE2b-256 5c1cc33a17372c0488febf193701eaed97af8c6d67f7b759964006c3e09a00a3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.9.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 658e8ca33c530705b5cf0edfc85f017b24cb5501f78324a5eeb0b8f121620d4b
MD5 dc8fe54f6e6dd53eee413fbde3d94f50
BLAKE2b-256 c8c6fa94a40262f536f7b3ca179f6b1aeedfaf4b32ab1dd51cfb0e6a065e591d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.9.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e80193711f1e67311bc38fccd938ea65e52e426ebee2c6cf40a3fa742b0be950
MD5 29ae6fb324679935cd7b936c7699bbe1
BLAKE2b-256 fc1fe3cff4fec8bbf8dad14b31d3986d2118605f4abf00cc4cc1f99b383f3c1a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.9.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3e37e68f88b73ed02ce2190b07605541154a17bbe65663db7029b62b4f76ac3f
MD5 b971c3b0e15f55bf350f48bc9856bbad
BLAKE2b-256 f8c1009a0407ec76f33a6e998dd827f2b61324ac2a618df8a47aae4df814842e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.9.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f609a22634bffaa8a1fcdacedb01d6f5e0a9602b220786d1bf0269f2cf60c425
MD5 0eec5b8f9945efc9013490993ce57d95
BLAKE2b-256 e1e93bb720e382f6f3f199dfdaedee7cf380a1e42939c5c9529d1dc61bc6cb6d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.9.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6e93821eb90d5eb26a8b559a7b2ef55c4c3ca52a04873fc51aee5320eef6061b
MD5 c465e772a9f5fac07343eb61eb1612af
BLAKE2b-256 e4b5021c402203fed29dbe22e932f1b78a290140303ea51129dcd10e29c3588d

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.9.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.9.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.9.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 aa6d444844ba47980f8c307c4d563e185e287f99250ef4882078cc92a70db646
MD5 c1b0a507488cdf0c96ea6465f5c40cda
BLAKE2b-256 34d4e5482d08a1eebf22297d6b3cf19de3232cc6069bd27c6efc221360839d47

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.9.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 04c50366fdd2aca0a0a7a2c6bc8427ccc31abe51a92a3e87af43064665a3d540
MD5 22bdbf42ab92319fe2e58accc53c4f0a
BLAKE2b-256 d1326f515b6a008d4b862eb4b147f25e27e673490e034afc156d858151802c1d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.9.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c5386e2f1a91d174bd01cc1ee7aa071270b24eda40b4f4dbf23e3e7e8398b27b
MD5 c29e866ce155bfd0caa740caed53fc28
BLAKE2b-256 aa9cb5d9e5a73ae9fc8bcedc4e2250ebe568215c6d042bc2f4cde7fc0a8b12ff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.9.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 70b59ed8ea49d4ec551a1e551abff3a88f6640df16fb09ad6b3d426620f97146
MD5 63af21a83d00ea5a7b7567e98af76e55
BLAKE2b-256 1dcedb42e0fdd4f542fa25c9b48bbe9734bf5419af4d5658626fef935f57225c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.9.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ac75d8578ecd32a554c1ebc89186009eaba6f5cccce9f82de283c549c3c3aea4
MD5 5d443070270de9049f6e42bde3e24ee8
BLAKE2b-256 0f901de57c8913838fdf9bfe36f666b09d1f998e3cd834351450603da655a71f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.9.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 85097ebb1c41bcfaacf7daf14b27d98e41cfb0dbb88bf31ab5687a7bf2ed30a3
MD5 f9167cd227557caab4fbc1af2bd474ea
BLAKE2b-256 fcafd2b5acfc288150064fcd35f8ff1b3f379e93d46b786b2e54ace2ff17787e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.9.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 e848bdd108c0ae5796440212542d84aac8ba02e9365228c25ee31849cf75f832
MD5 7beed9d2bbc6456fd90d62dba0e1874f
BLAKE2b-256 654b010517bd048f5cdd583ffcd875805837b07e1aab1d885855a2d5b2993de5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aioesphomeapi-45.9.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 510.1 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.9.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 93b8637dcca3df69c8d7f4cef1d7db7fd9ecf70cd6191b05ffff49d3661ef666
MD5 a397dc0fe54800600d725672194b42a6
BLAKE2b-256 a2f712974a0d868e6ac0bd1bb255dfb247f0aa72eb163f9f9827fb4b730f06b0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.9.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8f049bd1fda6d897db377d646e111f1f5c80ccc9dd61d347da8624f897145e6a
MD5 1448e0d95e780a965de2b6f4283ee2e9
BLAKE2b-256 7222f96244419c86ff92ce82fb3488c4b3833b290066fbff04fe474228d3f262

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.9.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6399d51921cea0cb3b29b3b3618e65b7a28a073be96683e14ad1b1e0f0408c50
MD5 706db5228e86853d2ab9b55dbf6ab780
BLAKE2b-256 0d8956b30e48309443d20aaa93866418af0d0fa661b46ee272fb179f230f86ec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.9.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8f07b3bdacebf0c5ee9e8bdc258fdaad370cfea02ed7ea8621fc66e93d6f3343
MD5 a4d7f152cbf20b2410e53b8d203796c3
BLAKE2b-256 4ab63d85fc3123f39b2821c3dcf758ed5f0e2e11285723f99bf645463fd75e55

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.9.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 29ceb7c37d99088fd64233d4ea97060de6f5381ecaf3646a0ffc0c7c32d8101f
MD5 c33ff669624cc62a8d6952535cfb2a11
BLAKE2b-256 984f974fc5a38d39ef79903073386a323b3934054bbb1ac5e0b76eb43a9d9c15

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.9.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.9.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.9.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c9a4eb0477989d0e93ee4b49f5573eff7a1e2f9fd5db03a5e9d0e92d1fa71997
MD5 935849c9ad67178a2cddeadcd05935cb
BLAKE2b-256 25241359cdf274052392f2ed6056313de26b460689947570ca016593f80f715d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.9.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 19a65883e8e01b5825db7081885c2c4e806946c4b32172f949abc48094195802
MD5 1a12074ded1757284070574d4880363e
BLAKE2b-256 ca5e21e5df0188261a936a5d213d45df2503cd828019cf5eb91d45c9d7d0e724

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.9.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 21af32e38dfd6ae7612f522644a40c564a5277ee779b02029d2b5ed90de01949
MD5 6f5dae7dd9e9dae0def53914b08da29d
BLAKE2b-256 5e1f67d42d0174f01584c20fce9946cee06c6d2641008819d3674908363bcf23

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.9.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 4488928741b5a88e9b400fd636151396460152ea270feaab323666caca299ed6
MD5 81ee6d330cca3cdf3af6e4b134385b34
BLAKE2b-256 158804894022351bb069aa9b290ddfeea79bbade6552db151485c92aebbdc848

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.9.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a86439d36700a8353b9b916527596848548fd66e36da585589bd488d1a0eaf99
MD5 7666bfdf2480b5d24ba42d6a93681143
BLAKE2b-256 a2b6c55269c1606fc7d6623d252f3be5665b946824ce4a4e3a9fd050c4b79632

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.9.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 9bc481ee41902f2fbd2cd3b2983374d0342e3edca66a6a4a85bd4729aeb9ead4
MD5 6784de6e47d668edc64f2088840b4fb0
BLAKE2b-256 977d39ebd4fa3068e4b523f2be5f5c8797922568f5b32bcce42e8f71510c1561

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.9.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b5c18887f35ed366e44f4f6608161f635af2360620a7995dfdf7b3cfbc12ed21
MD5 ebad9a49609c8f9f90144792294c718c
BLAKE2b-256 0c6cdca5d4b0bb55a45725a88ec9dddf51fbf201c88951eed2e4456ba4c9b60c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aioesphomeapi-45.9.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 502.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.9.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 949bb7595d4b473367909e9b0b7f8205330e665020f82c12a67061698c047e0a
MD5 f01df864a211fccdf458398ba084515b
BLAKE2b-256 e802e6d3eef3cb5db8d83ce00d00fd286d80c8051fc139cd9af51011e216152b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.9.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 963bbde6bd22d409b4f3d7334bee21e5835926842edca4dd6b553c90c93fc970
MD5 f590a34508d7e327f5c307dd2d04916f
BLAKE2b-256 3532337bd0fc8f82ce010f8f07d9c6abaa334c2c0ccd99533a98887ee534f02f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.9.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8ef065a3834501a3c40eff20ce1046a52972b3b44e69cd0e79c5c851ab4d1be4
MD5 3ef86ea2395cf310cc9fc4a5d2496b6b
BLAKE2b-256 0c874474b393d67c092f11d5a33f67273eaf904b798b76eb78a5333efed31050

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.9.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a57f690a82df2eb046e1152e35976d83852347ad6296c3d232419ad148386d5b
MD5 7d37229f02eb78752f12c6637cb72411
BLAKE2b-256 2181a6c8779df5a256b6f901b73f04bf65bf363644441792b6869a4cf86d3ce5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.9.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dfe8d9aa885b5db14ac3ee1c5d4f0bd6dec6460541bfc4b8c1a066673fd71430
MD5 8dfdfae31480fc0af4dec52c1aff75f6
BLAKE2b-256 bd08da5d003951a08e22863a280ecc1cd032cf43773bc88fd1c40334274eac87

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.9.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.9.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.9.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5bb581616a8bca8973d5cc3c21e0036254e4a3b2829ff68a9e0135c39a80204e
MD5 5558ee4716ae6ebc5f38e92d31615b00
BLAKE2b-256 7c5af6ef9cd09927e327474a3cc47674771fa16322949d528938efdf06554543

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.9.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 9708aedacc931a6642686ed5ebb41265e5cefb32b401999ca78ae23bda3f9e9f
MD5 ff7edb2c8ba53409134b3e38525076a6
BLAKE2b-256 dbdca8fbac3cac4075dea70d797361af51f239b7fed9d8b13485f5d235ef4642

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.9.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 88cb42dff11fffda87d1ca1bf5fc5631048827407704139d42f7c46afab00450
MD5 9b997e758e144b1646bfefd31b39fb31
BLAKE2b-256 a19afffbb56fb196164425d1f152f0f94bcfec0aab8b610587a75e4bd13d5040

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.9.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 491798b0a7950e36f019cf19340704274d1e9c2b4eb467ee7906d1c0bd81a945
MD5 3759bf1c19c2726d804bdf6dbb54e7b2
BLAKE2b-256 5691b4c5ddc2c45f44bfa0ff2ba6e5cdb30d48e09c820752cd270871bcff89e8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.9.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9de426ad2da91d514615660999e65e979c87548e2190b4969c0c542be4655e2e
MD5 7053c9255abf0e3e6febef2328ae3a86
BLAKE2b-256 8c7a01a187f54115d527542e3c7149d527163c41f27550e034f1100f716bfc92

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.9.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 7d220c0b51f318c471503e5a0fa22eae4b7384e32ad1e09b5ba044a184381e65
MD5 c31f0e72628d29ce79eb5ef6de168240
BLAKE2b-256 e2f7fa3ea905c6df04e34b2e74cae7296033070784b4d8ba12de5241ac971e2b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.9.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f278a3b76c0832895b9f6664e74f5b8542bfb51172666bcef1d41f55d6718bdc
MD5 c7e8d0b56a8ee5d781c7ace89061bf99
BLAKE2b-256 7377d3f6361b27f8d48584b8595572c5f91279c64318143e662a199a45697037

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aioesphomeapi-45.9.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 504.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.9.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 6578b2794fea57a5cd2f6b52372dfa51789304d8eb6e715f438e1b4ad3b747e4
MD5 bebc30aea22b8307a81c044a40552710
BLAKE2b-256 fd1a4b0d0b98f659a1a3bc06fbc002d1dce08a76de84f97eabbd8651c990ebc8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.9.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 02638b8ce00c4eec5956039f9c09c1d06447c1d70b9ab7eb031899725a7c7683
MD5 899565414ea4fb32544de62410d7d6f0
BLAKE2b-256 06bb283ed5837cd8da0f2ba4a79b3fb73e48e6b09d520ecb5d849d1b0f863421

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.9.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2f1573f893c30e18ac93af78fbbea24e4d7493ed968c5ad93ed2d2e5967676cc
MD5 18cca3a5df9b07b85a3e597b2ba95cf3
BLAKE2b-256 793a21d8a08569e9465125000311dd9b1c2447a89220b643aa61d2ee94d267f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.9.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2f8d6c19be311fd26aa76bb04b7d51f63d11fc5129585b46fc38479e2a3b29ea
MD5 3eb7eccea4b45caa432a314d4ee6c12d
BLAKE2b-256 ce94970115eb2525325957e8b2be31843372d499eb189ce7c1ea6cbe13f56d3d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.9.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 08677ddabebbe9de0d0caf004db039112969a022fffe8736707fdd763d0597d5
MD5 e4f4c973e7f404e2d1380cf53b9b6c57
BLAKE2b-256 c5dddc1ef810384bb236bc0db31b80dca87675d78b3b1612229a273b56b61915

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.9.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.9.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.9.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 55784305d38f20d23bf811e500a451329f382b54c3377a03575e170c8155aabd
MD5 f5fd6ac8cd7de2f23e1e06f9ff55bf36
BLAKE2b-256 ed5bc7241fe7273768d6727a82c9a904331ec24fa47a815a8b420a5ec2e7dd9f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.9.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 1f644c931baa35c8d8c423ff3abb9cf0a58059d1c284544b3fdd43c536d90ec2
MD5 1f40523f3c67f285d2d984c87294dbb2
BLAKE2b-256 4dfb845cc2be3be0fed93cef47ae28a353160199744798bc9b44ddfb3e91c346

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.9.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 59c535f94eb8879b2282e7759384443536240a22c0b10a1235c158d1211027d0
MD5 1f53d1eab94cff25b47db247285ee674
BLAKE2b-256 159d222cf9dff4e43a838dedd595fd067d521d8df960c954cadd39df6f903e24

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.9.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 30d2b59041b7e87a589bd36567f33bf4ece4e0c96b30ae88a009540df6e1818f
MD5 7ec5664b548c4f8000b4e4936ac57259
BLAKE2b-256 3f62f7592bef75accae9c1b71066f2e906805087e62168d5e0d81419d6e85cab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.9.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5d65dc2a45c158236bfff8f08fcb45e4d95baa729a9c36b3a3f25965e1957f28
MD5 f715e5a7553cc41820233fd6a3333cfa
BLAKE2b-256 ae0cc56cb700318963e585381b7914cd8bee1da12653a2df8fa13ca6df781d95

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.9.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a498d40e7e6b2f410b55db518ff731db4e3e1d93ef5a60a64afe27e7551b0f30
MD5 6527e8bf9c6e3f3d9ca3c9b0695f3327
BLAKE2b-256 fea37c8a968692b1281ad23fc92fdbbb45cac3d348717ae635e22ce127600bc4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.9.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c072623a0167fd924a445ea783f6850f0fbd41497aabbbc1810c7d4e373fb2b0
MD5 f3ebb27676ca5c47713889f8cc584f86
BLAKE2b-256 4e811cb7dcf209bca46644ea86b363ce16a5d5e4b435ced19c7ad03004174064

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aioesphomeapi-45.9.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 511.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.9.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 2360f6b47fd180ad30ca81c19743c7687713050c21369585db7efe1147cbdaad
MD5 1e7b0fcbcae1b659caf0894df1d67116
BLAKE2b-256 dd3f7e9bc8e3149199a349714ef28cebce9a2a11b25a7b4b2566b6738b9375c4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.9.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d8780552fc99e74eb42aa56cc347d1790f6afb515705bc12076a65871fb8f93a
MD5 9932fbf21e3491410f6d0a6878ceb728
BLAKE2b-256 6463d21b27eadf8b3efb7adce7d3bf491be0ce9fbe9c3d65f6f333e79f8eb8f4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.9.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d0c0e2e0e619c9f002178be153b2b43e715baa3b854d28015d9ba04e1c8553b3
MD5 570d8f736ce9703854ac426024bb36f0
BLAKE2b-256 abfa17882ac93ce220989389f63fa7ccda5aa49565923b1b1244d378f073c60f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.9.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0f239cbf9f5c07815a12a88c8c6b8b4521c7a106db9bb936dd2ad3d99ec642bf
MD5 f47e89d6c8968df14848feb9f9c52e08
BLAKE2b-256 ae81f425fd933eeee65b3d4bc7ef798519187051cad5540adcda8fa8c998605b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.9.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b675e03703db456f3d4cd3c0e26842de20698b337681a8bac1e0c28cb17043a0
MD5 200b5923c91ac34aa2e34cd678c1a602
BLAKE2b-256 416ea0dd6ad537ba0c314b7d54f06521009cbfc1bd3e8a955766718c1ea7da19

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.9.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.9.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.9.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4b8fcbf004f47ef6834bf5923cc8d26839b65b87ddccae4469b68ab29ec93860
MD5 b584ed927ec89cb3725d1246023e549c
BLAKE2b-256 29d572c70223da60f01e45d014bf144840769d1fbfa1eff1fa3088d4813f742f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.9.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 6c57a7a0f4a470c78b06483280d5dfb880df2c92a4e7a3cd3e99c9ba84801ca2
MD5 d0b8c055b414eb03e22e38213a585d05
BLAKE2b-256 a21492921248d07d29b3798c2ff02ca6280e77c7083cde9d8f40e77a7cecdb30

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.9.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2ced2efb24fde2d41b9fa5f36086d505632ab36f73e48404f64932027a43c374
MD5 f67859482d766e5e9bc97cb40b25d5f2
BLAKE2b-256 f5add09e2c7619e68bcbf213d28a48850e38d86ca5b2c8d46e31bd4456c896cb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.9.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 e07cc6dcd23890803fa3a3683b4ba3a54cd2a1274168403f71ff415d0202e71e
MD5 6a8ee727817814f1fb520e000982febf
BLAKE2b-256 f4c7a0626449f7cac5cd9e602ab34778d4e575b8188dc7624e622c61c8f753b5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.9.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1514212aa23a5bd63957d42c011915d04f8bb47702ccb2bfd7a738e5899a8f48
MD5 bd2e4b57ba46ae483e2a77ed7dd99134
BLAKE2b-256 b70d7db1b84a56f006ce7e0fc8b1d7e0dc1c1d0cc6464d542b180b2fdeabe379

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.9.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2eec7129e7076354dba6b59789d6043ed81bcd2b5aadb166b7c12abc4ba1e3f6
MD5 6f5b2ec08cbe5edd26e86b233ceabc0b
BLAKE2b-256 ff0837a729d3b8c51db8e207798eedb33ea82e0e0a2a7b410651c7ef098b753b

See more details on using hashes here.

Provenance

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