Skip to main content
https://github.com/esphome/aioesphomeapi/workflows/CI/badge.svg https://img.shields.io/pypi/v/aioesphomeapi.svg https://codecov.io/gh/esphome/aioesphomeapi/branch/main/graph/badge.svg https://img.shields.io/endpoint?url=https://codspeed.io/badge.json

aioesphomeapi allows you to interact with devices flashed with ESPHome.

Installation

The module is available from the Python Package Index.

$ pip3 install aioesphomeapi

An optional cython extension is available for better performance, and the module will try to build it automatically.

The extension requires a C compiler and Python development headers. The module will fall back to the pure Python implementation if they are unavailable.

Building the extension can be forcefully disabled by setting the environment variable SKIP_CYTHON to 1.

Usage

It’s required that you enable the Native API component for the device.

# Example configuration entry
api:

For secure communication, use encryption (recommended):

api:
  encryption:
    key: !secret api_encryption_key

Generate an encryption key with openssl rand -base64 32 or visit https://esphome.io/components/api/

Note: Password authentication was removed in ESPHome 2026.1.0. Encryption is optional but recommended for security.

To connect to older devices still using password authentication:

api = aioesphomeapi.APIClient("device.local", 6053, password="MyPassword")

Check the output to get the local address of the device or use the name: under esphome: from the device configuration.

[17:56:38][C][api:095]: API Server:
[17:56:38][C][api:096]:   Address: api_test.local:6053

The sample code below will connect to the device and retrieve details.

import aioesphomeapi
import asyncio

async def main():
    """Connect to an ESPHome device and get details."""

    # Establish connection
    api = aioesphomeapi.APIClient(
        "api_test.local",
        6053,
        noise_psk="YOUR_ENCRYPTION_KEY",  # Remove if not using encryption
    )
    await api.connect(login=True)

    # Get API version of the device's firmware
    print(api.api_version)

    # Show device details
    device_info = await api.device_info()
    print(device_info)

    # List all entities of the device
    entities = await api.list_entities_services()
    print(entities)

 loop = asyncio.get_event_loop()
 loop.run_until_complete(main())

Subscribe to state changes of an ESPHome device.

import aioesphomeapi
import asyncio

async def main():
    """Connect to an ESPHome device and wait for state changes."""
    api = aioesphomeapi.APIClient(
        "api_test.local",
        6053,
        noise_psk="YOUR_ENCRYPTION_KEY",  # Remove if not using encryption
    )
    await api.connect(login=True)

    def change_callback(state):
        """Print the state changes of the device."""
        print(state)

    # Subscribe to the state changes
    api.subscribe_states(change_callback)

loop = asyncio.get_event_loop()
try:
    asyncio.ensure_future(main())
    loop.run_forever()
except KeyboardInterrupt:
    pass
finally:
    loop.close()

Other examples:

Development

For development is recommended to use a Python virtual environment (venv).

# Setup virtualenv (optional)
$ python3 -m venv .
$ source bin/activate
# Install aioesphomeapi and development depenencies
$ pip3 install -e .
$ pip3 install -r requirements/test.txt

# Run linters & test
$ script/lint
# Update protobuf _pb2.py definitions (requires docker or podman)
$ docker run --rm -v $PWD:/aioesphomeapi ghcr.io/esphome/aioesphomeapi-proto-builder:latest
# Or with podman:
$ podman run --rm -v $PWD:/aioesphomeapi --userns=keep-id ghcr.io/esphome/aioesphomeapi-proto-builder:latest

A cli tool is also available for watching logs:

aioesphomeapi-logs --help

A cli tool is also available to discover devices:

aioesphomeapi-discover --help

License

aioesphomeapi is licensed under MIT, for more details check LICENSE.

Download files

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

Source Distribution

aioesphomeapi-45.10.1.tar.gz (236.0 kB view details)

Uploaded Source

Built Distributions

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

aioesphomeapi-45.10.1-cp315-cp315t-win_amd64.whl (616.1 kB view details)

Uploaded CPython 3.15tWindows x86-64

aioesphomeapi-45.10.1-cp315-cp315t-win32.whl (559.8 kB view details)

Uploaded CPython 3.15tWindows x86

