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.12.0.tar.gz (242.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.12.0-cp315-cp315t-win_amd64.whl (624.9 kB view details)

Uploaded CPython 3.15tWindows x86-64

aioesphomeapi-45.12.0-cp315-cp315t-win32.whl (566.9 kB view details)

Uploaded CPython 3.15tWindows x86

aioesphomeapi-45.12.0-cp315-cp315t-musllinux_1_2_x86_64.whl (749.5 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ x86-64

aioesphomeapi-45.12.0-cp315-cp315t-musllinux_1_2_i686.whl (732.0 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ i686

aioesphomeapi-45.12.0-cp315-cp315t-musllinux_1_2_armv7l.whl (721.0 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.12.0-cp315-cp315t-musllinux_1_2_aarch64.whl (732.5 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARM64

aioesphomeapi-45.12.0-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (741.3 kB view details)

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

aioesphomeapi-45.12.0-cp315-cp315t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (705.0 kB view details)

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

aioesphomeapi-45.12.0-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (724.3 kB view details)

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

aioesphomeapi-45.12.0-cp315-cp315t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (719.6 kB view details)

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

aioesphomeapi-45.12.0-cp315-cp315t-macosx_11_0_arm64.whl (659.5 kB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

aioesphomeapi-45.12.0-cp315-cp315t-macosx_10_15_x86_64.whl (665.3 kB view details)

Uploaded CPython 3.15tmacOS 10.15+ x86-64

aioesphomeapi-45.12.0-cp315-cp315-win_amd64.whl (586.2 kB view details)

Uploaded CPython 3.15Windows x86-64

aioesphomeapi-45.12.0-cp315-cp315-win32.whl (524.7 kB view details)

Uploaded CPython 3.15Windows x86

aioesphomeapi-45.12.0-cp315-cp315-musllinux_1_2_x86_64.whl (749.3 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ x86-64

aioesphomeapi-45.12.0-cp315-cp315-musllinux_1_2_i686.whl (728.8 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ i686

aioesphomeapi-45.12.0-cp315-cp315-musllinux_1_2_armv7l.whl (711.6 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.12.0-cp315-cp315-musllinux_1_2_aarch64.whl (720.9 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARM64

aioesphomeapi-45.12.0-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (741.6 kB view details)

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

aioesphomeapi-45.12.0-cp315-cp315-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (715.8 kB view details)

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

aioesphomeapi-45.12.0-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (713.7 kB view details)

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

aioesphomeapi-45.12.0-cp315-cp315-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (716.7 kB view details)

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

aioesphomeapi-45.12.0-cp315-cp315-macosx_11_0_arm64.whl (613.0 kB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

aioesphomeapi-45.12.0-cp315-cp315-macosx_10_15_x86_64.whl (626.7 kB view details)

Uploaded CPython 3.15macOS 10.15+ x86-64

aioesphomeapi-45.12.0-cp314-cp314t-win_amd64.whl (626.1 kB view details)

Uploaded CPython 3.14tWindows x86-64

aioesphomeapi-45.12.0-cp314-cp314t-win32.whl (566.6 kB view details)

Uploaded CPython 3.14tWindows x86

aioesphomeapi-45.12.0-cp314-cp314t-musllinux_1_2_x86_64.whl (750.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

aioesphomeapi-45.12.0-cp314-cp314t-musllinux_1_2_i686.whl (770.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

aioesphomeapi-45.12.0-cp314-cp314t-musllinux_1_2_armv7l.whl (688.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.12.0-cp314-cp314t-musllinux_1_2_aarch64.whl (734.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

aioesphomeapi-45.12.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (741.6 kB view details)

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

aioesphomeapi-45.12.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (672.0 kB view details)

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

aioesphomeapi-45.12.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (728.6 kB view details)

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

aioesphomeapi-45.12.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (758.0 kB view details)

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

aioesphomeapi-45.12.0-cp314-cp314t-macosx_11_0_arm64.whl (659.6 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

aioesphomeapi-45.12.0-cp314-cp314t-macosx_10_15_x86_64.whl (666.0 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

aioesphomeapi-45.12.0-cp314-cp314-win_amd64.whl (585.9 kB view details)

Uploaded CPython 3.14Windows x86-64

aioesphomeapi-45.12.0-cp314-cp314-win32.whl (524.7 kB view details)

Uploaded CPython 3.14Windows x86

aioesphomeapi-45.12.0-cp314-cp314-musllinux_1_2_x86_64.whl (744.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

aioesphomeapi-45.12.0-cp314-cp314-musllinux_1_2_i686.whl (769.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

aioesphomeapi-45.12.0-cp314-cp314-musllinux_1_2_armv7l.whl (679.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.12.0-cp314-cp314-musllinux_1_2_aarch64.whl (719.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

aioesphomeapi-45.12.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (736.7 kB view details)

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

aioesphomeapi-45.12.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (676.8 kB view details)

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

aioesphomeapi-45.12.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (712.7 kB view details)

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

aioesphomeapi-45.12.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (758.4 kB view details)

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

aioesphomeapi-45.12.0-cp314-cp314-macosx_11_0_arm64.whl (613.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

aioesphomeapi-45.12.0-cp314-cp314-macosx_10_15_x86_64.whl (626.5 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

aioesphomeapi-45.12.0-cp313-cp313-win_amd64.whl (573.2 kB view details)

Uploaded CPython 3.13Windows x86-64

aioesphomeapi-45.12.0-cp313-cp313-win32.whl (515.8 kB view details)

Uploaded CPython 3.13Windows x86

aioesphomeapi-45.12.0-cp313-cp313-musllinux_1_2_x86_64.whl (740.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

aioesphomeapi-45.12.0-cp313-cp313-musllinux_1_2_i686.whl (768.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

aioesphomeapi-45.12.0-cp313-cp313-musllinux_1_2_armv7l.whl (687.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.12.0-cp313-cp313-musllinux_1_2_aarch64.whl (709.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aioesphomeapi-45.12.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (732.7 kB view details)

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

aioesphomeapi-45.12.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (683.9 kB view details)

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

aioesphomeapi-45.12.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (702.6 kB view details)

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

aioesphomeapi-45.12.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (756.3 kB view details)

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

aioesphomeapi-45.12.0-cp313-cp313-macosx_11_0_arm64.whl (607.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aioesphomeapi-45.12.0-cp313-cp313-macosx_10_13_x86_64.whl (623.4 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aioesphomeapi-45.12.0-cp312-cp312-win_amd64.whl (576.1 kB view details)

Uploaded CPython 3.12Windows x86-64

aioesphomeapi-45.12.0-cp312-cp312-win32.whl (517.7 kB view details)

Uploaded CPython 3.12Windows x86

aioesphomeapi-45.12.0-cp312-cp312-musllinux_1_2_x86_64.whl (744.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

aioesphomeapi-45.12.0-cp312-cp312-musllinux_1_2_i686.whl (774.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

aioesphomeapi-45.12.0-cp312-cp312-musllinux_1_2_armv7l.whl (689.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.12.0-cp312-cp312-musllinux_1_2_aarch64.whl (713.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aioesphomeapi-45.12.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (737.1 kB view details)

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

aioesphomeapi-45.12.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (686.1 kB view details)

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

aioesphomeapi-45.12.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (707.8 kB view details)

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

aioesphomeapi-45.12.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (764.7 kB view details)

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

aioesphomeapi-45.12.0-cp312-cp312-macosx_11_0_arm64.whl (613.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aioesphomeapi-45.12.0-cp312-cp312-macosx_10_13_x86_64.whl (629.6 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aioesphomeapi-45.12.0-cp311-cp311-win_amd64.whl (585.0 kB view details)

Uploaded CPython 3.11Windows x86-64

aioesphomeapi-45.12.0-cp311-cp311-win32.whl (525.8 kB view details)

Uploaded CPython 3.11Windows x86

aioesphomeapi-45.12.0-cp311-cp311-musllinux_1_2_x86_64.whl (759.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

aioesphomeapi-45.12.0-cp311-cp311-musllinux_1_2_i686.whl (796.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

aioesphomeapi-45.12.0-cp311-cp311-musllinux_1_2_armv7l.whl (700.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.12.0-cp311-cp311-musllinux_1_2_aarch64.whl (734.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aioesphomeapi-45.12.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (752.4 kB view details)

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

aioesphomeapi-45.12.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (698.5 kB view details)

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

aioesphomeapi-45.12.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (728.9 kB view details)

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

aioesphomeapi-45.12.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (785.7 kB view details)

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

aioesphomeapi-45.12.0-cp311-cp311-macosx_11_0_arm64.whl (613.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aioesphomeapi-45.12.0-cp311-cp311-macosx_10_9_x86_64.whl (627.8 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: aioesphomeapi-45.12.0.tar.gz
  • Upload date:
  • Size: 242.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.12.0.tar.gz
Algorithm Hash digest
SHA256 46df7291758de6e2619e828d911ee7024d67300030cb87d4cee500db24be3dc5
MD5 87db696ace28a1c1a23f3e3a9ffbb476
BLAKE2b-256 27532a0ef916a653abef340ef9788813ca4897b1b10313055932f6a9380d5c09

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.12.0-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 fa99218bdbee8f9f3269865b60d15530a932c48396cae11ffce79cccc2b27791
MD5 1d1b93754058c080b4c4623a67bfdbe1
BLAKE2b-256 fcdb5e7e7eaedfcbbb547a586147f845aae353c2486017b10b9a446cd60b4d49

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.12.0-cp315-cp315t-win32.whl
Algorithm Hash digest
SHA256 039e56b84077d7d871dd6accf721eed8bcf62c6721f9640e02f3f64d10bf0a7e
MD5 f496b10b0fa13c06d8c2271466c97b54
BLAKE2b-256 ed09d9bde86b9ba614bc4b25aff18c0ca310c1e5e64e8d91ffa925a9e6573d40

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.12.0-cp315-cp315t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9b279f839d7d7cc7888b24b98320a345752f847e66eaf471735b81c54e95e51e
MD5 fc59d0915df4bb621acc651b8fd5f591
BLAKE2b-256 caffa37c5b745f93ad75184882ad9b67e91ce55a18afe7f3cc446363aed7f886

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.12.0-cp315-cp315t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bef2eb106f984772a7b72f751ae73d6b4ef08c0d5a0ff7fb2896a55541b0e8d1
MD5 868e7496a65dd78c938cab2f9eb22d0a
BLAKE2b-256 121723126122ff9fb49ed064a3742d8d046818ca6c7a7774a4f02ebd37a911b2

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.12.0-cp315-cp315t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 158232439a1d547d66ca470ed44ec5f6cba9c92da40fe649eaaf518dc26d17ca
MD5 2f50189464b3bd9070720fe0df67e022
BLAKE2b-256 ba30375fa721c66ea9cf853a54ecca35fd8796725450150317c675bd99059dc1

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.12.0-cp315-cp315t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 91159f2bf0ff55b161d283997366ed60ae1f3d717dae7f01d0c5a3207907d7dc
MD5 d89f7c377d1e2a8fa6643a81d0f4017f
BLAKE2b-256 e835e23ada5c53e2cf966f4688f56e7c3c3e55331ca1f9001423e5b5daa6306d

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.12.0-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2c8ddc6c1f448a387ea12cdaedd3c2478524c130532e3879294251272e90ede7
MD5 20740252903da806c6b5c806a0f5a50c
BLAKE2b-256 6663509d5ebad85e75950da3daef3d67710cbc088be81b347cd54365a435a8db

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.12.0-cp315-cp315t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 54410819423f147727c6b23126223612cd54b6282fdbc30ca94d5cec8073cb73
MD5 a584f9f41e5a26886dca3efc1614bba1
BLAKE2b-256 931e5112ca01e054b6ab42a7adcdec5a237177bbc2cebdb99004fc596b57be35

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.12.0-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c4c2d1da9cf67a501df38587a152920eaa9cf9fdc7811cbbe65fe120f0deb5ad
MD5 4a31c949ca2d4881e8a1582c292e5805
BLAKE2b-256 a4f5f677dc9f13608e9a85c6e05decd1b73fdcf1b95fc6f6e2884efaa4278d0f

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.12.0-cp315-cp315t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 76d81d00cb7def84cbb8a89563a1935a5e3287ffede1d925444f0a0673bba468
MD5 5241cf3065b3f5a02a4d23b7582c6fc3
BLAKE2b-256 ddaeb0e53e3469cb4123acae6c5fd41bcaf69da12739ac372bcf196c622afdf1

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.12.0-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 33e85c076e63cdbd1bf4e80242dec6e9bcb26df73c39f78afb4f193fda2f7222
MD5 c40547328d7d2d0788a467e871b890c1
BLAKE2b-256 220459db6f6731e6ea9121d993d0bb3a6e3a322674babaca109c4fc8601b36c4

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.12.0-cp315-cp315t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5f376120458f7c36cddf7d237ee2e8316054860914f79bd8e227fc83d807c73d
MD5 450f48c3c005d2ec20c0610733b7678e
BLAKE2b-256 2aa2093e287b744aacc2da6b06b770e048bc3badabc2230a917fad345ea664be

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.12.0-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 70803fa521ad514f6a870f3a77888df79b5ea5c9dc247b97ab2f96e9c4631a6d
MD5 a3bb137cc163728471e0927daeb729b5
BLAKE2b-256 a3355cfc01f283e02fc5ddaf96fdaa5a781abea76ebf3de3aac56753cdcdc054

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.12.0-cp315-cp315-win32.whl
Algorithm Hash digest
SHA256 13cfac51be84889aae86308c328b5ac3f6310e8b81826cd3b102cd31d5835743
MD5 51418e5f8313ef5bd2aef92552f139d3
BLAKE2b-256 7f89ce89b62a33d750bf30db99f4719a75fbea10d0472c582eafd918b9f88cb8

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.12.0-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c0a0b809351d5cfc96dacae6e6f1011bfc6743aa27ae68b86cd0bfa8a1167ee7
MD5 8a3774b49a7b0dd0adf249db2cb7d23f
BLAKE2b-256 d06912d4a5f6ed65c8adf540de51032b550efbe84c9ecd69dabe3301b242637e

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.12.0-cp315-cp315-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9da032c59200dc4cef9dc78c2c8f6a29feee518712c94aaa819765d26e49a054
MD5 c070ec7012f4c814d73223cc2ca609d6
BLAKE2b-256 e0f697d32f6426d38c84529a940672241a5bf870a89afa719e2241317460ba5d

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.12.0-cp315-cp315-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8a8c5cb290a81b6965edc6cb52d0b642a6144838aa033e246355e9bbf5bdf0ab
MD5 478d42171d7c508874f7fe591f30e23d
BLAKE2b-256 ab5a66c7a00f4edf7a115a526704d652c734a770c65fbe2235f7773d7e5928ff

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.12.0-cp315-cp315-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b7fee429d61fba24d6270854d677093224fa9f64d263b897e90f29120806cb41
MD5 ea0519079e946a9ceb9eaba51715219d
BLAKE2b-256 f5353340a9eda06cfb1f54baaa48483d8f054ef6f34701d91c10028466189690

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.12.0-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 606cd1081854bed3fb86ad553087011990ce07eb47f7368d7c13c9b30a94945b
MD5 6d950b81d16900a9c00c5effa1e6f519
BLAKE2b-256 8aa7715051009025700802f875e2aca83e8e9f2d58356c5a0fbb14a20515bf68

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.12.0-cp315-cp315-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 73912385f9717e4513a1b6a9856247326556aab5ee6434000ee9f82fc155ed58
MD5 c3fe2e124f932f97c9d752cb3c2e8838
BLAKE2b-256 b903c8b0a6084b720e5c004d3ed67284a25e638a7bb608646f57734e0e4cf47b

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.12.0-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b942e2b68d5d411daf3f980252f60cb2828bac96a9c3a2805b1a004780095268
MD5 65aa23a2a52f5d1ca3b6e9e626acab1f
BLAKE2b-256 fd0523d42612b9d4c1bd437423d243ed1b2db03a0130e600bab41914b2edbcd1

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.12.0-cp315-cp315-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 2a67e5278b93ca71cfb3da96b811e363f0355b6d3ca8cd6793aac0d5cfccc5bf
MD5 5d8c2295cac7d86bfab4c4e66f96d23a
BLAKE2b-256 4284fe88f4e061be641eff811596489eb99fe1bb068ba922cb5adb6cefe5ca49

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.12.0-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0ecc90587ac480a6dfba9422cb03e4b2bc9fbdc6fff291cd40196b1ce5bd811e
MD5 766789a5f065f7ac12bc77e949adfc21
BLAKE2b-256 c5e9aa47ab72d2515cbaea247e224f8b2a174629c63b44f7f7924c231a4843b9

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.12.0-cp315-cp315-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 6cb8bea9b85322363594e1c945be9b4e0d5ac67c7299491afab4d26d3e390858
MD5 14ab734b4c37e21d082d72b7e090bdd8
BLAKE2b-256 160ea838897bc99d9674fb38784a3ab24cccd05a869e514db67568bafdeb8f00

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.12.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 b7ce58ec8fa50c567a2a89856a8ee90619960c941cc06ab0c8f7dc44463e9122
MD5 355d036c0be20ffc6e328d43ed66210d
BLAKE2b-256 b049efabd434ba6195bfd9776f2dd6476f1049bd6f9acf6b9a38d1ada2fd47c5

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.12.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 c310d912a13a6c1641ac465728a2bb1c2269aff142bf1fc6f441589c32bd17c2
MD5 44edb4215f4ae0ed0f7542070285f2b4
BLAKE2b-256 d43721038b565f988c085a9bbdb6b94fa5be4a634c01a38f5f50912905b8126d

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.12.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cc23084798f009c1a762f62df64b57685911b3db60b38fec54db8ad96c9c0cb4
MD5 1bed72c1ca28e93ec179325d7bc15bff
BLAKE2b-256 c16a7206b6ad7d7959878f34e16a8aead48f4dbbf4e88b41b4d3459e6e419e20

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.12.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2e9ffc477cd228d6c35024b2c472dd3055b30cef1d6a85b1b5f458c2d517e2b1
MD5 095890548abaf0df01fdb4fc879296ba
BLAKE2b-256 25a07f979c6eb33ad72a17b887d5f7bafc026f1f2df796d520410328f14d5cb9

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.12.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 780ca73f32a26b644c23f2522fa69f73ad53ccad6713fdd1be44e53ae073cf38
MD5 f623b9fbacc85580236949c16109e01b
BLAKE2b-256 12ffa88f604f30b4904eb0758eb25c7a5b8f9be11ef31e88182378f89bb743f4

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.12.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f14ee427c9bc185879329dbceebf8c5f70a8f42cc44ad0b174cf1affcc44526c
MD5 6ba9a6a5d3810ed0750ec083e0246072
BLAKE2b-256 c38b2818c88067c7bb5f97e34772f56bb09e2f7ac812d8d842eae7da229f6951

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.12.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 650e7a589402a0743b60c6161d246a51ab6e3bb157142e37e5aa1f4c4463790e
MD5 2c5348366a117dfaabe83f25a5fe6a66
BLAKE2b-256 3b66744ec8c3180e3a53d476424c1ccdce540350d3a71faa69f3133b4041f569

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.12.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 aeabc25ccf69aea69247975ccb0fbe94a4e3c54c8449d4c9ec04b96a83cc80e8
MD5 b621bed65d8066179c1c78c14456ebb1
BLAKE2b-256 db39aa3df8aefbadbc8cfac70f8416c6b586c8e241b738cf5a61364d36b27a87

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.12.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 261726c2435caea19f28676fe15012bea727055b10e75692f6f20f6bbf2a50f0
MD5 94e7f41cdd4821459dcc34960201ec23
BLAKE2b-256 661e397dafbd00282aa65455886702cb0d031b9b0388a55c9e46279aa825fc07

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.12.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 b025e12b6dc8c099039d5d60d762a951622891193e3c43e0dbb3958ea7e525d3
MD5 d9611763d0d5f0139b38d20f43396054
BLAKE2b-256 06b0ae7b8b2d18982639ef5037ed56b4fbbc4e93aea3895783a9668811de6b67

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.12.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 618e132e5304a9fd067ffc1ae663066f7a21db4c97bb8d0fa12d3c1b5cf991f7
MD5 41daaa8aa2e6cf5422252f5bacf15a4e
BLAKE2b-256 389e9f828d43fdd51259d7705127dba105c2def0dbabab27c4ae3654cac97e67

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.12.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 9c5cb484134e0313f8692bb72546aa75da986761dd280da62439d80ca076cb3b
MD5 a485ac7051ce3ee32a12d7cfe4fb486c
BLAKE2b-256 a50e5d9731cd5b3c7909bace40d973d934beee419da03646048432515928404f

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.12.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 7a44cb3640d3847c3afc55f377a1e11ee7fd7a2b7f5a0349c8040f80c0954162
MD5 dff2569682aa7b420dc7ea001eeb7313
BLAKE2b-256 09de30b01a1480b2ba572197f3c1bcb2bd20da4e4020593d0ed0fda525af2dd6

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.12.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 7b97c0886c4aba7a01caf0c1268c286750889edb6403128c33deaccd3737b233
MD5 0f2bcf996003228931acbd3c059d2f3f
BLAKE2b-256 f40377d57a488858d4cb0c617f189012247cf595baa0acaa5a918d20b4ceff28

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.12.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7858a23f7ff0aaf6fa719a320679ac3dd750a45f424f56580964fe132d91b566
MD5 eafc3c9c259b6dd2a16f1adcc0a19203
BLAKE2b-256 e780c28c3d1e9069561439746111a52a0ef253e776a7c7c8b910638aeb5b43fc

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.12.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 50ac377422b75270b624049ac7256a4b1ff848a3455c980829e6eb75745bf4d6
MD5 f14d2dbe32d439be045dff700f6c22b3
BLAKE2b-256 0dc6ad701af5a645bce79d14d43916671b06ed52b6b21dc75faa46878207c32b

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.12.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 57d19d7f5a5c60583f8ce28484d7232667fbe6dc463e0de517f9a214fa5fc6f6
MD5 043188009b596a10fdcc04cdafa5cfe1
BLAKE2b-256 b178e86dfdb8416b1218a20b889abb4449bca27a04527d5be0531945649383c0

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.12.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7159ff992884db66a54ed986223e168c54d17c976958de511ee43ed1f330eea8
MD5 074bdeaaffcee88d2a500b150f31e93f
BLAKE2b-256 6ce33150455c0ce7653704ca22aaa8762186ada3eb17ad4750b98fa6114c3394

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.12.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 272c86e17ed147559b064615ce03d8bfa668740516b6fe40c447b2363fec8ea1
MD5 5329e3b0a89a0dc4f2c4a82782ea8307
BLAKE2b-256 d3e022ddaa345e997d0eeeb5b76c6fdec58aab2826d7e2c2e4dc29577a7a552c

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.12.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 0a6055d76f27f288dcd23a6fde376a662dfcb729412f746a7e6945dbbe75fe3d
MD5 3c3f74ac4f947fb677b06cba5ad6fc4a
BLAKE2b-256 a0746c2fc802f05d85cb9ffedde1d60424e701cf2839c7a8a16eac6749d48e02

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.12.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3bafd03b7d14804a732cb58bb500d9c45bbdb24da1ff55e933bfc37f6fe5b5d6
MD5 f01d0e1e3af12032e386d8ccb2b65518
BLAKE2b-256 3c0d8d357370fddeb7d836291c2b965c827c94beadb0cd57a7b8a92f2d8eee3c

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.12.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 18937f198c306f746bbec3b23280fd3ef9dbb36f44a90a84dca04b865817da3b
MD5 d4300187ad34c07eeefa6ecc045d6575
BLAKE2b-256 d2a12bb4807ead9910e5378e6baf0885195a7b4a7d5d27d3cd3224dd304ab98a

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.12.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5d9497b51cea1f5a89d19addbb92b2dbd32539c20d524488eb4c83f26fddb1e9
MD5 48067f7ace4af6930ed1d6a601b2667f
BLAKE2b-256 89f7ebf70831048d89100749fe0e1625a12cb5d1f74f9c30450d47427664d194

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.12.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ef4cf2445d2dd06d1e189b69afa0e648fa27d88b1574d56263576885684e7dbc
MD5 338b7fe07df12d94787d33569628ca93
BLAKE2b-256 5ebfd45f07e2731e6b1483aa53d172d5fb280bed21f113061bb14a6adbc7678f

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.12.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 7549838f279803419856715c9b257d225d1d099801605c3971a09ba39da1ef5d
MD5 f9608455c71db15198224cde1010596c
BLAKE2b-256 98d9ed1cfb0edd6e1b1c6bf3f52408049f06313233df10c7a03e6f64ccd495e2

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.12.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 e3bf21a7979c1e257da558e17d35506b1010fa16d12f7195a5b4c5bef647ef65
MD5 54c88c54552a2f27959668692ab0f9fd
BLAKE2b-256 a79e711d639eaebd2e37e949dea33d6d4720edfd5b6340c7f5c9b265465cecaa

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.12.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6247e758fad118533958fc438c955a39c2d64aa7cb7d88d531dd90547e77cf8e
MD5 a055f34dcf1ef978567a65d36ab8b104
BLAKE2b-256 0a271840650a531c4b0df6a39e887552c01f9c78da35fabf0dd4ae0c4c05b584

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.12.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 134e6e645c9bdfccdc3362275077677ce7bfc121b129cf4a3e33efc938f23360
MD5 0fabfc90323c58c81570c7c427ce7c87
BLAKE2b-256 e59587e39c5944dd7efedebde30c5fb17a28d2e66d52b2704b12cce01034ca31

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.12.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 50e5e29178f3f67de19d02361f58ced499f5dcc5b00bac34780ee37ccbe34d62
MD5 38f458fb4771cebf5f756785a482a2ec
BLAKE2b-256 2e83f660e538c042dcb1bc90877e3f43b61e8d49553ae2ebb168cf7f30e38641

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.12.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f19f8fa9a06203f00acd290097df103f7d0f88efb976e44c08ab85d1051c5012
MD5 8a1b96e6783d5581a4851a6a46f24f3b
BLAKE2b-256 db02d3ecdf05da6dd2be60c0dbdfc512724a89665912ac40679448a0370c2465

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.12.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b40b1d95e33ebf9a832e07a757febc2485f4a74c05054322b0cfa344f8380d0b
MD5 3a44fbdcb816f3d1303e42a9bbd1dc59
BLAKE2b-256 13053f30123b902d37f0e7e85cbfa8b02bf7e8a9825f6ed6764fe5dce0de0296

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.12.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 8ccecde71f54af1c53b902e0142a49c1c94eb22da90f1a7e330026a2d4fd452f
MD5 3c98f5b2e6553599b4ecd1bfed62a24a
BLAKE2b-256 c61e6b4dc614badf96c37363f7c6b5ca2627f32d1b8a8824476169fdc3d15c4f

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.12.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4e6acf47a4bff8a6e8bfd8ecef92489caf0de4e369c0ec557493c5d7fc2dc4ea
MD5 9786d3e4f1213789c90bbf99c55e2806
BLAKE2b-256 1bda25d87318bc82c7cdbcdb26d5a09ced87160011862f90b5fda3aa6039d465

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.12.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 283a66909221abea8aa1e72ce708cb8c2b1bded3bbbeb1bbb493c94b9ea11a2c
MD5 b4774e3a142ff9dbdc43484ff9eb7cce
BLAKE2b-256 c6ee997c48f970ae78fa7e44d74e4c5d1cd721c4a26ff144ca55899acf863b51

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.12.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2209be1453f462e19c51eca06e70dc83338f5fee5af438640b3387604a96edee
MD5 5a5948c4f83fac8f62814f27c3df4cca
BLAKE2b-256 22b7d96e0e6db2628aaace5bb2abb13e57131b6c8a697f4ebe6c0262bf49df40

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.12.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 436e483c0237311a81827b232426cc8e85f12b08a1a0f4fa57c3b21d8ce22713
MD5 669896ec970893482d5b74a985b2cf35
BLAKE2b-256 6297bdf5b3e7b68bc13702fd2b1f1c78570b6d70ca5d4ede5ef36b478f890827

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.12.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1c09c397dc60c928a9379996ce10c4b8949fe7df91ac925fed113f470029234d
MD5 eee6814eb6691e9349aec02671e74970
BLAKE2b-256 5985fc93e87ba83d31bb81aa0fbb0e4cbd9ac0b8e5625554e30d9b49e489d5d9

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.12.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 410249cc6d60896a62511820cbcd42b10855091c5ad81ba72c41b94246b0d45e
MD5 8982dbbbbfa2cd561e5545fdf298afc2
BLAKE2b-256 371ea38939c8250c1a1f59ad1c59bfdb387406a970db51cda07ab806b0d12590

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.12.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 689e4d2763683d1fedff0f1abf0ea716af6eb32d05f3760d1fe91e1e64fab107
MD5 5dedb146f606071c82c0f5cba5402a01
BLAKE2b-256 c4fb54d851c978ccda89ee7ee06e84de2cc26aff6c7f67e35a805423475d98fa

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.12.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9106632ccf191f398331a8eaaf9b860faf3313e22020169fe5f92717278c0416
MD5 cf9abe6e064ba6c8a272142f7433e980
BLAKE2b-256 bd71e80c61dbc12978912f2e06b3f916d81ce4590b1d181a147932f20a18b540

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.12.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f8d1b344e47498e575715772d3619581636841f818bf49824d9f0392bd356ba7
MD5 db16384d8d1b7b2ad2a3bad49f884414
BLAKE2b-256 254702530aa98cf8c0f4385e9dfe5d2c7b5258785e17523fcc2e624889fa0cd3

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.12.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fd22b2f1bf740fc36b876468c7715fa76144c96ac521c61517155c807f817072
MD5 203e97d91a8286401379d302f0c70771
BLAKE2b-256 fe035efae78f1c4a5ce1ce19232c74315174627df6035411fab2f11725500749

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.12.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 480239f0d7a8564ef017cb1638fc24c81d89d65617c7228629e05a81b52f0810
MD5 1fb2316acdffeab93950b0fb23c461f0
BLAKE2b-256 7b374217c8d44caacff6f51f285f2aa13cfb975b541d298399d44857e3b20e8b

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.12.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 c89d62a88e407588bbfacc57f04ae29fce1c0a20c5523f2b0d1226bc6fe4263c
MD5 5dbe444855ea68c4c8c8481c88c5456e
BLAKE2b-256 067a72ccdbb2d889c1e2551af6a5d0848bbf1fc03cb40a8d2f50d83814ec6b02

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.12.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 08bb7d1c2ee8d191976a2505e45a672fa7d0728b07c807690bddf8266508f6b2
MD5 5fb03f9ce613c28e5efc15aed40021d7
BLAKE2b-256 62d927f62d2bba898db55dd4684da6a04b181e843aa5845b0811b3f35e5edc3b

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.12.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 270223f7d95950bac4c87d696ac40f648391646490688472514c4013bd289aac
MD5 4e65eaf957c752170e14b24a621c0f35
BLAKE2b-256 0ee009ba924e7525a69b93d2af7c3da8d42c6e82884914ee404f87389179902a

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.12.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9df1d0f772d5ba8414ef322211860673ffd6a61452b2bd8809dbedb4fc31e884
MD5 80eb94ce5564b4a78be4fbffdbe3c220
BLAKE2b-256 b11d289b741ab689fb342b78c1dc24e9acf20c03c8854211eb2f1badeaab2941

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.12.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 59a935cd910e4da177d208cdc4bda82daea18f0e456b389f844b78e85921338b
MD5 49cce68fa511684d7cf84ceb014627bb
BLAKE2b-256 29d57b1caf8b07c754c7d380a66e261bcdf42e5bfb016f0ae529040af464b352

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.12.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9ff245ed37d45e2d281a70e044106082310a71c586b45177cde9cb7a453c201f
MD5 b30e1fa03eb69751ca1b91f4b0e75d2b
BLAKE2b-256 066277db3aad454e1e9537febc1c27d95d04ee8357495981588dd2773a75ba1b

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.12.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 2d24ba1a1e2458d8d7b350d966ae0de6362ab4a547a610f447728f295f6ce2a0
MD5 64878562f0a9b99f832eb02b8030b980
BLAKE2b-256 d6693368872c44e4e1a857f70a1fdbedc64235015cbd86b04e16ba26677795dc

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.12.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c15bc80906ae55f8d704dd3374ccca4ceb32110264d3cbfb36023323ac6fa2b1
MD5 0cc7f8d6af611e14142d31ac05502067
BLAKE2b-256 a4864dbd29daf299891737fc39ca2a4f694bf328e6e8f2a993b79d80bbeee7e8

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.12.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4e8618bf4c2931483419131c3abd78a3c44e67c6c1a205f45681409bdc4ede46
MD5 19cb4c6741188ddcf01e2fbdda5b6b77
BLAKE2b-256 0494c0d016711dbd82399344f9e949e6159d3835dc37ecaf15ab5a843c65dccb

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.12.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 126d04c8326b44c5585142c4fd71e2447e3ea72cc1928ea16859af4610af106a
MD5 f928661f9a7efca543e5770a3de6ca7a
BLAKE2b-256 ef21919e34992d164b1361a3fb9f007b1fc02c110f8c1c7375a53084e9980f14

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.12.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f7741ba4f7a14c8963ad55f2ecffecc525ebfc3b2038e11e665a97493c40583f
MD5 a4f493617e56a5f51c7ecc544efa4244
BLAKE2b-256 358603b172e62a3c656b7f971d2afd5d418b06b9bd3b2a2515e2a9fffd7d425f

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.12.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bff9f0a475d977573c8958134f423618ce9fad0d9dc21835b3b89633aadc0636
MD5 32c6d7e6904637270b10ad329c5bccc0
BLAKE2b-256 aa5fbedd36a63929bc095b11754c31887774f12c5e2acd2f07c1e6c63d4f8e7f

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.12.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 027d3b2f510c1be2670b787e56081e2e9542b324f1a71b7eece26347e01f837b
MD5 62896e089d4cabf0fca3f95256e28461
BLAKE2b-256 e84eb7e0ac837573aa49f1dde3d16060aeb19e3a18142316fa554ce9688db88f

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.12.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ce5749c00108d9d9ab8dbeaa1e100fecb148a0fc81a87e032caa1bae877be0b7
MD5 b28b02e8586454ae3bea69513950bf90
BLAKE2b-256 45d305b4f79c7b689bfe0b972c82514a0c55ee3d248c4cb480fdb074d5701896

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.12.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 c7d05e7479ac02eec2d428f35a39d3415048bd53a1f9fb66b2121f632a52268d
MD5 0a25e47db40930482bb493007e5db761
BLAKE2b-256 f2cb377a87b6e5945ef655515dca364dd81e1315bff4d14e74163b7b14964a59

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.12.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 888f89ac5ce731f676bfb0e88f6c9a16ba3c6422854bbfde04ad3e5102b1cd1c
MD5 c4335f21e0a6bd18074359710c6c0218
BLAKE2b-256 a86bb692a3d746b39a150f7d7a7e915abf27a7057735b68b8c9ca8a6b5ef73e3

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.12.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 91555265b71c198f94d911c007dda37c7d0efc7908338ab50904e28a0ba37ffa
MD5 3803769312efbb6729f72f4007fcb734
BLAKE2b-256 7e637d4d0596b4dd674c40eb3ffdaa8b4646576782c605163109c7029530356e

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

Release history Release notifications | RSS feed

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page