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-44.24.2.tar.gz (190.1 kB view details)

Uploaded Source

Built Distributions

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

aioesphomeapi-44.24.2-cp314-cp314t-win_amd64.whl (612.7 kB view details)

Uploaded CPython 3.14tWindows x86-64

aioesphomeapi-44.24.2-cp314-cp314t-win32.whl (538.6 kB view details)

Uploaded CPython 3.14tWindows x86

aioesphomeapi-44.24.2-cp314-cp314t-musllinux_1_2_x86_64.whl (661.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

aioesphomeapi-44.24.2-cp314-cp314t-musllinux_1_2_i686.whl (679.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

aioesphomeapi-44.24.2-cp314-cp314t-musllinux_1_2_armv7l.whl (609.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.24.2-cp314-cp314t-musllinux_1_2_aarch64.whl (649.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

aioesphomeapi-44.24.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (653.1 kB view details)

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

aioesphomeapi-44.24.2-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (593.0 kB view details)

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

aioesphomeapi-44.24.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (642.2 kB view details)

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

aioesphomeapi-44.24.2-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (668.6 kB view details)

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

aioesphomeapi-44.24.2-cp314-cp314t-macosx_11_0_arm64.whl (574.1 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

aioesphomeapi-44.24.2-cp314-cp314t-macosx_10_15_x86_64.whl (578.7 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

aioesphomeapi-44.24.2-cp314-cp314-win_amd64.whl (522.3 kB view details)

Uploaded CPython 3.14Windows x86-64

aioesphomeapi-44.24.2-cp314-cp314-win32.whl (466.2 kB view details)

Uploaded CPython 3.14Windows x86

aioesphomeapi-44.24.2-cp314-cp314-musllinux_1_2_x86_64.whl (646.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

aioesphomeapi-44.24.2-cp314-cp314-musllinux_1_2_i686.whl (670.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

aioesphomeapi-44.24.2-cp314-cp314-musllinux_1_2_armv7l.whl (592.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.24.2-cp314-cp314-musllinux_1_2_aarch64.whl (626.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

aioesphomeapi-44.24.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (640.3 kB view details)

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

aioesphomeapi-44.24.2-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (588.4 kB view details)

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

aioesphomeapi-44.24.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (620.2 kB view details)

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

aioesphomeapi-44.24.2-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (661.5 kB view details)

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

aioesphomeapi-44.24.2-cp314-cp314-macosx_11_0_arm64.whl (533.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

aioesphomeapi-44.24.2-cp314-cp314-macosx_10_15_x86_64.whl (546.0 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

aioesphomeapi-44.24.2-cp313-cp313t-win_amd64.whl (580.9 kB view details)

Uploaded CPython 3.13tWindows x86-64

aioesphomeapi-44.24.2-cp313-cp313t-win32.whl (517.5 kB view details)

Uploaded CPython 3.13tWindows x86

aioesphomeapi-44.24.2-cp313-cp313t-musllinux_1_2_x86_64.whl (659.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

aioesphomeapi-44.24.2-cp313-cp313t-musllinux_1_2_i686.whl (678.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

aioesphomeapi-44.24.2-cp313-cp313t-musllinux_1_2_armv7l.whl (608.3 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.24.2-cp313-cp313t-musllinux_1_2_aarch64.whl (648.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

aioesphomeapi-44.24.2-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (651.3 kB view details)

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

aioesphomeapi-44.24.2-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (591.0 kB view details)

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

aioesphomeapi-44.24.2-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (641.0 kB view details)

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

aioesphomeapi-44.24.2-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (666.3 kB view details)

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

aioesphomeapi-44.24.2-cp313-cp313t-macosx_11_0_arm64.whl (572.2 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

aioesphomeapi-44.24.2-cp313-cp313t-macosx_10_13_x86_64.whl (577.0 kB view details)

Uploaded CPython 3.13tmacOS 10.13+ x86-64

aioesphomeapi-44.24.2-cp313-cp313-win_amd64.whl (512.7 kB view details)

Uploaded CPython 3.13Windows x86-64

aioesphomeapi-44.24.2-cp313-cp313-win32.whl (457.2 kB view details)

Uploaded CPython 3.13Windows x86

aioesphomeapi-44.24.2-cp313-cp313-musllinux_1_2_x86_64.whl (643.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

aioesphomeapi-44.24.2-cp313-cp313-musllinux_1_2_i686.whl (669.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

aioesphomeapi-44.24.2-cp313-cp313-musllinux_1_2_armv7l.whl (599.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.24.2-cp313-cp313-musllinux_1_2_aarch64.whl (619.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aioesphomeapi-44.24.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (637.1 kB view details)

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

aioesphomeapi-44.24.2-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (594.3 kB view details)

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

aioesphomeapi-44.24.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (612.5 kB view details)

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

aioesphomeapi-44.24.2-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (659.8 kB view details)

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

aioesphomeapi-44.24.2-cp313-cp313-macosx_11_0_arm64.whl (529.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aioesphomeapi-44.24.2-cp313-cp313-macosx_10_13_x86_64.whl (543.1 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aioesphomeapi-44.24.2-cp312-cp312-win_amd64.whl (515.4 kB view details)

Uploaded CPython 3.12Windows x86-64

aioesphomeapi-44.24.2-cp312-cp312-win32.whl (457.9 kB view details)

Uploaded CPython 3.12Windows x86

aioesphomeapi-44.24.2-cp312-cp312-musllinux_1_2_x86_64.whl (648.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

aioesphomeapi-44.24.2-cp312-cp312-musllinux_1_2_i686.whl (673.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

aioesphomeapi-44.24.2-cp312-cp312-musllinux_1_2_armv7l.whl (602.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.24.2-cp312-cp312-musllinux_1_2_aarch64.whl (623.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aioesphomeapi-44.24.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (642.6 kB view details)

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

aioesphomeapi-44.24.2-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (600.2 kB view details)

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

aioesphomeapi-44.24.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (618.4 kB view details)

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

aioesphomeapi-44.24.2-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (665.8 kB view details)

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

aioesphomeapi-44.24.2-cp312-cp312-macosx_11_0_arm64.whl (533.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aioesphomeapi-44.24.2-cp312-cp312-macosx_10_13_x86_64.whl (549.0 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aioesphomeapi-44.24.2-cp311-cp311-win_amd64.whl (516.4 kB view details)

Uploaded CPython 3.11Windows x86-64

aioesphomeapi-44.24.2-cp311-cp311-win32.whl (466.4 kB view details)

Uploaded CPython 3.11Windows x86

aioesphomeapi-44.24.2-cp311-cp311-musllinux_1_2_x86_64.whl (661.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

aioesphomeapi-44.24.2-cp311-cp311-musllinux_1_2_i686.whl (694.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

aioesphomeapi-44.24.2-cp311-cp311-musllinux_1_2_armv7l.whl (610.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.24.2-cp311-cp311-musllinux_1_2_aarch64.whl (640.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aioesphomeapi-44.24.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (654.8 kB view details)

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

aioesphomeapi-44.24.2-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (609.4 kB view details)

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

aioesphomeapi-44.24.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (635.6 kB view details)

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

aioesphomeapi-44.24.2-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (683.8 kB view details)

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

aioesphomeapi-44.24.2-cp311-cp311-macosx_11_0_arm64.whl (533.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aioesphomeapi-44.24.2-cp311-cp311-macosx_10_9_x86_64.whl (547.7 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for aioesphomeapi-44.24.2.tar.gz
Algorithm Hash digest
SHA256 e43758e51e1110f68118c199edbfa973f0111b5d061f8057a2109b689bb5e071
MD5 7b6ce2c9c65bc177754509d90a7786ec
BLAKE2b-256 85125714ea8f9d66f15e3a73fa15acad74cc469844bd7f12aacd1814742180b3

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 a10043c98a4a59a46570df48c24621012319a3b3783f631a2083baa92963effc
MD5 e66d2fb7334846c33c194c6266941cea
BLAKE2b-256 1602cc3c7b7b093e6119140b7d6e88a1520d995e833f51c53ec135badfa8daee

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.2-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 52e06823dc383527f1bcacfd1116a268c4e33b3a3fc50032cbe77ccc89e9b7a6
MD5 06f9d9636237f1096272231367610483
BLAKE2b-256 1c189a1af605d1c5d987890434b3764db37bacd9aa097e50fef3c6e2407afc48

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 172b093d8441850514f55032398c23eee572243bc4980993e23b5071052378f5
MD5 2bd64f20b5d0f5986aa73d84c46ea6c6
BLAKE2b-256 4c42c614c6762a5626195f92db98e916785e5929f14c1c0e1931f71322db7eb5

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.2-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2ee62597085e6395d7aea3e02832477905c9b4bb8cbb1c6b6af9de96ebf9bcca
MD5 a8b037665c1247f6337ca2321d0ccfb3
BLAKE2b-256 faf78954645f7f535f5d5d0e001afbbabc0dfb514f94bab374f3cbd8e0669512

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.2-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 95f2ddfb3eaab9c377758a313953b6607be3d10689b3ade3f07671b978f92a72
MD5 d8e2dfca993da280507397d763038b25
BLAKE2b-256 c3284b4376bf6764417de92f3554185965ee07503ee475bfae661f9c4c6d9cb0

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ccfd53da9e0f8b6db23d0a51f29e6b257ec90bc8037355f30f295a54d66a7f49
MD5 afc8fd6e8e6d0b3cc72bed05d5780aaf
BLAKE2b-256 32a588c8458d5d315c7c53bfa89afca5e2790c2993b7ae128efe80288f0207b1

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cba7423ebb272488ff461cbf98553f8ca937cc777f002af2aa84eee2ad20b3d0
MD5 83728107ba0790ab61b7978816d7e1df
BLAKE2b-256 8cbbdcde8bbdc554ba45279b9dc69d855813a49a9aea7997d2d0cfc958eb7962

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.2-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 adc20310d92666f02e66383a42a27dd59669877a43763bb1166836fc0ed0179f
MD5 7f6c578908c4d6d654226e02d6639706
BLAKE2b-256 de9315d2f2e9b23817e368b3a8c724d6a188c023b2d857563efd03b5799bb551

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4f1dd46ab05038853d3f2de4720e2785ac9acfc74d2e7c16c1a722b9557bd9ec
MD5 04109f8001aa6c30f60515948f55d829
BLAKE2b-256 9c20edee9514a50a75be6068b9f43930ec24c1f7c772022852ea5f0c5064f497

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.2-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 eeb69c1759fd6631df796eaabf4fef5f25f1c0cc8234df5ab3fbf77ba34e1aaf
MD5 cd9dbfcc999823dd69d20849e6df47a8
BLAKE2b-256 3441dbf514d58e15c279246401f926449e87fce224493ba8c688a8b29d1ef4a8

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 10c7ef76f6d18d84f34cd4881bea21a6365d8838dd965d22275969d858d1fdb6
MD5 4f1845509f95683ad82a017759f1643c
BLAKE2b-256 c76649c92abfa608c4770c2947c603c7e71e78f4dc4dce9c1272aa0b5295a6db

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.2-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 fdf0b814ec98dd7beb9c64d70bfe8cc8b4b4bcc7edd2b2d064a04b57425f670b
MD5 eb0da407ff5266c4dbcf56d89bbbed3b
BLAKE2b-256 e9a1cecd73d02406301bb126d34c169cfe777de7cc75e508310cc1f47231dd39

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 ac325ff41fc3cbb408f9589542cfc8d2b3dbaffe6fd239162da94ff8714d1d38
MD5 bf17d6956c70365199ce543511445d70
BLAKE2b-256 3270677cff96e4a15c25eb1a6010004663a7a984c8af51f9aadc2f31965395c2

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 f0182bb5172382ce0aebeb925271e983058cb884d87bc7048956edc82776359d
MD5 cab8e8c4e084129dbac72d6c50b2d4c8
BLAKE2b-256 29e013425d4fe1cf6e38f242e937515d8c01c0e33fe1c491eefa888ac815a1ab

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 960f2a10a08f5256249f7e4153b080c7784d311ffe4d724fb3856c4d9a2ee74a
MD5 7390e932001f07e0f133d9b0a009b365
BLAKE2b-256 d42cb63803a01c9e98b5807a0e4bd2f34cd08b86304ea7c55d01bc390db2cf53

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.2-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 16c8572610301d92e8606d058ad08f666d69a2b17ae40e26799105255c3ab6ab
MD5 76523ad03b05c9d1a93b654226d35091
BLAKE2b-256 a0af1ce46263d85e8f6d41f93c4896fa19a08dcb3e2efdcd9fe508cb8091a672

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.2-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 050b771f50f0f98b4fd488bf5f5d9c5093d8a0f3ff34b1e59d2e254763337f4f
MD5 d87c667b19751d605e8bb3de35d296e2
BLAKE2b-256 db910b4901a568dc92c9110709560c67abc1ec7b30464a13daac6ad7070bc9a5

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b2f2ffabef43468b5ebec2d9eef0c151351dc374693c28bb16688443a0c035e9
MD5 fae35e6941e7033b576a41e54eb46df1
BLAKE2b-256 ae8def0121a1162ab107dbf14f7ef2432f228288c802a189f84fe7cee7208b25

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a95cb46ba2cc9657c472aa333a5079ed2259214de780e4acd6859a24c283d1ff
MD5 377ced9f91d7abaa8b7bd3672ac7bc56
BLAKE2b-256 a06ae9078fcd528c04ab160c1b95566590da1af8c02bd4925f1131e698982965

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.2-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 4c80395286b1eb6841119535cd3eaae52885b0c3764c68aeb50bed12aff94f0d
MD5 a8c0eabe1402d45aca13f10eca0eb561
BLAKE2b-256 dfb9b3032f70e30624c7fb9a90d909d1f4b3283c4308d88a0f8df316cb9372b0

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f8d4a6141c7c4aaf04b79c616c04b8b8434d595c5347ca95b77683b28fddaf92
MD5 9402079b10cc419fb440bcb436a2033f
BLAKE2b-256 50aa1e6e17d1073d5f1398d97becf9da6c6c5d49f736f8fae08c26411bddf9a1

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.2-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 e4bec9e23cc5dfae80513af44044e81929cce253eaf2a3ccf8ed7a5f07edb478
MD5 82af452c585446a2c878a690cb7db80a
BLAKE2b-256 b5826ef2fae6b9af432cdb47bf0b18463efbc46182e078e7d1235e993d30debb

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bab3529b5468aa68cab2fb61de40e47a5ad29715d7c6407b96c61e176d98e6d6
MD5 ef7489b97d33813ba3626089998c7887
BLAKE2b-256 89b0e54f82b9d8331ae66c58aa370674e77f8dd0ce302dfdbeae3bcf9596ac06

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.2-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 37d6fcb6e24c0fd0051dd5ac73b570dfa5aa3e5eb1db8916729ab5abcc449ad5
MD5 817e2fc929295e13bc75f149be1b1781
BLAKE2b-256 be885d7db56674a2a118c28ff4ee7bfbcac9f4f929d555fca6b7fb36b61f57ce

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.2-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 7d79dca6cea8fa524904a3ee5eff9170001e91f0b4f287e853ab8b550c51b37c
MD5 9d44d5b668afcd041fd8a5107f81bd3f
BLAKE2b-256 0514bffd5d520e31b4e6c4e2849267dccc0a125012ffc48a307ccf3f88074014

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.2-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 0f1e9c6ac114653dd32216550849ae36f3bac1a310354c5e670533ff084a68b8
MD5 efff45572e83e4f72a7c6542210bab1f
BLAKE2b-256 9a5b091fcdda9ebdec40adc8c5c21456b7e82e1335d395e29355fbe84fa03245

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.2-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0ff76abe1f707f8862cb744e951536cf78be8b538ea2c903cbea53c7dfc29017
MD5 fe1351eb4fe6b76df7215d6da87239f3
BLAKE2b-256 db42564f43bb7a0396667569d7d84cecc92daacb98e7c9c531fb500277d1424d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.2-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0e05de9e8060229b2130e7b07dc2fa95b2893ea4d53d1b705f7c8642e9928996
MD5 eec9844c6b32e38d83e457bc853bee2c
BLAKE2b-256 59a684f98f4b3880902a25a6fdf66102563344ebd45f57e2e13ac75af7db2cb0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.2-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5ed19d14a9531cd900f8c1cfc8f9dd59b884ecf584b1eb9bc1cb6fb1f8465c6d
MD5 4fed4724f2cb6af1d0bd25fb2513d400
BLAKE2b-256 115ce2a7899ddb620d058a799ae9c6c8c9b3b2e3f11683b38561361cd0dbb060

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.2-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 63aab3907b421a046a53f84912d2272e55c61842d3ced7dc5876f92903ee57a1
MD5 b2fb8b825c0c8fe034f542482604d4d1
BLAKE2b-256 eb560f5567932970a8dbbbb5efb081c39be668fb0000152746f2021e1fa8ae15

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.2-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d4bdf3d7e8c1c07b39fc3aca1e3ecd405ca9af2cfb990291230417f85f6a319f
MD5 1efe2f0da8eeb42d6527c94edb251936
BLAKE2b-256 c64eeb8231ce28fd49fda56964db3f607e6ea095be5ed15c413bb0e0a385d004

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.2-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 3498ac1827b0b7001c06ae1b5fe34e5d532df43c7166f48b7bfab5d87f6dd063
MD5 f2ce998fb9c178a8896a6d7dbc40e315
BLAKE2b-256 1cf83b1fdea32ed07d2c55a49ccdec501718995cc246769aecc236f91e265d86

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.2-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ca52f49c6f0feecd786b5f6bbce897c21141c961f15ad52385b5aa0fc2f1933d
MD5 000a2459df0ed48592338bf61fb749ce
BLAKE2b-256 f6ba2477478244f7cf86d5bfb6510be8104b2b3c751d0000b0c5214a9cbcb437

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.2-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 dc94d09b5bf403925960f0e1930d4fa52e6ac6c1e14adc0b5f573a040f99456c
MD5 8cb1a9f3e6259476487c42ec5b3a8ced
BLAKE2b-256 8e47e66f795d3f638e175d83c4372991fdea318c1e6955a8122a61e5243cfa68

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.2-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f8f00e2d2fd5c2eb4048f9ffed5e37f8ddb8f7f4b15ff1cd4777c103d9788e04
MD5 ce4087a0b47c125be6d85c7d197e9df9
BLAKE2b-256 cdc8593fed0926f9371bd017b0cd7d22eef3b5ad94f3ce2fce661902dbcd5e74

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.2-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d7a795d3256b907b0c8012ee4523e69528c027a07afa19df4803c683aac559b9
MD5 a93e09b29a50377351fa169bcdaf8a35
BLAKE2b-256 217fba123e465c83e7b00a31b8504ac73976aa112848e0e06f249989d15725ef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 9844689f71aa8254d700ce02c89a4d52439bf958c41a061fb52f906a65497683
MD5 3d11b01efeb38fc55ff87c0836d387e8
BLAKE2b-256 4cd506444906b274bb5e56af8fc4ac45efc6a00283d786b8200929edaf791618

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 3f1dd917733d6bc92bf4f1381e36732eb18b95c96447a87178e84084d7bb60d3
MD5 5251802aa040024695905f38caa2aaae
BLAKE2b-256 c61f45a56f3b0eef60d85f7e34b03fe4f38fc14b226f5c64ef710788d5919299

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a295635db7001d274a8cbc420bb60453733e6eaea0ae13a4565c98dc976ea2c3
MD5 6be9901d9d26c59a25dc215eb1c0ed6f
BLAKE2b-256 a5eb55d6a3dac925bd5b4d38cebeb567c82fef373b2d5e948789bb337b46d446

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e9dbf1676a5c04dd601c806be0fff26cef27bac47f1877c9c424d27a8d3006f1
MD5 aaf7041063e47d441327ce9337864dde
BLAKE2b-256 0bdf03aea2f5b068ced14e6feedead32659a9382dc7a4a1914c6e34a2d8e9d47

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.2-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2ac4024de7a98a6747ffeb4b3c0c2a2132768e4d71af5a3010105bc43dc6ee4f
MD5 bab114567916b6ae8c0fca97117f1692
BLAKE2b-256 99247f1806b093aaa0c5b54b1df2a127583e97944a3fcccb35fbea2f201a4e5f

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b7797a94f0495c936701d0c5cc1deaa9bd745683d52ee0199c3526e6de0faf14
MD5 945ee7297d1a78e7f7b6679fedf9f405
BLAKE2b-256 82fda872722395de3186bbaa86411fcec17dd729d142f0d2f55a4a80a2602315

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7ea0ad0ba322d1cf74272ca85f838e2207e1686ca9e3656a2c878e1bb45b067c
MD5 35e01a6104922f5ac271b2bf95b26381
BLAKE2b-256 c759fff4a397d11d64c36a6ba6da82880f0ca3dad9ddf7c03ac91c176ff712f6

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.2-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 3684690af80f83b8ec6e6dc629c19fc379bfd187247c6635fefc13a2e5a31fc1
MD5 4214864619cbbec86d56ade318988d5b
BLAKE2b-256 c3efa9d40ce7bc63799dbd348d95f69589fe2d8a8feaf7d50617864b95375539

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9e62fb4f9dd0ed461a6a95e0ad7a9477e31d633d40325283b2a54b41366f1c0c
MD5 d6f3745790e579206b059095d978e87e
BLAKE2b-256 7f6a0c72ce32c7cf09b5ebfac141ce3ef2cf1c91690c199cf4d7454fb51cfe81

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.2-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 e4488381d2b09009979414e37a82d5ca2c630395b86fe23cb75566472531fed6
MD5 ea77ccbc2dcb94d898a33ac77e304294
BLAKE2b-256 e7b3617cbe9668e9e45c50b8c2599a809498b17b100ab099ed80d028451c8bda

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d39bb573ebaa8fd5404cb212383b88cdffb0a3fb441edb6f8a3647411c337755
MD5 fcd3f81837ac14c3d82ec30db60a4ce0
BLAKE2b-256 71e102b56e39918aacce0b4eed4a335b33fcf669e6eea445134f462870077dc1

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 3d1751cf49ba1931f8992ce983a95f4cf19969353074cf8eeeee630c8f1f4b02
MD5 0f2de99fdd3e105c7adb718d8acf535f
BLAKE2b-256 653e9430f0c7f482aed2520b94e4ac9eac0d9f1ffd8b0c5ff16fc6e22de4f1e0

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 34bd86a6e239606b82e74e4ed59641b41081f340f5859209be36590a616b6e06
MD5 4e7ac44460ee9127347854f10ffc43d2
BLAKE2b-256 7a4932fedcc8dd06791671a996f10557e0fc334deafc3688379445ade2439c6b

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 13a6f966403e4370087155ab51835f051a08b64017214fed3da0d63a648d06e0
MD5 753c8f73619f31b3d86c133170bc056b
BLAKE2b-256 f514d67f483a654c7ce0d1d02253fa0712516ac6ca7ef18bdb7ac2e9fe9886c6

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0a004474a66e09f9f2fd21dbf89014a0f5c5e28c9f9080909e8cd4973580f61e
MD5 dd460b217d0a0e5602697d366c107e65
BLAKE2b-256 bc72632100a02835c038c2a74c0a390cce6adc850f4665587b767b485b98e655

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2d9e384ba7bf782b3ccd0b892e239b5a9d774c0bc7ce734ed921758c15182176
MD5 77335f04df8a187f6356f368fe217fff
BLAKE2b-256 40f3079e6d364066d17f1a1ce25b2f689844435c8a6557aa80959b1c53f00a1c

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e503bc464505950c1466901a5949f42e4eabe30463d184a6bd003b036f2951fd
MD5 dff99f4590670e18a91492c647bcd505
BLAKE2b-256 34f4d82c4d1bd0102317d22a529ce683b5ba6a5c29ba31077ca243f7ec41a18d

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ba9211c7a9d1ec368d95bea15cf240877312ff0d36d1abcafd18447ca95beae4
MD5 2998c3894703f3e1e1ac26ed295635d2
BLAKE2b-256 c6c47466a658b4acc11bed42270194e0e62616877ef8f19b36c9c082f8874993

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e213d55a02a18f0606e12bf9ae9e68d7232b6bd8ea3b3522e537cca574635b1d
MD5 fdd3b3278c97f4fc7ad651397add2ed0
BLAKE2b-256 403cd0ebce04716037f26c32b688db2cd171ecd1b523f1434b103c436cbf8ef8

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.2-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 00b3ff1ad457579f48158ce90316d3ae24d7c20fe6e83b149cfcb7df55dc2dba
MD5 8ce4874ad8c3fba3da36d17a6258e2dc
BLAKE2b-256 4d52e3c0b7cec917f0f628a899d74449e7acd69ed33a77c656d583a38d827611

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4851f0f9d1931e888ddc5a410fb7ecb59dcb13094367c55d5096b66801bb194c
MD5 b166feb4da03d7640cc1d7ecca16d015
BLAKE2b-256 7520854d37a1b9cab2fa23ed6f8aa7a2a03698c8fee754cd10bc7794947d5ef2

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.2-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 6bd220a0c4ebd7c2947002b4de06d974a9669f1b27aa8d4165524b885fe3ebf4
MD5 fd99913cb38d3e558714c6dfa7244bed
BLAKE2b-256 c444948492cb58708d30df05dcc8de55dd156c85f05b992eaaa2388a05aa3574

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 18b3df4782ed1133bcd44c08b485be45e0f2ecb3879b2d01b02ae2085b3701f3
MD5 c9d4036ec39c056a067acecbe48e55f3
BLAKE2b-256 2a1e454d42edc7eb4c833bac4ebf316efc66839df60dd52d436646f5829ac4a4

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 af296e3205c5cf4cf24e7a3e9c0d7614b0731f65cc7ab5ceec657632b9fe815f
MD5 49617beb8c7a61badb9d110688a61709
BLAKE2b-256 8b11aa4605547211aa8f4ee92dba7b478a82e6305274d83d271860352fff9c2e

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6cba3ae89384475fa31567f2fb95b082133bb5f94fbb5a93efd34ff882c41761
MD5 d0a0f1c8996536b5b2fb59710f35c2c9
BLAKE2b-256 7ba7dc42b71aa9a9d7bbdfa4df0694afd20e6ea27b7820758a2ed14f8cceff18

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 11f024cc54f6f3a4ce25b3e188a8ac43f1efc844f50a0cf9e545cc137645f824
MD5 98df5be392f14aeef85a49e2d11066b4
BLAKE2b-256 b32efd210e001a74e19c47ac0ba658257eb56d8ace2ed10961f00268b1bba27f

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2cfa995bf641240844e4a96f097ec95a8553e3c4664c9ffcd3a7ea480fa9eda0
MD5 b86cc67c636c7826053d1a232ca3a614
BLAKE2b-256 fc65395ffaa7051798c611a3a0cb5dcadea08a756abeb1806671c43b61fb07d7

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 152e1ad474f590e062ae7cc46f9d9823f7a73ff8bc9c11e7c5f29b55a4aa0867
MD5 e60ece349fa10cdf99572357fa8afba5
BLAKE2b-256 33677321f2799feabcf9f2e6f381c01ba6b2be2a25189c5a153e9b6e61524316

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f26218251938fde7804467e4ffaf62bce3b76ebc9b9dfdeb7d7903fb5383bb42
MD5 58f2bee098bf1bb66fb47255678ba7e6
BLAKE2b-256 e29e2a04243ab20241a1ea5faea17d4ec429d7235f5a0e1b9dea9ae6fab49b72

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d467a8770a5d3d59df4634f4324319a40f61ebdd1c35bb096e9d4b8551516e96
MD5 5878f33634fed3af66000f3f3680c416
BLAKE2b-256 03eeeed539756e21b457e9a0b4ecdff12db5e94ef5bec60642b1ebf1c6a627ad

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3785b79a8f4cdb5131aa89df3620cca037ce0b8e1c33bd7935a4c5e7cf8c2bc3
MD5 31ed994cd590f526cdfc6650304a68d7
BLAKE2b-256 94b5fe8e369a4707a68dea4807c502e96e8cc85d616082719d11b1d843691844

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.2-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 76b7a751a7f096214d517ed767fc371431a249a2f21e2eb4088479aa6d7f27d7
MD5 32c519ba96f17d497a672d5116454add
BLAKE2b-256 3d59aa443c67a3be1dde547a475345048949e6008dd7f2201bb4a02a0ae714a1

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bef4ec6350716fa82a08e963d75dc26dbb26a7e4974ddb7dbdf0ae38a9ef5abd
MD5 ceaea29d26f205b67e2dcdfe890ef280
BLAKE2b-256 47298c2dd7e0b6dbe58c29cd4b474ea4ae0a6ed6efdef3fa6b977013f2345d7a

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.2-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 5853349f6fef16795db2615397d669f99c724b56896120c558f56209b6511233
MD5 3ebd2d385dc5a756d1367c9fdff78345
BLAKE2b-256 9b47adae27acb3dd7bbcdf0813cfddbf7124d484533dd7356303fe16d90696c3

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0a0d7d53c0a729eef077ec8cfa692beadba0dfd3a09e3b0c54fc36254f522b6c
MD5 604a7049675ba60982d8b8104d954695
BLAKE2b-256 7a081eec8970e8920de5f04093a9b3da1177206da78d91f4c14255cde0560885

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d57c932d67ffbadb448145532d740e9d120ac37c008f8f88f4e3706328b02f8b
MD5 331103bfa096e419b5e81f45ae8c1ecf
BLAKE2b-256 117e398178362bc52ec2d004149fc8b568e827f4274b12196be4360bc3ea0a94

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

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