aioesphomeapi-45.10.1-cp315-cp315t-musllinux_1_2_x86_64.whl (741.7 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ x86-64

aioesphomeapi-45.10.1-cp315-cp315t-musllinux_1_2_i686.whl (725.1 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ i686

aioesphomeapi-45.10.1-cp315-cp315t-musllinux_1_2_armv7l.whl (714.5 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.10.1-cp315-cp315t-musllinux_1_2_aarch64.whl (726.4 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARM64

aioesphomeapi-45.10.1-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (733.4 kB view details)

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

aioesphomeapi-45.10.1-cp315-cp315t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (696.4 kB view details)

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

aioesphomeapi-45.10.1-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (718.3 kB view details)

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

aioesphomeapi-45.10.1-cp315-cp315t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (712.8 kB view details)

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

aioesphomeapi-45.10.1-cp315-cp315t-macosx_11_0_arm64.whl (651.1 kB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

aioesphomeapi-45.10.1-cp315-cp315t-macosx_10_15_x86_64.whl (657.3 kB view details)

Uploaded CPython 3.15tmacOS 10.15+ x86-64

aioesphomeapi-45.10.1-cp315-cp315-win_amd64.whl (577.4 kB view details)

Uploaded CPython 3.15Windows x86-64

aioesphomeapi-45.10.1-cp315-cp315-win32.whl (517.6 kB view details)

Uploaded CPython 3.15Windows x86

aioesphomeapi-45.10.1-cp315-cp315-musllinux_1_2_x86_64.whl (737.9 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ x86-64

aioesphomeapi-45.10.1-cp315-cp315-musllinux_1_2_i686.whl (717.6 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ i686

aioesphomeapi-45.10.1-cp315-cp315-musllinux_1_2_armv7l.whl (701.1 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.10.1-cp315-cp315-musllinux_1_2_aarch64.whl (710.5 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARM64

aioesphomeapi-45.10.1-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (730.4 kB view details)

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

aioesphomeapi-45.10.1-cp315-cp315-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (704.3 kB view details)

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

aioesphomeapi-45.10.1-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (703.0 kB view details)

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

aioesphomeapi-45.10.1-cp315-cp315-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (705.4 kB view details)

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

aioesphomeapi-45.10.1-cp315-cp315-macosx_11_0_arm64.whl (604.9 kB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

aioesphomeapi-45.10.1-cp315-cp315-macosx_10_15_x86_64.whl (618.3 kB view details)

Uploaded CPython 3.15macOS 10.15+ x86-64

aioesphomeapi-45.10.1-cp314-cp314t-win_amd64.whl (617.3 kB view details)

Uploaded CPython 3.14tWindows x86-64

aioesphomeapi-45.10.1-cp314-cp314t-win32.whl (559.5 kB view details)

Uploaded CPython 3.14tWindows x86

aioesphomeapi-45.10.1-cp314-cp314t-musllinux_1_2_x86_64.whl (743.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

aioesphomeapi-45.10.1-cp314-cp314t-musllinux_1_2_i686.whl (764.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

aioesphomeapi-45.10.1-cp314-cp314t-musllinux_1_2_armv7l.whl (682.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.10.1-cp314-cp314t-musllinux_1_2_aarch64.whl (729.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

aioesphomeapi-45.10.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (734.7 kB view details)

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

aioesphomeapi-45.10.1-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (663.6 kB view details)

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

aioesphomeapi-45.10.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (722.4 kB view details)

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

aioesphomeapi-45.10.1-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (752.2 kB view details)

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

aioesphomeapi-45.10.1-cp314-cp314t-macosx_11_0_arm64.whl (651.0 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

aioesphomeapi-45.10.1-cp314-cp314t-macosx_10_15_x86_64.whl (658.1 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

aioesphomeapi-45.10.1-cp314-cp314-win_amd64.whl (577.4 kB view details)

Uploaded CPython 3.14Windows x86-64

aioesphomeapi-45.10.1-cp314-cp314-win32.whl (517.7 kB view details)

Uploaded CPython 3.14Windows x86

aioesphomeapi-45.10.1-cp314-cp314-musllinux_1_2_x86_64.whl (733.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

aioesphomeapi-45.10.1-cp314-cp314-musllinux_1_2_i686.whl (758.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

aioesphomeapi-45.10.1-cp314-cp314-musllinux_1_2_armv7l.whl (669.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.10.1-cp314-cp314-musllinux_1_2_aarch64.whl (708.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

aioesphomeapi-45.10.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (725.6 kB view details)

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

aioesphomeapi-45.10.1-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (666.0 kB view details)

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

aioesphomeapi-45.10.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (702.1 kB view details)

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

aioesphomeapi-45.10.1-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (746.3 kB view details)

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

aioesphomeapi-45.10.1-cp314-cp314-macosx_11_0_arm64.whl (604.9 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

aioesphomeapi-45.10.1-cp314-cp314-macosx_10_15_x86_64.whl (618.1 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

aioesphomeapi-45.10.1-cp313-cp313-win_amd64.whl (564.6 kB view details)

Uploaded CPython 3.13Windows x86-64

aioesphomeapi-45.10.1-cp313-cp313-win32.whl (508.8 kB view details)

Uploaded CPython 3.13Windows x86

aioesphomeapi-45.10.1-cp313-cp313-musllinux_1_2_x86_64.whl (728.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

aioesphomeapi-45.10.1-cp313-cp313-musllinux_1_2_i686.whl (756.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

aioesphomeapi-45.10.1-cp313-cp313-musllinux_1_2_armv7l.whl (676.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.10.1-cp313-cp313-musllinux_1_2_aarch64.whl (699.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aioesphomeapi-45.10.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (721.7 kB view details)

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

aioesphomeapi-45.10.1-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (672.5 kB view details)

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

aioesphomeapi-45.10.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (692.2 kB view details)

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

aioesphomeapi-45.10.1-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (744.5 kB view details)

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

aioesphomeapi-45.10.1-cp313-cp313-macosx_11_0_arm64.whl (599.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aioesphomeapi-45.10.1-cp313-cp313-macosx_10_13_x86_64.whl (615.1 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aioesphomeapi-45.10.1-cp312-cp312-win_amd64.whl (567.9 kB view details)

Uploaded CPython 3.12Windows x86-64

aioesphomeapi-45.10.1-cp312-cp312-win32.whl (510.8 kB view details)

Uploaded CPython 3.12Windows x86

aioesphomeapi-45.10.1-cp312-cp312-musllinux_1_2_x86_64.whl (733.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

aioesphomeapi-45.10.1-cp312-cp312-musllinux_1_2_i686.whl (762.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

aioesphomeapi-45.10.1-cp312-cp312-musllinux_1_2_armv7l.whl (680.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.10.1-cp312-cp312-musllinux_1_2_aarch64.whl (703.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aioesphomeapi-45.10.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (726.5 kB view details)

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

aioesphomeapi-45.10.1-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (675.6 kB view details)

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

aioesphomeapi-45.10.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (697.6 kB view details)

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

aioesphomeapi-45.10.1-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (752.9 kB view details)

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

aioesphomeapi-45.10.1-cp312-cp312-macosx_11_0_arm64.whl (605.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aioesphomeapi-45.10.1-cp312-cp312-macosx_10_13_x86_64.whl (621.5 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aioesphomeapi-45.10.1-cp311-cp311-win_amd64.whl (576.8 kB view details)

Uploaded CPython 3.11Windows x86-64

aioesphomeapi-45.10.1-cp311-cp311-win32.whl (518.5 kB view details)

Uploaded CPython 3.11Windows x86

aioesphomeapi-45.10.1-cp311-cp311-musllinux_1_2_x86_64.whl (748.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

aioesphomeapi-45.10.1-cp311-cp311-musllinux_1_2_i686.whl (786.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

aioesphomeapi-45.10.1-cp311-cp311-musllinux_1_2_armv7l.whl (690.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.10.1-cp311-cp311-musllinux_1_2_aarch64.whl (724.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aioesphomeapi-45.10.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (741.8 kB view details)

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

aioesphomeapi-45.10.1-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (688.4 kB view details)

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

aioesphomeapi-45.10.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (718.7 kB view details)

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

aioesphomeapi-45.10.1-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (775.6 kB view details)

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

aioesphomeapi-45.10.1-cp311-cp311-macosx_11_0_arm64.whl (605.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aioesphomeapi-45.10.1-cp311-cp311-macosx_10_9_x86_64.whl (619.5 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for aioesphomeapi-45.10.1.tar.gz
Algorithm Hash digest
SHA256 6e8fc26a0f25191a140e59d8748f9cc02363824c6ccf30610ea7a06638cf36b9
MD5 2eb3d76a7a371cf30e534caa45d77dec
BLAKE2b-256 aef32daca45f18c4d21d2c43f549902743e7279ce114a26eb7878607824cbec5

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.1-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 d58993650938973ce883879e3522a89aad818f80b97e2890fb7030fc9d242f3a
MD5 843be374b59e924d9a12b552aa55d1e3
BLAKE2b-256 706d08052546623209c2febd0638398fa8fb6f9ff41c4e2825c5886c6620ae93

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.10.1-cp315-cp315t-win_amd64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.10.1-cp315-cp315t-win32.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.10.1-cp315-cp315t-win32.whl
Algorithm Hash digest
SHA256 ba8bb796901b196101eec9332feadf166c3c53785d1f0ddc2307f9f9ccfe67ab
MD5 d5578e9e2b5c3f8c3df4b982f4d15da2
BLAKE2b-256 33c6f11eec6f3958dbb9b5741a3e35695aa93570a3155507c63418609653556c

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.10.1-cp315-cp315t-win32.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.10.1-cp315-cp315t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.10.1-cp315-cp315t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5aa6583fc820b21bf28c9dc2d2e564e39f5a3be7d607185c2174792037ee0037
MD5 f95e02eb07d3c7191d778ff1e30100a1
BLAKE2b-256 78e97ce408e654b6a12d61b64f3f3728796f89d932c9966ae7d680b52cfd25b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.10.1-cp315-cp315t-musllinux_1_2_x86_64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.10.1-cp315-cp315t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.10.1-cp315-cp315t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1ac3330e5b91daaca65a4569bd71d2543b5bf4e55ef34f0fab5b34e32471693a
MD5 32cafc3d7d257e34e4626e8858b72fa0
BLAKE2b-256 fe0e5a6f00711e36cd1374c277531f65ce0e5c094ed3c363521e0bd3fd6a2a12

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.10.1-cp315-cp315t-musllinux_1_2_i686.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.10.1-cp315-cp315t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.10.1-cp315-cp315t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f1566ce2ddede90564bdf688f61e7886f9a9853259fd6d640b97c6fa8b48d5a9
MD5 ba6fb0d34bf240f3c1c755df7fd047c1
BLAKE2b-256 5a21aeabbba8926e668ea20b572eb42c91000b06119b0bab68259d1d285cfff6

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.10.1-cp315-cp315t-musllinux_1_2_armv7l.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.10.1-cp315-cp315t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.10.1-cp315-cp315t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5e0e7936d74d1dd8cb5bcc218db8181740164f15588c46d9181322a95fb8b3f3
MD5 f75c175903406f09f4dda1aa54edf4d0
BLAKE2b-256 63fa6749f36a7769901bf4955fe86c96c8059533de93eac38e8a972b1e836977

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.10.1-cp315-cp315t-musllinux_1_2_aarch64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.10.1-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.10.1-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f8fed6902b2e2130e83f905fd338ee60493e89238bda7cf7db1dc04d7f39ae70
MD5 c696e7c05680c218a6bbe47d5ca8bedd
BLAKE2b-256 14d9374cb6bb6371772cedc75ffccf066589da1d4cbd1c68afb19d846c00193d

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.10.1-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.10.1-cp315-cp315t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.10.1-cp315-cp315t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 744c1abeb4c6554440a05da765cf70f48706ac9fc2d4149aceeef932dee8bc58
MD5 0717bae2d2ffce4b0778a492394e0742
BLAKE2b-256 c47e4e239bf82c1ea401edf336ff36311f3bdcbf708b729f49928ff77422bf23

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.10.1-cp315-cp315t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.10.1-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.10.1-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2126880f653554a699ec8490385e14c1eea32b2ff0b5355ecadb7690c45317ab
MD5 4e7b7a280765fe983b540619a268fb5d
BLAKE2b-256 663ff21058301eb7c624e2cddb5df043d622e7b581e91ec736b2b1bf90d3d595

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.10.1-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.10.1-cp315-cp315t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.10.1-cp315-cp315t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 c103092c8df5e109744805789f485e48660bba5a6c940d98b62eb8879876528a
MD5 fff530bbde078477e9fa71d5260d1353
BLAKE2b-256 9a661c3e7ae6929a10c97aa6e80c45d442f828178aa1ece8af6460455a1ef84e

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.10.1-cp315-cp315t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.10.1-cp315-cp315t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.10.1-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7804b98bf48d6809a10d9cc9fb0b8c8083d3565fc9b6578ff1060812ed03d88b
MD5 33236f1302441dc688bb5aa443faa50a
BLAKE2b-256 4eb69e20670d2c4c3cbe8a8d6396d65bf9cae5b0cf4d033eaba8bee5390431cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.10.1-cp315-cp315t-macosx_11_0_arm64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.10.1-cp315-cp315t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.10.1-cp315-cp315t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 4791e4a9bc6aec66991ba0dcdd0d367e8fe611dfac3c9f9813de804a83986270
MD5 ce5f9938764093cce081c7f910628ffe
BLAKE2b-256 ac5f339338343e881cd0ee1a0bae4356ed2305d9ce7e727ae6d392a23591cf07

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.10.1-cp315-cp315t-macosx_10_15_x86_64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.10.1-cp315-cp315-win_amd64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.10.1-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 4d5bbf45d6faddd783e85bae67d4926f335f78c3eae6d769d944364b2c270957
MD5 5f9d780bcae597d11bc45cc3e74203b9
BLAKE2b-256 400a5b95ae038821655e63d7156e2ef7896c255e79860da03298913845aa1731

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.10.1-cp315-cp315-win_amd64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.10.1-cp315-cp315-win32.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.10.1-cp315-cp315-win32.whl
Algorithm Hash digest
SHA256 2cd22ef4f64dc927dd165664783fe35beaa1b927db4b0419d761d30fbea6c6cc
MD5 ede88012f8f612a216c4352dada29de3
BLAKE2b-256 2dbb2a552e6e59d1d9c134b0623132a9816d69131710f7dd5f0cbf045fb97a6c

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.10.1-cp315-cp315-win32.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.10.1-cp315-cp315-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.10.1-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e6e50f77d87799014e92600cbbe6a9b90c4af7b9d8c36145bac0a175e8619b40
MD5 d264afba16f6be581375216a023a098c
BLAKE2b-256 66f61d8a2ba060584fb490fa36aa0551bd20f0d5ee94081d550fc4a65bba333a

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.10.1-cp315-cp315-musllinux_1_2_x86_64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.10.1-cp315-cp315-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.10.1-cp315-cp315-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 034c4170beaefd542313ca7b47fc485859589d253f9a87e6b95d43f52c83ea34
MD5 adee745e616a44b5be68a95843283e3e
BLAKE2b-256 89e96df45e26023bd3b5291fe4b05c470af21577e9957dde87c556054cf883a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.10.1-cp315-cp315-musllinux_1_2_i686.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.10.1-cp315-cp315-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.10.1-cp315-cp315-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ab489a8a6a7a35a98b2cc5305977da617037d3dd8f93cb5658a1ed32732e12ed
MD5 327c443c05705a59eb31a0b2c5a31aac
BLAKE2b-256 b17af2e984588270b2ac2ade0cb5841c12c9b3ec9a84838d69ef2ba1ee6c57a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.10.1-cp315-cp315-musllinux_1_2_armv7l.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.10.1-cp315-cp315-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.10.1-cp315-cp315-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4afbd375451e82c23f27cbf8e61d19e14eff6fb564962c8795c384509f8169c6
MD5 fc80df7de1671dc15e3e9a0a83c7f362
BLAKE2b-256 c872904afc5a9b112e02fe58737efe4f1a0b96f112ec47ccafa9f3ba37d47318

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.10.1-cp315-cp315-musllinux_1_2_aarch64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.10.1-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.10.1-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 05b26bc8fd98b95b1d3b4efb9e17dd2948354879a5118059c20c445ef4004c53
MD5 74f778237f8d5788c74e9d4a5076030c
BLAKE2b-256 77ec27b40eb688c311cf0766bd928b4aa9dcef65a77bf4e3732393556c0c02a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.10.1-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.10.1-cp315-cp315-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.10.1-cp315-cp315-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 f74a510a7e0ad7aa0cb644c9cdd7654b73f78f684b4eefc74c8f64c801e8ff2e
MD5 3909f6efa9f275a189eec6115007ace4
BLAKE2b-256 eb406815d364b2c0f2ffa1badb88ad8c23e0614001a6db9729675e4666d787b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.10.1-cp315-cp315-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.10.1-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.10.1-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 41a1d0af3fb46070e92802caee2c8abafb26c808719e5555869fb3890a1b2666
MD5 a7279a61295103e14665cc7842d9d655
BLAKE2b-256 e4fe88a7f27ac457692595cd27ad7adb547a244d92894ab0ae00af265c7b9e93

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.10.1-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.10.1-cp315-cp315-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.10.1-cp315-cp315-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 7460ef46a294c95adc8ad75bd2f4dfb2f42bbbbf722643763215724f7b4d81f1
MD5 bef09502c01f3a9f9935f49288702554
BLAKE2b-256 23de72be393fdadfe14576ac3da1dd468b5723c96751f61a61f9f70c403602ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.10.1-cp315-cp315-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.10.1-cp315-cp315-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.10.1-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1471a11579c2be47faef29ccb694f919ac7f4eaf66f7d127c4626b392b99f2cc
MD5 3316a36a7ee62716ba22dec31f762cc8
BLAKE2b-256 6678b8320098365bb302bde74dc91f3fd50524879a1ab84b77ef022b1a9e727a

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.10.1-cp315-cp315-macosx_11_0_arm64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.10.1-cp315-cp315-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.10.1-cp315-cp315-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 c2bf7310c1de45c1ab4d6800c7414ba5ae51a32d980d19377e5b830262c705ef
MD5 0e7c74fd5f87d928960e94e181e7da7b
BLAKE2b-256 9c5acd2e6c8f873e73dabecf2717f41bc034d038c96457e4b7abd4fea863c5bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.10.1-cp315-cp315-macosx_10_15_x86_64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 c09aaea899588f130ec5780e74c988a0034b9b443cc39420b78498b409865d13
MD5 16c74cfece51245d057cfa97465d9e2f
BLAKE2b-256 01880d7b6d506df8e2354bf9943a17758c169e66963237bf0dc164cbf9a953ee

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 c32a8c8117826adf3842027f674f3d03a1146ffbb0a482beaf0dae3510e00be0
MD5 0a74bc4237266652597808093efc3040
BLAKE2b-256 bc4bae7bd838c7b2ede9a83690f7258a84a1c9983db0b521f31d4b8fcc792709

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f265e5d410a6184752482359b6558eb8672cf91feb25251029bb708483faeb5b
MD5 6c7269c6d8375f286d6eb4b53ea36a77
BLAKE2b-256 94a7b5e0df32ce51ce777e2514917e5a5989d9ce1f8324174cbc9fef7748aa81

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.1-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 177b9aa6fce2a71e0e73a1dee28c9c52e17bae54238416b1da0100aaca6e226a
MD5 63293a7b5d7c9c16e0ea1a1156ca8336
BLAKE2b-256 6dfefd4daafc00bf37212936fc75939e6faca371904f586724d2c08d71637501

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.1-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e7a7d9df4a986a7f071253f76f4403cf286bc11bcb6676be14c23967a47fb82c
MD5 08560219e6b00a4b67d1e5d456beae16
BLAKE2b-256 ff0e2401c0e69dc1db6c341aa6238046ff3dc5a0d3e97999a622abdaf7e7fc06

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 994eee18070773f88f60cb450279cc7615ef484a65dfb692ef511fcb62492759
MD5 a306986eca559a53ce254afbabc96841
BLAKE2b-256 0bf658d5450e158b205c9495f235b14c8156ac52eeb82b80292054cd0fb96b66

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b34e1c7d6cf308752ee35789c39b3889a14bf2ffa03fc3245bd9da2b934a9eac
MD5 e61e77896c82390a6f71fa9981cf6ae9
BLAKE2b-256 99c7c52eacad2dee14e655e2135c0d9f281036e8fa2174423b9b2be48d64f585

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.1-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 fb78de1a7ced523c2511407d6abad80ccb75ef1c388680dee5a11aa5d480e381
MD5 f97adc1d82254cff574718e4417f49e1
BLAKE2b-256 51e63b254d37674d362d13e26797859bea7d11003de1e5cfa6d47f26ff192158

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 177a0c7fe4f2a23879baabc92943cb7adc73cbdf3d6776df18c30dc815ca2451
MD5 1392f520c2771b5022a62ad9d8ad74ff
BLAKE2b-256 afa25cd4d263006cb9cf53a582d3ebd25e9f85894b34267031ab69fb5262cb8d

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.1-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 a036bd5dfed53391a1bd58eac2df164ae21bf5f69fe4522623e8db689946f7f4
MD5 aaf01b27001a349f6b2898c7fb3568b6
BLAKE2b-256 968be6aa8784aac27167ed91335dc424e95f74db79c0f49ee0aa9b9a277dadfa

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a3eb5aa472168323415a1504ad9a8224434e6fec7d28aa4d63746baa5bffad78
MD5 c51dfae996ffe030e41c16cf61920845
BLAKE2b-256 6a9b7c54afecd0279e09f912d9f1ffaf6d6379ba261be48256bf2b29d98a57e0

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.1-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 803c9c3f93310106536a9b7c09dfd9c9a6a784ef993885d29e5278df5ac5c238
MD5 350c279dd3d34b3e535d49605130c53d
BLAKE2b-256 690ef89ee6bac19d4143d702f78dd3799e5ede89de02e3e5d2c816dd4e3a110a

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 5c081cf58194ddf544e49a60a590b73d2c19c9a3207febad0b84e7e3ee32f9ac
MD5 fea672523870a93788fd2b1a4ef6076c
BLAKE2b-256 2985b23df1380f2072b0faee419e92c27250855ab3218d99fd62782abdb5d3de

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 f35b471b14c5709616c861bc30ecd82bf589e1311a4bdc9fad7436fcb948a31d
MD5 63a1925f028c3ea09667c822ccb4ea89
BLAKE2b-256 bb0f7472ff18dd924710c99d83e83175dc4b8f8a518b839624ea5f44cf8d7032

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 92962431b30673da1591ba106c36127f6dec57ecc34b3d58548f530c5eef7d76
MD5 3aed30d3aa8244f9a809aa38b6b98707
BLAKE2b-256 5001a32c1b3a916d4cd4a8a5601f995365a84f27f20024639dd9a0e095468f22

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.1-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f84c1c8c9411b99a60601fdb1f4194f4ecc3d2f35f3d40c07ccf2609932dfae2
MD5 599878be6d2ffe78663b7a6171d38b7d
BLAKE2b-256 a52186fe10afd3baeabc4841039c1f35b8ed031000ed05b7144d96c20375d562

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.1-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 da8e3ca5c31e1c5ec0e73c7272582948bf295c6f92eff1f52dc2f1b7eb2a568a
MD5 4dee4da5aab8fcf1d5a2d7f2c16bce6d
BLAKE2b-256 1c2b69a7c4917e753c3f9ccbd6d18ab1aaa1f74cb1a38e0265ffd5d7f25c0524

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fa299e10c2f9273448d154ecbd7eaa6177f283f629c295e1844c9cbf9b794509
MD5 e80fb14a9dfe534c28bfc708dbfc873b
BLAKE2b-256 0fe574259d165763f80bf09e6221ac07805938ab9ec261709d479e53ae474e91

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 60e0293d6abbc0b4ebd3cbb4b59312368bf5ef54fbe3d3baae09cb0769a69fe2
MD5 3be875f9e5430ec5bdfcedb15ef28212
BLAKE2b-256 dc2086a73cf15e8877aad556446e06ec0da699bb20013e77db89da39986f8f56

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.1-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 3d0b301ff9c7f65475df32c11cde09bcc86ac89e73ac414166ca84e57fc2c2a9
MD5 e3c59f69ce9b5c9f81a9f9b0834886d4
BLAKE2b-256 d9c0f4677f9075a91ad643f436aac28aa9e6b931b9d2c8413ba7831dd4f78b51

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0bdb1e0c97e3d5d8f7fd6f8517881dd71a10770440f7132cd5281ba943d1a152
MD5 26561b9a8c758c9dd4ed9584f59c2a77
BLAKE2b-256 50c44c5487f2f945c0e15696de897708b24aaa678a9384715d4eaa53576ef881

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.1-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 a758c39eca27508ab1f07f3c9cc1aee2cc72500b2e50e8d3dc6f9a8644c3fea2
MD5 53a576a359fd7a6d7968bf0aab9d763a
BLAKE2b-256 2f134a7f22cf4121af69288f35f33e83de8a4f0676b1930001144de761ca5fbf

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 32cb2fff7ecae4eb92c365985a34f7d7254858f42f6486ee61c18e2cf1bc2655
MD5 1f863ba88e4b5ffa4c7fc05154a31ecc
BLAKE2b-256 537210620d54da44fe2550243ab11bbb098da57b8a78a9d8f062b725599d3360

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 b50f054fef01de9214c501256d52f413dcadf3b99645f3748bb64ed850e64b6e
MD5 77227b8d22c4f643e944c84dc2472665
BLAKE2b-256 eb0ab4a62420a561ef93f917e2d7b62c9fedad983c13c35a1db7882167a414e8

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 5b655c64d9707ac70000865ecf5dca5fb2b7556d1c7f0c306c09c96664023639
MD5 8e464f518e29c4dda4ad3cb11dfee8c2
BLAKE2b-256 11648a8f3104f830702e9aea98a999a4bb074ca15838acb12fad51a8d472ce43

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 34654682651927589a9cef4cc5840df9aebf705b6760f17aaa16f91dcd0b4ee7
MD5 9ab7ef773477f3198a5b9c0b9526f8e3
BLAKE2b-256 8546c96d8561f0c24e1ee6a8f01d12a42cfa53682af7f8e14e6de1ba0863ea17

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 de6d5be01c6a4ef32f0efa74e8d97acd7dc07c008405a2c0aa7f793bebb5553a
MD5 317edc6255d713725e9bf6babafbc6ab
BLAKE2b-256 a90666d0b50e93d621ded18d1103151d15f7ee6ad02d77d32a21cbb15da84690

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ba2f6e56c02b4bacd46f654e86035fb8864558a7ceaa4a32a62f5b49e93c55a5
MD5 d1c5dd8d0b586ec1dbc33042442eeb2e
BLAKE2b-256 d6cfbc8f4eca90ea06236cd95cdeefe4b998c4f128a8b7fa4c9e4dcf21efc76e

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4a02049c88ed7a81d705b022367c077d3a07b8413661e565b5aa9ce05ca92a56
MD5 8736ccaecd956e37aa73ec19872b7b76
BLAKE2b-256 47b3bb63bf85633f016290ce24e9f87b84d0dc1215ab8eb4662590ceba772cc4

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2d99a22e3560de9f61c077300833ab8254fe71fdc94025952020ce33ed62b986
MD5 1632b9002e06d6b199658ed0a906f4b5
BLAKE2b-256 d79452fe24401ce9e98f6e44bc079cc9dbedba51f644ed00f377bd75371b864b

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 272848b22f3511fc750eef7e74c5c4a86fcf0f343982e569c9e997cf17dcad7b
MD5 87dd991d442b08a3923d402e677b77b0
BLAKE2b-256 81eeb1c5cba032d0b71dc65ac78e331f24c2221e7551e4a7ab91cdd809860f3c

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.1-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 8d36f6e7614c0b4cfc7a933d5dbdaaa7b264eefb70c719725ce642ff0bfae5c4
MD5 c06965e13c0f5698d119be7fd87b39bd
BLAKE2b-256 8b2abe1c1f92acf7b6d7ee75d12059c36c598f4c690f1d80a57b73893d7642e0

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 73b165c4927c4da1b866d0f52da910a8216caca13a1bb247cd00596dcc0a2f6a
MD5 89ee36b291f293a8cffb7dd18159ee56
BLAKE2b-256 4ad41400b071349fe24d77b8f15a88b8612590313943a31723722c9a4ff3dc37

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.1-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 b05871af22bb6c0fbcede1693930435697e2357415f4cc6c39f151ffab2e9020
MD5 82571c6db34c2eb94b287dd100913b40
BLAKE2b-256 f5802ea42fe6809ced71668ebdd355347641b777e89feeb6b05f3584f9c925f8

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ab3ae294c4894ec2dd5bfa472eea2b4578b4a093df4a9d4637e63d9d8cac114d
MD5 efb537fa70cf8b1e4e7b72e879164a73
BLAKE2b-256 dfa75dc6b65b68e106f35c19fc28ef718ac2a66b005a8863104ae84b72531822

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 26411d4d67fbe2a309e35b445233d4b6e89d50c2109bdead8f8c5c1c24f9c6ea
MD5 7912999a39168de2136d57344ef8ea51
BLAKE2b-256 5543f169ae42fe1013d1815ea601555e9867a5b35cb15929dbb2075e54b77ec4

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 bccfd40458bdc577a357e958ec44328509e9f7604644e965c047abc2ae3d9afc
MD5 41e9a032c0bb9ba11af7b9c4ab458997
BLAKE2b-256 c7f4aa89fca63703e5ea145629c653b71a98683b4d42b49d4ca53dd41d658568

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 959ea25807d74eb39c1aed0ffe92fb6af53b1d8ef4bfaebcf6a081b7d37b6913
MD5 d2b53fc822964a220e9928772451e29d
BLAKE2b-256 dc01e7c6fafb6ea3d615bdfbe4ff47ca7642ae82270425c3fb8e7406dde02d56

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7800562804ae6af862eba82c88d3e5db07b8b5dcd98396be92e689155d35074f
MD5 03da8bfd5f77d0915007bed7c6e9b72e
BLAKE2b-256 02584fff48b72c340349a116b69007cd1c5d2334ae72d4351009de0ce1ad0293

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 96cd61700ca02cd6c235f31b19a7e4c475f39b5deaf10b5e01dd993d99d0f392
MD5 36979d8d20c9c464f3505af879bb6336
BLAKE2b-256 e32b2eb75177404f7a78ae22075510a1912b2e0802202b9dca694004caa522b9

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9a7356020b95a515e2347045d5ee4f7efd6409d11dca23f77f889165f2408d46
MD5 75fad3b70de20b0490934c02e806c0e4
BLAKE2b-256 7f4e626cfe7e19936ae0bd15f5d6ad8a10cea8ff19d9ac4a8cf5452e3e928811

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b0bd5e67d818b45fde5f83a608d14d189f064ff696c061cbe119731632d77d33
MD5 8515d0bd1ba8cba78bf1bdcc277a623f
BLAKE2b-256 29e0019cdc93801a4783d5d30073ccf1860ac126479313310ae8d1ff5ee6e358

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 da5a9e1739a8de361dfd7cf24253a85f5c5a9044aa328aa5a3dd996a1863bffa
MD5 14d2c072acdea5e30d69b834ddb30dab
BLAKE2b-256 637a1f4aab060815f276a70174d958d992ba79c3a2343c5553cf79a77efc99a5

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.1-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 902dd57792c5d1529602004cd106197a0f27b9e5172c02d0e66c1ea89e9344d2
MD5 545695074ee9ce8e9d74104705abd277
BLAKE2b-256 31163bae634bd3c897dcae074907f41c9f494238354c23e88e755579d0332ef3

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6f0049853904cc27e914492931513a3dc7120e174736428be72574b221814cf9
MD5 37363d353978f5bd651958aad458c826
BLAKE2b-256 a7d554f84dc6827376d6b0e64d171fce2823bf8837fe20c50a8a7dc850ed2615

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.1-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 bf73bbd06dc0915118a554f14a4f8506b689e0b5273835560d0ff139b46a5006
MD5 7872adffc15ca97c8e42f13c65ff3a44
BLAKE2b-256 7c75d971605e4017a0f23ee53269a2b676cbfbea2ad687129af6047bad262228

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ccced7571de9d1d4f2a0a37db649217eb2c54a042e7a915a7b925073b3a18200
MD5 a36c14c6dab54ab4c04b1e84e06e6c35
BLAKE2b-256 6b81b50f85fb16b27bf0a3b59a1afd7e385e6f5b4d3dda4b41f0dc6f1bfed642

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 dd749056f3889fe78932a13d04281e4ebe41db6ce8711a49bce6e42347434df1
MD5 1d2e63a1f3b838aba084625e5b8b63ab
BLAKE2b-256 d5d532b5ae4b75effffa3452af79a89c69336b3f00e83aeccbd4d6fdd5e9d71c

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 98708f49608bfc7323f6a449f861b926d545a86f77fa85b0c0aa97a89692c8a0
MD5 7ebf6a78cbc1bc02037a18c482bf1532
BLAKE2b-256 45f46d31fb3ca83babdd558662b9bcd50ada61e4efe6f5506949fe30c537e1a8

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 f15cfbbc7ed3b24203bf1811e26b8ac3d254351f321b4c759383a5c87505b663
MD5 88c6abed2583c14c4e203714b05855a1
BLAKE2b-256 06c08317611b7fb5d4b70461abf737650cc4aab42a108779df63049280d498c5

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2e20a870f0d8c573ff3fe6c90a030058624c46f7fd548f65ea799b4978fd1a3b
MD5 8f055d18d897ce952ee4fed00fbeeadd
BLAKE2b-256 7513ce76a672f287a894ebce31ba022f56681fe44db3291003281eb1b1cd686e

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4b1c046cea513e0aff4ad0fbc8eec492a01cd49c4d2102ca56e6f31a7d895ffc
MD5 e234b101191d6ae4dd37c091a48a592e
BLAKE2b-256 d995e003a6497b6272cc8d451f1dd1b3e948517c09f401c037654e0775f2291d

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fa015a7cd10c1f6dc8eff0a3ab80c45bddc4890a406834c36fc9e27880c1b17e
MD5 52697926ed2d13c255826db063bd3ea4
BLAKE2b-256 597b700d3b8613e8373ad2451ee501dc344c51b7458a55f722355e621f87a90f

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d2462e3e5dce86f7c37b4b05bbfb7e59480a25177386d797944af922c58adafd
MD5 eccd2baf5ccefb56a49e0d117d42f4bd
BLAKE2b-256 9213fc67c2f46ced3da4e25f34afeb62c74a75df5f25fdd2d8a158e7f3a28de1

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 672afb90874c658906497a524a536205e6232ebeaf551d9ba5a6da35738b5043
MD5 f35ea18885281f108e3ae219bd1dfe99
BLAKE2b-256 ee9dcc676ef501b0509d6ce2d39534e06137e1b2cebb04b2d576737e8645e683

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.1-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 e6f57deaea73e6e60f56ee7904d46ff3ce796b7a5161a2210ad3d2ce60e5e80a
MD5 1754d3d24a9049d5d641952c31188cba
BLAKE2b-256 915907ce4d8f39a69deac3975321760484abac97327247e32064f7ef67e799c3

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0ea32c4a2678cdaa188a10cba57e72237509df98702bc6c17af80866e46ff586
MD5 6f0402ec369f95affda229060ce5db5d
BLAKE2b-256 93987535f253012d86bd1e09ff8d9baf5e02cfca2cb2249e5cf9ad70706e9170

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.1-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 bc76198d5ce5166f6f0de385295ba6915ee06e311ec6741a07acfae8edab8a0b
MD5 fad559f70f593975caf2031596862414
BLAKE2b-256 f1b85b37ecab3d3b8887c7551920fc778a0064e383521edac48d01f492a7fbfb

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a0c25c7181a3d27ca66d59673a71f3c582a34b288eda68022f7ed1f785e9c984
MD5 4dd5578a66a2a2ca98b682d86259a92a
BLAKE2b-256 d11d338b74c0581210aff7273b23cfbaa576e6995ea80bd048b7b63415c0803d

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6bf63fd2d14e9f1055420ac145f19f6454642ddb33924aac185962d39e1581b0
MD5 407fdeb66b9a695a55dfef282316e286
BLAKE2b-256 93a50f2726e94e84cca59d62b8e7b33b094f8fbe0d2a1a54fdd213f4b0aa2ad6

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

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