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.2.tar.gz (236.8 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.2-cp315-cp315t-win_amd64.whl (616.6 kB view details)

Uploaded CPython 3.15tWindows x86-64

aioesphomeapi-45.10.2-cp315-cp315t-win32.whl (560.3 kB view details)

Uploaded CPython 3.15tWindows x86

aioesphomeapi-45.10.2-cp315-cp315t-musllinux_1_2_x86_64.whl (742.2 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ x86-64

aioesphomeapi-45.10.2-cp315-cp315t-musllinux_1_2_i686.whl (725.6 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ i686

aioesphomeapi-45.10.2-cp315-cp315t-musllinux_1_2_armv7l.whl (715.0 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.10.2-cp315-cp315t-musllinux_1_2_aarch64.whl (726.9 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARM64

aioesphomeapi-45.10.2-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (733.9 kB view details)

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

aioesphomeapi-45.10.2-cp315-cp315t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (696.9 kB view details)

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

aioesphomeapi-45.10.2-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (718.8 kB view details)

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

aioesphomeapi-45.10.2-cp315-cp315t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (713.3 kB view details)

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

aioesphomeapi-45.10.2-cp315-cp315t-macosx_11_0_arm64.whl (651.6 kB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

aioesphomeapi-45.10.2-cp315-cp315t-macosx_10_15_x86_64.whl (657.9 kB view details)

Uploaded CPython 3.15tmacOS 10.15+ x86-64

aioesphomeapi-45.10.2-cp315-cp315-win_amd64.whl (577.9 kB view details)

Uploaded CPython 3.15Windows x86-64

aioesphomeapi-45.10.2-cp315-cp315-win32.whl (518.1 kB view details)

Uploaded CPython 3.15Windows x86

aioesphomeapi-45.10.2-cp315-cp315-musllinux_1_2_x86_64.whl (738.4 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ x86-64

aioesphomeapi-45.10.2-cp315-cp315-musllinux_1_2_i686.whl (718.1 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ i686

aioesphomeapi-45.10.2-cp315-cp315-musllinux_1_2_armv7l.whl (701.6 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.10.2-cp315-cp315-musllinux_1_2_aarch64.whl (711.0 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARM64

aioesphomeapi-45.10.2-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (730.9 kB view details)

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

aioesphomeapi-45.10.2-cp315-cp315-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (704.8 kB view details)

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

aioesphomeapi-45.10.2-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (703.5 kB view details)

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

aioesphomeapi-45.10.2-cp315-cp315-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (705.9 kB view details)

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

aioesphomeapi-45.10.2-cp315-cp315-macosx_11_0_arm64.whl (605.4 kB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

aioesphomeapi-45.10.2-cp315-cp315-macosx_10_15_x86_64.whl (618.8 kB view details)

Uploaded CPython 3.15macOS 10.15+ x86-64

aioesphomeapi-45.10.2-cp314-cp314t-win_amd64.whl (617.8 kB view details)

Uploaded CPython 3.14tWindows x86-64

aioesphomeapi-45.10.2-cp314-cp314t-win32.whl (560.0 kB view details)

Uploaded CPython 3.14tWindows x86

aioesphomeapi-45.10.2-cp314-cp314t-musllinux_1_2_x86_64.whl (743.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

aioesphomeapi-45.10.2-cp314-cp314t-musllinux_1_2_i686.whl (765.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

aioesphomeapi-45.10.2-cp314-cp314t-musllinux_1_2_armv7l.whl (682.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.10.2-cp314-cp314t-musllinux_1_2_aarch64.whl (729.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

aioesphomeapi-45.10.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (735.2 kB view details)

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

aioesphomeapi-45.10.2-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (664.1 kB view details)

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

aioesphomeapi-45.10.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (722.9 kB view details)

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

aioesphomeapi-45.10.2-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (752.7 kB view details)

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

aioesphomeapi-45.10.2-cp314-cp314t-macosx_11_0_arm64.whl (651.5 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

aioesphomeapi-45.10.2-cp314-cp314t-macosx_10_15_x86_64.whl (658.6 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

aioesphomeapi-45.10.2-cp314-cp314-win_amd64.whl (577.9 kB view details)

Uploaded CPython 3.14Windows x86-64

aioesphomeapi-45.10.2-cp314-cp314-win32.whl (518.2 kB view details)

Uploaded CPython 3.14Windows x86

aioesphomeapi-45.10.2-cp314-cp314-musllinux_1_2_x86_64.whl (733.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

aioesphomeapi-45.10.2-cp314-cp314-musllinux_1_2_i686.whl (758.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

aioesphomeapi-45.10.2-cp314-cp314-musllinux_1_2_armv7l.whl (669.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.10.2-cp314-cp314-musllinux_1_2_aarch64.whl (709.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

aioesphomeapi-45.10.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (726.1 kB view details)

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

aioesphomeapi-45.10.2-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (666.5 kB view details)

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

aioesphomeapi-45.10.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (702.6 kB view details)

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

aioesphomeapi-45.10.2-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (746.8 kB view details)

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

aioesphomeapi-45.10.2-cp314-cp314-macosx_11_0_arm64.whl (605.4 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

aioesphomeapi-45.10.2-cp314-cp314-macosx_10_15_x86_64.whl (618.7 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

aioesphomeapi-45.10.2-cp313-cp313-win_amd64.whl (565.1 kB view details)

Uploaded CPython 3.13Windows x86-64

aioesphomeapi-45.10.2-cp313-cp313-win32.whl (509.4 kB view details)

Uploaded CPython 3.13Windows x86

aioesphomeapi-45.10.2-cp313-cp313-musllinux_1_2_x86_64.whl (729.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

aioesphomeapi-45.10.2-cp313-cp313-musllinux_1_2_i686.whl (756.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

aioesphomeapi-45.10.2-cp313-cp313-musllinux_1_2_armv7l.whl (677.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.10.2-cp313-cp313-musllinux_1_2_aarch64.whl (699.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aioesphomeapi-45.10.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (722.2 kB view details)

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

aioesphomeapi-45.10.2-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (673.0 kB view details)

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

aioesphomeapi-45.10.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (692.7 kB view details)

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

aioesphomeapi-45.10.2-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (745.0 kB view details)

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

aioesphomeapi-45.10.2-cp313-cp313-macosx_11_0_arm64.whl (600.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aioesphomeapi-45.10.2-cp313-cp313-macosx_10_13_x86_64.whl (615.6 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aioesphomeapi-45.10.2-cp312-cp312-win_amd64.whl (568.4 kB view details)

Uploaded CPython 3.12Windows x86-64

aioesphomeapi-45.10.2-cp312-cp312-win32.whl (511.3 kB view details)

Uploaded CPython 3.12Windows x86

aioesphomeapi-45.10.2-cp312-cp312-musllinux_1_2_x86_64.whl (734.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

aioesphomeapi-45.10.2-cp312-cp312-musllinux_1_2_i686.whl (763.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

aioesphomeapi-45.10.2-cp312-cp312-musllinux_1_2_armv7l.whl (680.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.10.2-cp312-cp312-musllinux_1_2_aarch64.whl (704.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aioesphomeapi-45.10.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (727.0 kB view details)

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

aioesphomeapi-45.10.2-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (676.1 kB view details)

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

aioesphomeapi-45.10.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (698.1 kB view details)

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

aioesphomeapi-45.10.2-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (753.4 kB view details)

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

aioesphomeapi-45.10.2-cp312-cp312-macosx_11_0_arm64.whl (606.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aioesphomeapi-45.10.2-cp312-cp312-macosx_10_13_x86_64.whl (622.0 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aioesphomeapi-45.10.2-cp311-cp311-win_amd64.whl (577.4 kB view details)

Uploaded CPython 3.11Windows x86-64

aioesphomeapi-45.10.2-cp311-cp311-win32.whl (519.0 kB view details)

Uploaded CPython 3.11Windows x86

aioesphomeapi-45.10.2-cp311-cp311-musllinux_1_2_x86_64.whl (749.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

aioesphomeapi-45.10.2-cp311-cp311-musllinux_1_2_i686.whl (787.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

aioesphomeapi-45.10.2-cp311-cp311-musllinux_1_2_armv7l.whl (690.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.10.2-cp311-cp311-musllinux_1_2_aarch64.whl (725.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aioesphomeapi-45.10.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (742.3 kB view details)

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

aioesphomeapi-45.10.2-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (689.0 kB view details)

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

aioesphomeapi-45.10.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (719.2 kB view details)

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

aioesphomeapi-45.10.2-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (776.1 kB view details)

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

aioesphomeapi-45.10.2-cp311-cp311-macosx_11_0_arm64.whl (605.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aioesphomeapi-45.10.2-cp311-cp311-macosx_10_9_x86_64.whl (620.0 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: aioesphomeapi-45.10.2.tar.gz
  • Upload date:
  • Size: 236.8 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.2.tar.gz
Algorithm Hash digest
SHA256 e5a1181304d1b238efbe0dea6420c22cafb856732d7430fcd1f46b8573da45c8
MD5 dfbc72e6f059b814702bbb3e4bc370c1
BLAKE2b-256 a7d4eae2551af9377d735631f7b40abbd002a04485420c18d870ca37d4c21318

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.2-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 8f3d59dd8a0b34b50acb41b2ef9b8fa4f8a4eaefa5e1dcb890a18315f62957af
MD5 20f5675cc57ad337093a1759b1278126
BLAKE2b-256 05e5343c4c5ba51b33043a5ce1e60193ecb2683d3a60aafdd9c1f832117f2316

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.2-cp315-cp315t-win32.whl
Algorithm Hash digest
SHA256 d10a072c4735f38b24c5859901110806341abd781c5c2852ed7fcae6c98e0a13
MD5 d117da7525ea2bf10f92542a919b880a
BLAKE2b-256 a0266c63c39fe9381f1a85faa14737a46afb57b28cb8340c4076d08f587e56ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.2-cp315-cp315t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bd2ad6ffdbd806e2f7d6f1b427b9f037578a7932ae02fda40ec40bd64ffaf8ac
MD5 48eab2fb052ced19ac64216dce9e1f6a
BLAKE2b-256 04e66a81541bac20200c6825cba6a6725f0354e0cb93ee605e10eca26a7c5d35

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.2-cp315-cp315t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 114f5bd0c751e73c71733d5d9977326e15fc1f25888a8538568d14d0c9866f03
MD5 d6bffc9405e1604a62dc23d5b6339a61
BLAKE2b-256 dc1dbc0fbf822bd6e4046cee66cd40dc9893f225cfe97e782b5dfce18b50ce3b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.2-cp315-cp315t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 678a731d69ada2591b45e5298bcd7c083529112140b8e8d39a916693022ebc9d
MD5 3f57bb203feeee82f748f6e3cf037009
BLAKE2b-256 05bfa4bfc1a83125581f39ac13e7baa0fccf44ed59338df1b2264aca02346a50

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.2-cp315-cp315t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8889675c1423b000ff776b855574812235a0cbc2fc9e709c45ce88c65707c6ff
MD5 b808a16893d943ff02044eb9bb6e6213
BLAKE2b-256 0d62bdcc8710760124c1ded30c5a094ce1c8fa37273292fd8cd5b673cf751f4f

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.10.2-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.2-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.2-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6b949aa09b301a9f750ed88339bbb4d48527a13b65878aefc25935c33c52664a
MD5 4098009baeb1beaa5ab0257c294aff73
BLAKE2b-256 f2b5e7b6d376ceef4642dbea518d1bae0156f82ad447d54aaaa506651211c61c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.2-cp315-cp315t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 754fc4370f358f40cb40518949adba85b21b6c88f645da9b322eac681c1e4e9f
MD5 46c22dd714d308baa3aa4e6245ce2140
BLAKE2b-256 d72f8e4b25a0a6154e439fe1418045489629214e030246e88a93b37501a25704

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.2-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 acea9bf967659c0258634d22cbd6dc59d74c03f4d77ff2aa4e592fe7630e4bcf
MD5 90fcf707ccc76e61e363aa9ba3029bb4
BLAKE2b-256 30d6fa3e021e9e34b34387d1d20fefd9d4df3988e422ea54d885cc558069fd28

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.2-cp315-cp315t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 06f5d69386c34d71f1f257aabf0585aac08106bd7002e9ff3d6d7032aa7f3f19
MD5 d976e5aa13db15f1eca07a33e539a3c0
BLAKE2b-256 b915823ac4b169245b81480003d7237da6d87f905d01fd0794753bb735655f8b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.2-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d22d611db02340f7948849f8422d52041ff072eafa791cfe116b142eedddcbfc
MD5 02e18e9918e32019a4c587ca1f769c2e
BLAKE2b-256 9646ae999a8118dc83ba2dd3e662ced46b49a7995441ad6ec4cf3ecdd64bb65f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.2-cp315-cp315t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 9a295a13dc79316ca7163a0d8db2ee5bb5a1a4137e87055596a7ad6ea7a8cb8c
MD5 cfaa48497967509b869342d4dd0a0833
BLAKE2b-256 5a3618632dfd7ee25945c03d9ef7aa061ade217db51c02a939c56b26ef5f4a72

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.2-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 5f88a3b63b922e5df15a8d9b858b335114673a69a3efc8b099cbf1414cf24c00
MD5 81f6afd0fb3c6c56529f30b06491fe6d
BLAKE2b-256 50de35cb68626f7efadd3e11a93d01d7f270414fc1de5757da946a571e1b1bfc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.2-cp315-cp315-win32.whl
Algorithm Hash digest
SHA256 bae8e5021fdf911d553db0c630c961766d6382fe9b7d742b931f925028118d97
MD5 03a0b983e574f9b6fe471fd8f9075faf
BLAKE2b-256 0b8ffde67c66413fa4db8301b67677884bcfafd000cb91e69cf1d72d59f634c6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.2-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b829d76c576a4a14dc066df060da58554fe164742fa1c74b0a233c5cd2459412
MD5 eb7f039100f392677807fe29ffddfe4c
BLAKE2b-256 1a5fc6b810655bc63aa7aa822a84ba2973c1ac97285748a514888e2dc1ae0575

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.2-cp315-cp315-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 20b95839fc2f776bcaa4cced291a10b448cc6ac6dac434d1b8a1b681244a11d8
MD5 6aeb4734c617607721ec0b8a1830abd7
BLAKE2b-256 81cd84df83ad289076eda8958a93190090f010a40b1ed28fe4cc4656c2c86eb6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.2-cp315-cp315-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 128514893548b81ab63bdb5348d16d200d8a98922379b61b617df141532c7e54
MD5 b9d57a2c93bd69d96db27df27b5e5e3c
BLAKE2b-256 8333e1417120ddaf01795a522909436d9b5f4c572303ac378a4b1563fd382d96

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.2-cp315-cp315-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d564246699ee180aeceaf808db0aa3b545b8ddbc62c9d4d1d486e4544132997a
MD5 f7f941f3f97b930b5573bf52d84081ad
BLAKE2b-256 714d0cf77c3ab5529c55124fb90ee560b5e91c17a727a1ec30358fd51084d214

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.10.2-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.2-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.2-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6af9fb04b79bf23a23cffb8bcad1676d3c0ce20f726a6d5a6a932d7321e786d0
MD5 66018b1997ff9e3b4e0e44fe5bffc3e4
BLAKE2b-256 af336585b772a44272eb03f2bf1b129aba6fd56c2da9f409356227a23440754f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.2-cp315-cp315-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 7c4c31198dd534fb1fe15b123330256d05a2abfe1333fc30817e52c2a564a8ed
MD5 084d9b1203486f32945c79b584dbf78d
BLAKE2b-256 121709131f4ed5c90b290a70244b8d3b7d775a92961206e9ba0f38282d672f3e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.2-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e79c74d20f2511119f17e95ed17339000e80fa2b38a340badffd1d5c958b7c0b
MD5 655c38a368ce1dfd46f8f5eaf8acb86d
BLAKE2b-256 d5d8b9d47df4b559b9c6f9b3810f238a001ac277d991a0a3be833078ab2341d5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.2-cp315-cp315-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 06ac8ae9bd421c2a15b80462587923a885d39c4dca6de502a519e6d4d77aca91
MD5 ad96144cba802bdf27d7a4c621c4041c
BLAKE2b-256 00dbf32882270f49e7ce081b88782ce243862c0b995d2ff7b77081473b27cd89

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.2-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c3d5ab5c54f32402cc47df07c62ac4b7e959e7d0d5d7234cdef3aabd80da273b
MD5 7eec1c388155d954e928ff1be9117dbf
BLAKE2b-256 f1e160e5f44f5f2d58030dda67c638889bc090b31970c2c48dd88d6c58426dae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.2-cp315-cp315-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5566d3589ab3ef85d6f684c8507e4e5d0336f2fd00d4ec0b899ef7fb285da635
MD5 734c63ee66e68e14d34ae2fb3f6f1a9b
BLAKE2b-256 0a20faa09e7e1f73da052242c42f34a37c55e4b5d6e26b29b4d165eb94db8827

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 3bd0f79b172ae94b5ab0e7659c28d81ec923acd9aea9242e7b26550e41d17fe6
MD5 0939e05a394296d436521b19249bb8fd
BLAKE2b-256 ff864fdba1c400560c9fadb993f1f7c2627ec336ce34bc112c68ff9e506c51a0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.2-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 6a7d40298943ecb4a10c4d4c3b80c58743098b1608bfcbe0397d1f0f447eccb8
MD5 3132f49ac900b668912b744c776de7d2
BLAKE2b-256 a6a389404f7a298d8978cba7904792fc6f52d457f9012fde0285f40cd458c596

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 48f8ddebbde20d5de5e747743cb9424f3c744f5d2d985d929a724252d858405e
MD5 0a4d72921229fba255b07ced47ad3d22
BLAKE2b-256 e497ed7ccaf5e78fa8ebe4bd35ab4094057262071fb86cd1797223108c813f3c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.2-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9404755faf6756dae763038ee1e6568842e81c1fc0ae4911d1e9e17479ebf96b
MD5 d9986627baafe388dc08415ad5c2486e
BLAKE2b-256 1337e565578ac3c99bf915bc6fb8a7a1e3ae82b2298df1b513376e579574d109

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.2-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a15c0c6959f48ee5cb53c6a3f0222a446b10d833bd4c906fa109b7e7c58c13e9
MD5 b3dd7e4f4be73fa5c657c915be91ee3e
BLAKE2b-256 a23a5ee7466b932801d7613d3db876f07fc2b7133562a13d77250e8509d0b428

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c93788fbac8dad57852c625fbcc32f0726ff36eeb21b9f0828a6150de1330cd8
MD5 1d59473c55a432364936c7f314b055f5
BLAKE2b-256 cc98f5df0dfa3cd063ae20582ecc467cdcb7c504f30d90a6ca01b353c356115e

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.10.2-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.2-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.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 20fdf9bcb0de27ed5f9887905f1c25bb6fea71126b89aff9419b47983dd62f76
MD5 31854f22552714dce386d0fb29708426
BLAKE2b-256 17618207323810d5a7cd168b0d5bf693abb8d991279e0df67637d12b91e2c31c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.2-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 029be89d10dd9796f47c503ec35b03046b1046f10c89d96dd12b5f7a0cdc8b69
MD5 a1d02dd37c663c96f9cffda3cec260b5
BLAKE2b-256 a9a5d9387422ca6420baf3c83d8c36ff971e7005e41ddf417694df6eaf6b855b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4abfe12e2bcb7d33c05e219f370cd285dc7df3aef51976f5073a7072f3ef9b5f
MD5 8f1e18f8d0ab75883985e9c3fb75dbca
BLAKE2b-256 747d7a6871c620e295e66ae0d536213a550369c23b333763362170426d169a3c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.2-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 5f0123f9d55e139aab99909329756944bf572123a809612c403d52e65aaa3150
MD5 d805ef3b7259458b03f5c22a825550fa
BLAKE2b-256 a559013ca814929869c71d7643b2350ba46fe34f26deea8a6334dbcd47ab3217

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f5b57f7efe38adc324286cad1e6521974d94a5ba98c3a395e24b758a77d71209
MD5 2d9707243fc75e1bbd5de0823ce02387
BLAKE2b-256 30e16acafc357f96f5b06e6f3303d5b1146d17686d63692aee41f595f5ca8cc0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.2-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 6e0db2af19b96dbe4f08013a9884b257101829a897dc5c572ee5b44f8eca068c
MD5 824b081396254f53169cddfcca51f2ec
BLAKE2b-256 5521208ef5a0bb21d74b9e25c582bb6745912b5681b7833d09f0f6f721b550f3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 0d325219d4ab9c3069689ef687b825b657b6394997364a3380fe095b8adff623
MD5 edc25ad2b2647740924649a46c3c384c
BLAKE2b-256 c2d45c9697c5aae729d05fd070e46fb81d53ac25ad95da2ab2760c28ba3743b3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 e1a17e363154948d7f3975a452c192af69d7a24cc70f1b9bd579b4b2394fb222
MD5 c70fb94a9c1012896bcf42899f203cbd
BLAKE2b-256 b5999fcbe99a6caa09730daa8be7e4a5e1eb17511a38951754e90d45823d50d9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7d8c28897fcd3e0892f60692b9cd02b3e50139d5e8f11934b70d44288b8cf179
MD5 4e41d7c28fdfcc9c0736847375cc2f62
BLAKE2b-256 10b7f75b37f346469971444cb66680f2eb0436d886ee92f46ca33b5319a06a93

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.2-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bd9417da8623f81ca6d7251a1b9d0232dc8510e897f5abca7db5c063d8fe05b8
MD5 d5ee6e514ace08d93a3cd8e0644a6f9b
BLAKE2b-256 ada96c3bd1c1b2d83ca0471eba7178bbd56fa6d20a329cd39c4d52d547f26f62

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.2-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7e2e8d7764a125a81444355f49e44e844a9557135e7d594e3c9d543d261b0f43
MD5 c617cc7ac81d3dac80c57f694fdc643f
BLAKE2b-256 c35cb4fc2012ea68faed3ee6a0520b4d05b380549f04b4c4dfecfa5d46f7ae40

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c379dac618f7c390584c96b74ddcec5f7e80210411a651beeb8aef5589950d32
MD5 ac6aa24c584cec2a331d222acf5953e2
BLAKE2b-256 fe4bc8b28de25e2455fcd81d9fec60af02aad5998fe633f3a33e50338e49c6fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.10.2-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.2-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.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3b4ac4fbcc8acf66873d702b18bf96c66710c1f6297f425bf81d898bfaafb162
MD5 c1bc406a2846c144713dc0e93f24d7ca
BLAKE2b-256 5168900b392fbdb6eb063cb5d85321c93d706f211bfc732fd82bd891af65a19a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.2-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 72c8fe2f7f36b268c4431e697719ce48c3d5c2d2a55b11b48077c973a4b1eac1
MD5 d74d5253217ff984b6141048be2312f6
BLAKE2b-256 ba89905910c5f87d0ca525448a4f2ca2dd7af244ee7e1a51328527f662994481

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9cab8f34979b3337e27bf56c48f57f81f0c63c033ca72be7ec99a2311a1c9e64
MD5 517511cf1cfccdc5ba6ca4f5a0bdc466
BLAKE2b-256 db974085d880b166f347d198b65f943fdbe581fe4ae3a836e0f945cf8a3f00f4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.2-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 8451b68aa733157f5333ce3a44171a17fc66242dd602f03ee5698216a15f8bf0
MD5 d0feb828db4173ec1ead00ce7d086929
BLAKE2b-256 c8f6d7574fa801c7c8bc03f1603729f75b3bbfb9ac4146c4e6a9a72b2fcb8a2d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b0f7546604cb368e879c0213c5e96c53a19e5c1db4e2a5c775354c36f46c04a7
MD5 c36b9fb10b4e3aa29ac8ff8475805bcf
BLAKE2b-256 d6c1cab97a03cce49ec79bcb67f09a0f4347a7c65f4cb87328aa73024fe3406d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.2-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 bed59baea77515a25c70ea6dd04298282de9b93c2a9f63b6dce88fba582db5a3
MD5 5383c2ec1c7fbb772cb7ccdf2890ed4b
BLAKE2b-256 63266050da87d33192e9c7de25232e3805674abda31b359124636f1e006c253e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 5b80370fcb2759a4bf8c3b0d22e36552c2b12322ccee526cffc29db79fc619e5
MD5 acf435fa34f44cec514b5fedca4116e1
BLAKE2b-256 4ecf212a1ca977e4314af32f323ec2b63f8d2d6258814b781440f1a0d8f7de19

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 15cdb0f74ee76b9fef97138ccf6b08a50578eeb9f377b2b362e2bab6afa117f9
MD5 d21591dc5d8c569da34a3bb31c4652ad
BLAKE2b-256 b1d34b8f8ffdfc23698da31f5b5a5bf317b9fe503a371f409e6c7957891d18c6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7477f85501e022a878ccd92e6b6a83ee3cdea5f3906f1a5e83bd911f4bbdb814
MD5 9b615cb1b252d1f0a1857438e6e10cfa
BLAKE2b-256 2902a1594f432ce07f9d84991e72ab8d78f727e7464c9869a640c1aebe53659c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a18fe71b4fab113e29f72b08c39565324a123bdfaf435f3f850a94c489c6972c
MD5 dc614e5709c388382a102adb19cb7f31
BLAKE2b-256 5ec00af94af0ca7e07346ba017c3f1e96a298e43adacff47225f8a6660d30c29

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.2-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 52f512301692a48afa4bba2d9834a048f43296b1b257fd0fc2883f990b17177f
MD5 c4871e43a11d7b2879653e0af021962d
BLAKE2b-256 4b8eec456942c8092b70a29b6744294ee23c0557970bae0ef82823ce3c378515

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 77788f21b58c919e7395c962dab706e2f23a6a74ab05118140b568a04b0be4cd
MD5 d5c9a286ce5f5ab3767015e5f67cb441
BLAKE2b-256 95ebd00d4206c7d7dd93f9a029e53235572be5998ab8ec48791e190e42119862

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.10.2-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.2-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.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3eae138c1cb12962d77e1b12836a568cb8fc32f26810ce4434569a36c591397a
MD5 393e95f679b2caa94100373d1cfa8dd9
BLAKE2b-256 3a74f77a2900e32c1f18a3edc650924c9f68238e19970c31b772559240c1aff0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.2-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 b1c69e2d172792a2f2e93a62348e2ba663a58041450c803e08e4904b62edf77e
MD5 cd624d40882e8af8b922e63b7bbf7627
BLAKE2b-256 7640ad269c063e029963f15e4e195582c0ca64ee52ab7304ab2cc059ceef78e5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 59703a98629945b8d7ee49916b128449b00ec8e2e6236c5714bfffb3d31da64b
MD5 e6ed4b2e371ef3f190dc3902dcde4fa7
BLAKE2b-256 62e52f8e6ca6f5ac3ac2e2de6203e99f53d8d29f2400477138376e2982e54736

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.2-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 6405004960462c0fe3cee8013bf7ed0b28d25c887d11dccc887fcda3957953ec
MD5 6a36138193c25b318532a58c18c46658
BLAKE2b-256 9f7f301ac4e7389c14a1a4cad98bf32fbf4d9bfcebde89a30224040acb4c9b7e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 30dfaf47f4055a2fcbb4ce0eaca7c90aa2cf5fd56d35ee69286c810df95795f4
MD5 709a935c2094e076ab9163168025e87b
BLAKE2b-256 0f27999502ec33712b13b35c32c90b43a2ac5ef7a625c177d364621d8c872eae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 626d73351c43d43f649cddc83ee72363427ad8a31928accc700e07ca74866394
MD5 d9b6d5dc559f3b8dfe892704b5732256
BLAKE2b-256 632b364faa27d9707214e2ace1c053ab442fef0f6f6bcfa02e2e58c835c3ecf2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 abb55a20d8acf1da2f309fe8866ec7c3e165a2f97dabb9da9aa342bf3104fcb9
MD5 d79fcc672cee6e4c3a54a3b05fad69ce
BLAKE2b-256 82954c8af08c18947c6d4408b68a05ff6852bc721643fa5f353e5b41ba543a59

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 cf934f53a7426e30df576cd0a53a1229513e65e02ccedc2a130e6149546ccac0
MD5 c406adf06ae0245f84a61abd7b430db8
BLAKE2b-256 4bf2d798d8daf3c315dc306ba3b7dce27b7bc1a29fa43a6a79726ac75255a97a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9a78540f978661096a457c02bd2fe1b816c27a5c12b1f4603d6ca1dcbf9ecab6
MD5 d79e1b66239b9ca83224cd45f030e0ce
BLAKE2b-256 e948c5c1685f51ff90338208cb38cf8c13ec2c2f1b826d8934403320ee16aed3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f6e331b88c71e1d2e33b48ab2b7ada7ddcad86cbeb26e4174924c169f502cd05
MD5 d74aef8f30918e9b1187b17ffec7e067
BLAKE2b-256 5fe952f49a0a36c8841382e619cc1a65b489d3b2a69853a07091682d9713f116

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c81a80202ca110352dead6f307640eed90ddc767196a71bb03de9c4a3ca0dfc3
MD5 5e160b8da35f29e60506a442d74f8d30
BLAKE2b-256 51a6010743ca20c593d72826845a845e96d31e6602827ae3c70c6a95d31ca535

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ca17b2fa4faf72fe69f97c855b3b00c1eb719801540c727c436c95f86a751704
MD5 2cc7a67a53ad7648dee60c4a3922d6c7
BLAKE2b-256 2a89cccba4d3380d5c54cdeea81917eec7b4324ab98349b0ed662df66a764fe0

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.10.2-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.2-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.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 eb5811cd57f686bc0bea869e78d2cff7d2a40b24ec0632a17bb28e57d021900b
MD5 6c0a4d94e8dc6ec95498b440eeb47d60
BLAKE2b-256 c90a624db22bebb820078ba7b6d6cf03500df1d358bdd1ac5483f1dba5051aa3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.2-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 0fdc41e13f1938e90f348e20684f414d78b36f666d78df55522fa05563db08dd
MD5 b04a647e779d6262a5064a11db1878dd
BLAKE2b-256 5e7686c8b996bdfe40b6186be72aa9e597412c0e22155ee178975481a7b061b7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a37e61720906ce3b53e5a324961b8d6988ce6af59d6a37b1e3f9e4cc2377158f
MD5 bf54367d6286f05982ff63a378d577d2
BLAKE2b-256 44114235afdeb948a50ef89a214078a650640d5a27aff1f05f07d62903ec1853

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.2-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 844392aa4e18a8d2f86bcf273b48f91fc98301bceb75e1857e94341730cda121
MD5 001536ceb9e4678f0c45d6c9c9446077
BLAKE2b-256 7a637776b5107ecd3ccec1c971af8942790e7c8a331cd46b992f49845d04d574

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2ef78d0a4e8b5846e158e1b20e9dee8b8c696a93b04b62104aa0de5a1f95dc7b
MD5 ba4a25f8d68cfcf07b5f5f2377e29dde
BLAKE2b-256 cdf2ea80819d0779a2c6bb31d627f4fdb7bf10a519572772ff128803762dddbe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 35ac55d9ad895c12efa61b27e3f7d6c8e178574b401ed4bf75f1b33ea34afd34
MD5 f9b500293457303f45643442ec36484a
BLAKE2b-256 9a26cf2de14f67a6fc513c1d127e5006d4fb0081caa2f3d70b660dc05a1667dd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 449489ab498d6b1bdc91e33ef286ac3014a26fcbdcfe3ee5138d06016c904c13
MD5 2a1b1d4c36229c1cc57e6498de5bd202
BLAKE2b-256 07e0898c4e2f1595bc310c77d120cd9bfec3418f282a69b2d4f9b64139699dc4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 d14f2751337629fe89eec59274d0cc93cfbd39e9ff9ed77625b67465022087b0
MD5 9701f2948ddc62e2723e205fcd75ed84
BLAKE2b-256 fa8bc95e77537cb2554667c0351b384321251d90d2079853bfaf55f998b17f18

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b3529d40dd2b87f872ce04eb86deb1c9f9f8719e6c9b7145b409bf9db9791f63
MD5 49cdbce952b1a7e8b4e004f807fa2547
BLAKE2b-256 b2dac8cc29f8ee73e5d28082bd1cf19452d95f77c975f90e4617fc0ee92fb6c7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 04dcd49b763d7c43c54a53b06cebc35f4125ffc09d512509288e869c54d2b6f4
MD5 5f83ccdce9f9f1ccca26e0a8dc84201d
BLAKE2b-256 36030ba4e5fdbbe07158b759f4b45e3f55957a5e9c30a14c454e8cdf338ff67a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2ce70d1abca6a3cc4bbd6b090c01fe95e7b1d476ccc906a996491f5de5f71fe3
MD5 79814e43917fc67f5b34655fe4bc2dc6
BLAKE2b-256 a507646ebac5df5cfa098157476aef0826469ec519e1f03755b0ca99485ab6f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f96ffec6b7fb054316d26a11b76e59140e8f02e6076492c280ba633f8d717a10
MD5 b6c42c2dad58758f90cd83ad3614e1aa
BLAKE2b-256 678d9a22b272e53ed7ff820a5866ec46373b5103ca14868bc5ec8f4d7a514945

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.10.2-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.2-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.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d96ed1aa7a2aa913fbbcedfc73e851be884f6f4adefce8d7f7d057d1429dce56
MD5 4789abc7015f18b3670814ede81b7e6b
BLAKE2b-256 9a9c5ddf190edb068a7e6f5ff48e919826595db22a0c79348ff63872e1d3ab73

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.2-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 50b05ca3e6f5851d48b4dfe3aee6fa44d2bcef0a4cf02839aa4037d8b49f260c
MD5 f6b94265f7000563b59653b3935ff1e8
BLAKE2b-256 f0283ed9bd267f78bd6de2f5b8137680439e41b51521a58a78866ee3642549f2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 10aa7414fb46ebad0f15e76fdf655ff63a61d6772ac369ba968a51892917d673
MD5 21ee8c30bcbe29fef9114956161f1b31
BLAKE2b-256 e6e34077df895f4870ac58d224d0777a36275e7b5e566d937997c3882e3aaecb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.2-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 1065d624763f833fc1be07d229df9770966bed4e3ae41f152d5c5b48295a8f0a
MD5 042ba1467146b7d9d05b3ec4d7e8e74d
BLAKE2b-256 6cd53d3fbab797ce96d646cf9586d470e23c6313a6fdf65ffe81e72d5b7f4092

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2d28d9c2b68be8ebd77024a7cd31efc447103af7d1a72a3b485d910a0cc805a2
MD5 42d46fc557993826fbdfd68e516ea0ae
BLAKE2b-256 43bdef6c0cffcc182f9928763bd1ca6928e7ff52293369233fc60ffb9765400c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.10.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5eeb6de98ab7a0abf033cf9eaccc5b217a7ede48bbd6164d3090910536059756
MD5 a39a7ef43cef1af3e87b877e90348097
BLAKE2b-256 b6e73c75f51f36374b30c5f1a1524da06f2b38ac2283e7f918cce64db25c26b0

See more details on using hashes here.

Provenance

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