Skip to main content

Python API for interacting with ESPHome devices.

Project description

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.

Project details


Release history Release notifications | RSS feed

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.2.1.tar.gz (218.2 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.2.1-cp314-cp314t-win_amd64.whl (657.3 kB view details)

Uploaded CPython 3.14tWindows x86-64

aioesphomeapi-45.2.1-cp314-cp314t-win32.whl (581.2 kB view details)

Uploaded CPython 3.14tWindows x86

aioesphomeapi-45.2.1-cp314-cp314t-musllinux_1_2_x86_64.whl (710.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

aioesphomeapi-45.2.1-cp314-cp314t-musllinux_1_2_i686.whl (731.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

aioesphomeapi-45.2.1-cp314-cp314t-musllinux_1_2_armv7l.whl (654.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.2.1-cp314-cp314t-musllinux_1_2_aarch64.whl (698.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

aioesphomeapi-45.2.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (702.3 kB view details)

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

aioesphomeapi-45.2.1-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (639.9 kB view details)

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

aioesphomeapi-45.2.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (691.1 kB view details)

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

aioesphomeapi-45.2.1-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (718.7 kB view details)

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

aioesphomeapi-45.2.1-cp314-cp314t-macosx_11_0_arm64.whl (619.8 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

aioesphomeapi-45.2.1-cp314-cp314t-macosx_10_15_x86_64.whl (625.9 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

aioesphomeapi-45.2.1-cp314-cp314-win_amd64.whl (562.6 kB view details)

Uploaded CPython 3.14Windows x86-64

aioesphomeapi-45.2.1-cp314-cp314-win32.whl (503.4 kB view details)

Uploaded CPython 3.14Windows x86

aioesphomeapi-45.2.1-cp314-cp314-musllinux_1_2_x86_64.whl (697.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

aioesphomeapi-45.2.1-cp314-cp314-musllinux_1_2_i686.whl (721.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

aioesphomeapi-45.2.1-cp314-cp314-musllinux_1_2_armv7l.whl (636.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.2.1-cp314-cp314-musllinux_1_2_aarch64.whl (673.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

aioesphomeapi-45.2.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (690.2 kB view details)

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

aioesphomeapi-45.2.1-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (634.8 kB view details)

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

aioesphomeapi-45.2.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (668.0 kB view details)

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

aioesphomeapi-45.2.1-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (711.5 kB view details)

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

aioesphomeapi-45.2.1-cp314-cp314-macosx_11_0_arm64.whl (576.1 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

aioesphomeapi-45.2.1-cp314-cp314-macosx_10_15_x86_64.whl (589.9 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

aioesphomeapi-45.2.1-cp313-cp313t-win_amd64.whl (623.9 kB view details)

Uploaded CPython 3.13tWindows x86-64

aioesphomeapi-45.2.1-cp313-cp313t-win32.whl (558.1 kB view details)

Uploaded CPython 3.13tWindows x86

aioesphomeapi-45.2.1-cp313-cp313t-musllinux_1_2_x86_64.whl (708.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

aioesphomeapi-45.2.1-cp313-cp313t-musllinux_1_2_i686.whl (728.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

aioesphomeapi-45.2.1-cp313-cp313t-musllinux_1_2_armv7l.whl (651.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.2.1-cp313-cp313t-musllinux_1_2_aarch64.whl (696.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

aioesphomeapi-45.2.1-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (699.5 kB view details)

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

aioesphomeapi-45.2.1-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (637.8 kB view details)

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

aioesphomeapi-45.2.1-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (689.0 kB view details)

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

aioesphomeapi-45.2.1-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (716.0 kB view details)

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

aioesphomeapi-45.2.1-cp313-cp313t-macosx_11_0_arm64.whl (618.7 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

aioesphomeapi-45.2.1-cp313-cp313t-macosx_10_13_x86_64.whl (623.8 kB view details)

Uploaded CPython 3.13tmacOS 10.13+ x86-64

aioesphomeapi-45.2.1-cp313-cp313-win_amd64.whl (552.0 kB view details)

Uploaded CPython 3.13Windows x86-64

aioesphomeapi-45.2.1-cp313-cp313-win32.whl (494.4 kB view details)

Uploaded CPython 3.13Windows x86

aioesphomeapi-45.2.1-cp313-cp313-musllinux_1_2_x86_64.whl (694.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

aioesphomeapi-45.2.1-cp313-cp313-musllinux_1_2_i686.whl (720.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

aioesphomeapi-45.2.1-cp313-cp313-musllinux_1_2_armv7l.whl (643.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.2.1-cp313-cp313-musllinux_1_2_aarch64.whl (665.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aioesphomeapi-45.2.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (687.8 kB view details)

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

aioesphomeapi-45.2.1-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (640.6 kB view details)

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

aioesphomeapi-45.2.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (659.6 kB view details)

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

aioesphomeapi-45.2.1-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (709.4 kB view details)

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

aioesphomeapi-45.2.1-cp313-cp313-macosx_11_0_arm64.whl (571.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aioesphomeapi-45.2.1-cp313-cp313-macosx_10_13_x86_64.whl (586.8 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aioesphomeapi-45.2.1-cp312-cp312-win_amd64.whl (555.8 kB view details)

Uploaded CPython 3.12Windows x86-64

aioesphomeapi-45.2.1-cp312-cp312-win32.whl (496.0 kB view details)

Uploaded CPython 3.12Windows x86

aioesphomeapi-45.2.1-cp312-cp312-musllinux_1_2_x86_64.whl (699.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

aioesphomeapi-45.2.1-cp312-cp312-musllinux_1_2_i686.whl (724.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

aioesphomeapi-45.2.1-cp312-cp312-musllinux_1_2_armv7l.whl (646.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.2.1-cp312-cp312-musllinux_1_2_aarch64.whl (670.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aioesphomeapi-45.2.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (692.5 kB view details)

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

aioesphomeapi-45.2.1-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (645.6 kB view details)

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

aioesphomeapi-45.2.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (664.8 kB view details)

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

aioesphomeapi-45.2.1-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (715.0 kB view details)

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

aioesphomeapi-45.2.1-cp312-cp312-macosx_11_0_arm64.whl (576.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aioesphomeapi-45.2.1-cp312-cp312-macosx_10_13_x86_64.whl (592.9 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aioesphomeapi-45.2.1-cp311-cp311-win_amd64.whl (558.0 kB view details)

Uploaded CPython 3.11Windows x86-64

aioesphomeapi-45.2.1-cp311-cp311-win32.whl (504.5 kB view details)

Uploaded CPython 3.11Windows x86

aioesphomeapi-45.2.1-cp311-cp311-musllinux_1_2_x86_64.whl (714.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

aioesphomeapi-45.2.1-cp311-cp311-musllinux_1_2_i686.whl (747.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

aioesphomeapi-45.2.1-cp311-cp311-musllinux_1_2_armv7l.whl (656.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.2.1-cp311-cp311-musllinux_1_2_aarch64.whl (689.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aioesphomeapi-45.2.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (706.4 kB view details)

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

aioesphomeapi-45.2.1-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (655.3 kB view details)

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

aioesphomeapi-45.2.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (684.4 kB view details)

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

aioesphomeapi-45.2.1-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (737.5 kB view details)

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

aioesphomeapi-45.2.1-cp311-cp311-macosx_11_0_arm64.whl (576.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aioesphomeapi-45.2.1-cp311-cp311-macosx_10_9_x86_64.whl (591.4 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: aioesphomeapi-45.2.1.tar.gz
  • Upload date:
  • Size: 218.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for aioesphomeapi-45.2.1.tar.gz
Algorithm Hash digest
SHA256 ca769ca2eb79cf8bf9fe186b0d56df7a8992369e37a6cc72e7336aa65f9ea182
MD5 92b348b18ed1af7ccc1160f02f4ca77e
BLAKE2b-256 a880e5686000313c75ed1721da43d7eaa32d6d9c6e25a0bf286ec9ca28858feb

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 38d9f94cb400873417ab81c8ade387d641a28ff6503d89215bd1401b58084885
MD5 61f0f5c5ff3bca13f8b3722bdbb0c75b
BLAKE2b-256 6946ccf6d679c9e426201d6334cc006a41ca5104b7e812630eee7ca59b141e9e

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 69f371c9312975863458dcd65b3d113e83af1bd96c55a84fe16febd1f2c0da6c
MD5 52056ae6f2a1ee979807769c398c51a2
BLAKE2b-256 8ea17a0bec3226c008975b5fa031ebf33a4d1829d806bcceae0271e152326002

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9739b3339c3da913ae97c2fc8844f2cb46283b4776e99829564a4fae7ce45637
MD5 7367f8b87cb9da317ef21ad1e24d47a9
BLAKE2b-256 25298585934b1a6b79f8ecf2d5a740065c5cb8b043ea8f6de0d31f236ad6fe90

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.1-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e3ab91ded44184025b485ef2b70d16a6dd90f03683472608ae5a09849f2ac1a2
MD5 e7630451a9639b37f26648cf32359b8d
BLAKE2b-256 de25cf2cf38f11f1a88df5c56b849f41aad5f8e20d34a46ec07f6cc864c10855

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.1-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1db9b52912a7d6787e0ca6ff14e4f5a51078f3a3e07ca4bbf610616acace55fc
MD5 e9992057a16e0b1b82ca5f3a7cca0bea
BLAKE2b-256 05431d45105bfd0fa27c060a424a2969ebabf7f2a11a838b0b34b23c7e5b7a8b

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0fbc9e19f29657ac421a88a3c15dcfeff4d99a23b02e7f65b0e7f60a9a441bdc
MD5 8661062af5811f206aa1079a7a4d0428
BLAKE2b-256 a04a3af976c9a9884aba286742cfe4fc90dcc2da090368bc6c7394373206b7c8

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4546c7cb10b1b127d31902a66cdea5d87da9cde6e26091185495ec78165c1fcd
MD5 cb0f3a62b8214a31f96c176ba381d141
BLAKE2b-256 272542f5013f73e30584d6d218d9b5706f769a556d51b40eafa95cc53e094a19

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.1-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 728af86b5db44f870fb0ccbbb340cd212d4f880ed35740c782e5b46c13fdcaed
MD5 5cb41d070bf9679c99778f47a91d3791
BLAKE2b-256 3f6e6b4b3235327b81617aa6952e28b7dc44934cb0a8188400df2e57dc99af80

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9e3a96f3b5761aa18ded5be0a11d19777053b652de1d730e7dd8463eb8cdf906
MD5 213e8ad6efb4998a9f21e83034853073
BLAKE2b-256 4574e4d4aa4aab13a126598b649d85734a161e5ca18e91697353c970c538f8b6

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.1-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 76b6333a330965c6b49433b0790de696280e56ac767828039712103ba2b6bb5d
MD5 f1902bff13ff670cf739873f31ea64f8
BLAKE2b-256 388033a923dbff0d9bcf2d654401936c73f584a40bdd20fbedd8961bdfeb50f2

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f460be4308cc7cb3be2e63e4df68fca7f7302571293d8b6ad002c7454a4034ce
MD5 ffb55a8d7f3c87afebf94a459c7e04d9
BLAKE2b-256 11318bfaaf8dd091ac27bb6ffe2824153e6383b093a3b136f263027ebeec1a28

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.1-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 55bc2fd6af945662b331d3bd5dfb38507bfe9077451bbc4abf580fa0f00eb195
MD5 7f288428053e9d59c781e2fa293762ab
BLAKE2b-256 f513dfd7312d2cd422b89ea6f04606543229d76a192a899271e4dc1ca422113e

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 db9dea34f1ad8db30916b1ee07670d0f58ccc9d5f0e58957f56cfe0692398589
MD5 595dddea3cadbd2d1ef34bfca8c02649
BLAKE2b-256 0a2ab0354abf2150fd6eb905306903853066afd1a0fbe421e2706e43bafad125

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

  • Download URL: aioesphomeapi-45.2.1-cp314-cp314-win32.whl
  • Upload date:
  • Size: 503.4 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for aioesphomeapi-45.2.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 709e41e7455b5f966f8582de555579efe0fb94907e1478638d026426c807ae14
MD5 74568eca12b765984e71a90cec20a8d5
BLAKE2b-256 982f9302c9e80d644a3bdef9a041b4a6a436d9e182d887d9e8adf6d8c99f5fb1

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 11fba513de54df302c6bb6091a92617b31d7861cbaf7f3d3ca1dcb72c52d96ea
MD5 7006351c1f6783a1ac600c56d721343b
BLAKE2b-256 0314cb99aff3f486660585a89f7f1c2334222c2bfbb9593792565ea0ddfb2210

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.1-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 abb8a2046e9432ef85ac3608c4c1f127c81315518a9a7ffed7dd69a890f95095
MD5 3cc36235428ab1327fd60af08c846be4
BLAKE2b-256 787f0bb549ee489b30c6ee5ad84a700224bf06186644c0c4ff748c64e3d8c252

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.1-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 68772db1c68c16d5ee07c2937f5fc71512571dae81c27aac3c35f0860a2f529a
MD5 6dfeb7419586ae49f194968ab842757d
BLAKE2b-256 f8d9d1afa4d1d37524e8880d283a5200fbe598b89f742c705b656f5eeea3689e

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b6baed876a47a2c0a9a0d0511071bbd4d8bd97f9f0ac76dd53d3ded95e254f2b
MD5 e507eb497e43b5bb2d9fe69d965ea4b8
BLAKE2b-256 8fcb1287b6de023989a69389dda231d7919afae10538bf70c90dd1e54708b9f1

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f8955b67141abb95bc3e761b6c6c9ec962c87703cabe6ee4e0e952ed9aa62a3f
MD5 fa17f9679a782715b82e33699556ba18
BLAKE2b-256 6aa82277eca6b2b305a6db262ec6ec2ccd449ff0a9232c627584afdee13776b0

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.1-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 257f5f0969b7376a11592c6a5fbcbaa8cfae12ec58d8922f2add65ec16dba789
MD5 cb60e0c634ce7271fdc2f7cd986235ad
BLAKE2b-256 7201ea51bb1647d32fd3f824551d67cc1c28abd7da030849900826ade5579cee

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3e9fe0a48d646d18fc5345a9c81eaeca3090fd880e2f8b2b42f51ac99c427038
MD5 04e38e3f254e72a208d4d25c10d337c9
BLAKE2b-256 7930d356868688c052246c120c5cc6850e1454502dcef83c847495324d4f9935

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.1-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 c0c2e98713ce34d90b03539af691a5f6f6e0e6ae6d99c5641078a3082077c7a2
MD5 b945182c359bf24c258741110241ca19
BLAKE2b-256 27556fef004a0a8aacaddb33b6201f49f3c8103cf04e21bddc70ff2c6a54b0ab

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1f440e31604e0fb6d0c9353d1b13a99c63a68aba1551742246d4ca99dbfa54c5
MD5 e840e284cc1dabf13bdcf13994da9504
BLAKE2b-256 c90a048a63fc19f7d0ffd476ab3804fb9c41c4b84fccf0200b77ea5f725d4c60

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 fe1386bb7a76a025495eebbd37580456da24744e93b268c4f97fdb2f84127802
MD5 b67146573a8dad754a3f69f338f4a04f
BLAKE2b-256 0aef32cfa738b742e518f6af0955d33b8b2c351f539b010190759ed9be23025d

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.2.1-cp313-cp313t-win_amd64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.2.1-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 5d4ea1c71de3e4006511d1c462001313813cd7300ae9335517445f48fec112b6
MD5 f00d8ebbce37b7a86839a455c2e481cf
BLAKE2b-256 3f0f8906d4c67443363361f1061f96b64fe504d62c76124df71edafd4fb78e3a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.1-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 33840217e95812430e14798175000c6ac68890e0339a0a697ef4e01793600fe9
MD5 7c6055283c6393475ca695c34fdc317e
BLAKE2b-256 68fdbd07757ef926ed93a1e504755f1dbed5bdd28e258413ccc88531a2cebd85

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 698c9bd4d610b97e6475937313dc922f1c11c9d72c2a2418a836b31c81ee9a25
MD5 24031df44fb27af1c86d39a60d58f13b
BLAKE2b-256 96532a5edc239c6d88d640f8b896a0efb5588b655ad394e45a406ee0f7c119ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.1-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 21f076fcb462e5a36cff03a9114a2b13e4131e6d794291e301a38f2020778259
MD5 9c84b26abf502b1eb7026d1f80921fb1
BLAKE2b-256 538a387f8085eb19a32fa879fbf699297100ae14c697224e145dddc4645cd411

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.1-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fee0197a2e367ab16021f25f34bd30bf1d78dd00a2e1db0deb32a1938a3b2c09
MD5 a56255674c555f72e72c6773d6967aea
BLAKE2b-256 c3d7b25f74c05473de840b5010a5c404ed64d44b4f3a5aa12b24b071951071fa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 635d194d3e5a318080e03c363b46fde97f8771bd66bfe95fd525d4d72dcb30dd
MD5 c1f1f54bc2caf8ca6093f90be408bdde
BLAKE2b-256 c2d3ba22666a7b1d2ebc6b854cf43224c34a58e3f20532042c9489c0427112f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.2.1-cp313-cp313t-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.2.1-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.2.1-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 76e4244c44b4665d7f66c24be0963e6ec756a1f4be4bd2ed3cc2ce1397acf1cb
MD5 84ba4cb695871699e7209dbe3db936f7
BLAKE2b-256 67030fd511b6eab11070062bb1c0c7545337a48e9edeee56b13287e2cfbc0816

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.1-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 d6557153ca7f2eae2803503fd77aec67aee12f2c4697e735c6bfd36e7cc1ff25
MD5 bc6063018266933fb4522f483931eeb1
BLAKE2b-256 8536ca767f33e7a7e3f74571b408eaa1ba77f4ff2713aa966531f5d3392094da

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.1-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8b6d96ef761cdf44febf28a55efbc91fc4a522f876b0e76e6de409297f5f45a5
MD5 3094d1cccd0a509dd9239f5a254a8930
BLAKE2b-256 1af67c62d2ee87cdd8e63a20d4b3934fe00b2fa10285256788e438d52e0167f3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.1-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 830972c766d89172df5371b05dbe17d830d6d2cc3d43f52a56478af6a1900efc
MD5 c320959825cd6cacbd94655718f8807b
BLAKE2b-256 7d75e60487da574141105afb94b456c7319318e5370a9ba5f7e90043c4e5c18b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.1-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6df7b541befaf3116cbeb0012b1dd3abe11e64c20764183d8cf4b9b1a659e1ec
MD5 265de9daa64f808776379dcedef851e2
BLAKE2b-256 4e276a85977cd9aa841e1fadbd704bd22fd7895699aa59c03af804314d106790

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.1-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 6dc432e01aff9745f8b1c5abbd1e7329dd7df2962d41e439dd6b8a4a67200c2c
MD5 5c0aac96dfb95d6365a3fa1e63323717
BLAKE2b-256 e2f97ad4e7fc9cc457f8951e393c65bbdd98b76bc55d2130c3487f36cfea23aa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 6ff9346c475aeca010e27019803a7ef26bc40adda3646d1edc5d6b957a22d5be
MD5 0e80f5d77142596f900193d1e1dad085
BLAKE2b-256 ec33c05a24c3da5be159fba113282b1a5411f703038304751a9414c44e66139f

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

  • Download URL: aioesphomeapi-45.2.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 494.4 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for aioesphomeapi-45.2.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 d7bb445f7a9bdeaefddf551d7028136ce817c90ba38152a3c9bfda3bf5b8dfbb
MD5 8bcbd79099c26e2d597f56f210cc3cef
BLAKE2b-256 baf60db80ebb14ecefc1d0e49b48cc501c642387833400a08a76df7d0e6221a2

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 22490e3615e3b5f6940e701f29d6c36dc73247681296664ccf89da96b5a52b2a
MD5 a17be6af2a8a409c476c0665ea043296
BLAKE2b-256 df2818483e10b2a1671d8250ff9dd191fae33f91c0473a79c460ca12b5ff2b42

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 77293242877f0ed255193cfd2024eb8d6afd1fd0a7e426ebe53fe63f4017ddf1
MD5 cc0812d240483c0ba534e6a9ebf035b9
BLAKE2b-256 caadd4194db2c637578e094fda2aedac269b7520676a8142bab4ba954c00a6ac

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 de4e2663bfc46f0d93fff14608c12f9172ed132825c0c68b20897b73a26addc9
MD5 ba0dcad76c2d0126a2b832afb71f0605
BLAKE2b-256 5e1824efced70b141915bf7738fbd10ee1b66422a30a4b7626a83246d5c0254a

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5980a588ce162517c6dcb9952f2ecb4bd8d7158504020dc8acefdb060dc646e6
MD5 be923d2f013dc0431ed8826d16313b89
BLAKE2b-256 a9d064236124ddd143e8f5113781e5dd243a85b3991aac484a02f50d84da783c

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 23983eb5c83033b7c06478d3f4bd1f245085a9125c543fdfe69d094eb41ee2f4
MD5 79e4a2dd4750001490de6ce2ab70666e
BLAKE2b-256 86e7561ad4aef2259af38800dba9cd26fdec42a539c329adc98d2ede3ceffa8f

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.1-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 8208716ad3edb00a005713362d0f7083b378cb4fc2f7926a1a8df209640e9e36
MD5 6caeb47646cd94f6649bf00da6cbfdce
BLAKE2b-256 dab88c3e40536f4ebc733d33353f6ac1e9eb9d728affb3178776df7c5879262e

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 44b3e9a454dfc7823c68727d0a27b02088f4e8aea5b48e96e7731f3f85532c7d
MD5 216de3d778b7573fefae8e2dd841e8f1
BLAKE2b-256 9048fabf74463595f5b3b4bdd7a474bbeeec4ee6af35d1251785519af8164522

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.1-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 5611b5e5b382f1f7da88dd853de19fed855353ae315cbd73830121ee152ab993
MD5 d908a55b1e85bf255977368dcc85c5d3
BLAKE2b-256 fd9d3ad1b7b80ce486628a101604c5fa01c2208bd6a38e2a057f993b6ffcfd64

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ef9a93e72e20a09096cf987763a788b1d4ec586e02e55eadc827968636b16972
MD5 02ed46445b943d09c89a337293b97699
BLAKE2b-256 b58749e58d0dd39b40563f2da636103143fbe6713b9d667e421a8be1382c7788

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d5c05498cedafed4abbde8f2a2faba2b1e233d88da6a7108d6ac2e36d3ea3257
MD5 a46b24a73c95b9235953e75841001416
BLAKE2b-256 5961a352842fc2622856c55860fc8769ddc3c2b9398dd5998aa234cced9fb57a

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a7b8cec0446b5c17d325ee8911d8d42c08a4b612c1fe1602d5d922db110aebf2
MD5 2ba72701d82dc0f519d80a967ea1aa3c
BLAKE2b-256 92034b3b8a9dfd9a73798f09d972a9da4836ae131f229ac78957ddcf2f9e7671

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

  • Download URL: aioesphomeapi-45.2.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 496.0 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for aioesphomeapi-45.2.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 17a497ef168fc2d45c992c5e3905c3011c0bd0a3d7928c93ab9be65c091fd209
MD5 c5d2ec359aa77a97b5f5052a752b53e1
BLAKE2b-256 8e2c980a0935fff828508dc77bda245e8bd04c84e9fef0b4c1edba4b9df41eba

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f88aa2b8c8574bfb77a036a878ceac69a3291a9fe1a6a6e2641db0ad5e8bf41e
MD5 c8afea90936959db995750adbf323db0
BLAKE2b-256 78bb94d5e743b546fba1b1e86ec3ac0e465b7fe4fb7398ec086c852ff6e48c27

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 490f4cc42f538afae08e3901e685ec03d1e4294b8e81da18e1bab4ff9a11601a
MD5 ab8669be44d11368d8b6f5618be404f0
BLAKE2b-256 824a732bcf4208c622754814ce907a62d51d24cc8e968b7182344683f1c8137f

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5bfd6505f49120a981d6511d9ae55b9eb04b61344476941a652127dd5df10279
MD5 04ed4538c2c9dc5589ee9895dbf158a1
BLAKE2b-256 7c30c7f181cd0d04e84505063d42ca50dd5d12756a28935fd8b9fa941db52cdd

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d2b3116bb9bbcdf42bc71066045ab990523aab480d843a1e1a41ff03932aa121
MD5 c3c0702528dce709e9cc6d411f2b1971
BLAKE2b-256 9c797f6323283077e6acd188188d2615a2e396aeff6ad781b4716984b0ce3c67

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b78c0ab778cd4d042b4c20cd1008f3ecf89136d813da5a87f64acc7118db7e82
MD5 145373141826eee8f16ab287c507d7ce
BLAKE2b-256 c752e174fece8f03de5cc4f95006b8c4acc274c0be6f5ce2c7bdf6766e8acd1d

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.1-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 4880c94f01eadb4fa4c6dd792771a27b38417b92150363fe15f35b44d2316ce7
MD5 37808c18f0a74c246f685095cba24736
BLAKE2b-256 9043e609063e24d5c0955b8a5f96be88f25364ae95deaf55e1ebb52a810e8b2e

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 df5c22dcc806fd18dfe3261b3ae036e0cdf8fcd04b1bce886ffbaca19267fc8d
MD5 55fcd8ce581d12a693ae74e4f8cb7a5d
BLAKE2b-256 0bc5fc3704fcc775042cb752942910b43d02ddfe8ed46bc1a9322985c63be5d5

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.1-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 589421e1d79aa3c09e6c6171d72037b2126cdca725fb0e4f686339bb5dca9031
MD5 556b6580b9ff193c4192264fe750528f
BLAKE2b-256 78f8d5b8e769df3e2310c6da504677ce713f3b4e0d209a06523e8d804a0b9baa

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e63ec302fa6df097d49a47c6ea9fd6719c47fe29fedd2770708207639c77b6ca
MD5 06cf161fc12d780b56f6d04234369553
BLAKE2b-256 8d31335b63d2dcd1fe02b1953ba1fbb6a3121e9dd908628c5495b71f334ce6a6

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 472f61ee096217a37d92a21fdd8d4dd7cc8f21f006216619f552c63acfffed90
MD5 ce3506fcc8b4f8db40ab0e370769bc7c
BLAKE2b-256 490c81b2308a1e29ffe009cf8d43a7909c3bf20170eb64aa2bdebb201bd67051

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2629525c1b52babd7f1511ee12f5a95f5e28477cbaf9638b5257e84c85e74852
MD5 3616fd7f2d2463b0459e59984c872101
BLAKE2b-256 516c02f24e8d812fef6c89852486f3a0265229f5d3fa7827d1dd5abddf04d5f7

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

  • Download URL: aioesphomeapi-45.2.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 504.5 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for aioesphomeapi-45.2.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 0c2b7cf4474829689fe5003852c3c6312bad81b2cb98c76c486984925c2ec47f
MD5 9917e6806ca754799dad7b3c1dc324e3
BLAKE2b-256 74346c6bbc77a05ea95a0fdd0c07ba84f0ef74116801962fe250a3528ef11e59

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 92b3dd2961466b5aed002e9d265341ac47fe90d34d6a5f0b7ed2052f7f070f65
MD5 144e1ab6a3381aae4d58fdf33aedf661
BLAKE2b-256 6769a18ae0b20860024d307da56726b936aec6c80cf0a8cfc771f6b3bbe0c49f

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 79be0e0072473fa38d25eef1729e3335d50b1181c2cef36c89775c48e4d5561f
MD5 a60e5f2b4d639e7b5bddf2887edc87ea
BLAKE2b-256 86eb7cd6126ded60c7091715b698ed6b282b62b68b634eb0707d9bf82c8540c4

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ce7e5e824f8a7747d73c67b8c55e4c3ad24d2786937588ac2759afec8641f1a9
MD5 3d8ce4ca4fdc103e85438b71de1675f0
BLAKE2b-256 2c0429ad840eb2a3428468153fdcec0b3da0fa09a24f905f7df4ce73c6a9376b

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4c0e52d4b7d858f08dbb61b689e2a61c0e12b61b437dfeaaa13a505977d3c6de
MD5 e2632c6febaab1ac8f58c4b31d5ce918
BLAKE2b-256 541a8c606e58cda96a25d7da3c24373c21fbc27a8d3886f49c14359c84359d4d

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c85b46b1d5aff4cbb9b2ac73676e170f8bd47ebfbba9af17cced7119de73083c
MD5 1fa7d5705aac83c5e4a936fbba5d68f8
BLAKE2b-256 9056203dfd5aafcaeaa76841e1eddaa9ddf66d332523a9c95df5d59533bb1c97

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.1-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 b1e659e9d95d6156b584473a8c85dec27608893f4d25798c3e1fc373ae80a07c
MD5 d9d51c337d3c6b49eafa5bd30d145f55
BLAKE2b-256 bfb57ec5d49e279c73cfc006a2b89792b5d0e37314e508132b1be4456d5e292b

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8b35900e9df0382718deff2f16a749717f0719e09d43d895df601a7388598bc9
MD5 e22b19cb6ce43fcf6fd7a17e40e825d7
BLAKE2b-256 6944282aa244f709df365b215d7abb7d45af0bc705466c9362f5c1701802131b

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.1-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 597e4d41dd25d388ce0709f0701775c20de3489d91242f1fd9427e29494daf6f
MD5 10e4765162f2ca8115b9d33f45412acc
BLAKE2b-256 7f5dff394144f53629b9eef155f8f3743da8c14f1fd6b37860542f4fef3394d4

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ef4a7b594ef62c4044d37a126d924edb13c06721ce4fb148c80cec6607c0c349
MD5 2690509b360d587fcd60c53d4d61781b
BLAKE2b-256 c1827043d9fbc8cd0a128f22ad06d5e9f502d6d9cc5dcbeebde181e7070fe3a8

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9d92f5d7b36910e67a6bc509fb94df182a6fa583d6219be1aa09963f44ec6002
MD5 6327d3f981cf007e597b8c2af2d615e8
BLAKE2b-256 2546320eefe58a29bdc5ff14710246556669d7f049c8fe7d6f789d3182aa7419

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

Supported by

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