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

Uploaded Source

Built Distributions

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

aioesphomeapi-44.24.1-cp314-cp314t-win_amd64.whl (612.6 kB view details)

Uploaded CPython 3.14tWindows x86-64

aioesphomeapi-44.24.1-cp314-cp314t-win32.whl (538.5 kB view details)

Uploaded CPython 3.14tWindows x86

aioesphomeapi-44.24.1-cp314-cp314t-musllinux_1_2_x86_64.whl (661.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

aioesphomeapi-44.24.1-cp314-cp314t-musllinux_1_2_armv7l.whl (609.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.24.1-cp314-cp314t-musllinux_1_2_aarch64.whl (649.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

aioesphomeapi-44.24.1-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.1-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.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (642.1 kB view details)

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

aioesphomeapi-44.24.1-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (668.5 kB view details)

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

aioesphomeapi-44.24.1-cp314-cp314t-macosx_11_0_arm64.whl (574.0 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14tmacOS 10.15+ x86-64

aioesphomeapi-44.24.1-cp314-cp314-win_amd64.whl (522.2 kB view details)

Uploaded CPython 3.14Windows x86-64

aioesphomeapi-44.24.1-cp314-cp314-win32.whl (466.1 kB view details)

Uploaded CPython 3.14Windows x86

aioesphomeapi-44.24.1-cp314-cp314-musllinux_1_2_x86_64.whl (646.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

aioesphomeapi-44.24.1-cp314-cp314-musllinux_1_2_i686.whl (670.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

aioesphomeapi-44.24.1-cp314-cp314-musllinux_1_2_armv7l.whl (592.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

aioesphomeapi-44.24.1-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.1-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (588.3 kB view details)

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

aioesphomeapi-44.24.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (620.1 kB view details)

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

aioesphomeapi-44.24.1-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (661.4 kB view details)

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

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

Uploaded CPython 3.14macOS 11.0+ ARM64

aioesphomeapi-44.24.1-cp314-cp314-macosx_10_15_x86_64.whl (545.9 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

aioesphomeapi-44.24.1-cp313-cp313t-win_amd64.whl (580.8 kB view details)

Uploaded CPython 3.13tWindows x86-64

aioesphomeapi-44.24.1-cp313-cp313t-win32.whl (517.4 kB view details)

Uploaded CPython 3.13tWindows x86

aioesphomeapi-44.24.1-cp313-cp313t-musllinux_1_2_x86_64.whl (659.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

aioesphomeapi-44.24.1-cp313-cp313t-musllinux_1_2_i686.whl (678.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

aioesphomeapi-44.24.1-cp313-cp313t-musllinux_1_2_armv7l.whl (608.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.24.1-cp313-cp313t-musllinux_1_2_aarch64.whl (648.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

aioesphomeapi-44.24.1-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (651.2 kB view details)

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

aioesphomeapi-44.24.1-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.1-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.1-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (666.2 kB view details)

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

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

Uploaded CPython 3.13tmacOS 11.0+ ARM64

aioesphomeapi-44.24.1-cp313-cp313t-macosx_10_13_x86_64.whl (576.9 kB view details)

Uploaded CPython 3.13tmacOS 10.13+ x86-64

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

Uploaded CPython 3.13Windows x86-64

aioesphomeapi-44.24.1-cp313-cp313-win32.whl (457.1 kB view details)

Uploaded CPython 3.13Windows x86

aioesphomeapi-44.24.1-cp313-cp313-musllinux_1_2_x86_64.whl (643.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

aioesphomeapi-44.24.1-cp313-cp313-musllinux_1_2_i686.whl (668.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

aioesphomeapi-44.24.1-cp313-cp313-musllinux_1_2_armv7l.whl (598.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.24.1-cp313-cp313-musllinux_1_2_aarch64.whl (619.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aioesphomeapi-44.24.1-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.1-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (594.2 kB view details)

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

aioesphomeapi-44.24.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (612.4 kB view details)

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

aioesphomeapi-44.24.1-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (659.7 kB view details)

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

aioesphomeapi-44.24.1-cp313-cp313-macosx_11_0_arm64.whl (528.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aioesphomeapi-44.24.1-cp313-cp313-macosx_10_13_x86_64.whl (543.0 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aioesphomeapi-44.24.1-cp312-cp312-win_amd64.whl (515.3 kB view details)

Uploaded CPython 3.12Windows x86-64

aioesphomeapi-44.24.1-cp312-cp312-win32.whl (457.8 kB view details)

Uploaded CPython 3.12Windows x86

aioesphomeapi-44.24.1-cp312-cp312-musllinux_1_2_x86_64.whl (648.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

aioesphomeapi-44.24.1-cp312-cp312-musllinux_1_2_i686.whl (673.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.24.1-cp312-cp312-musllinux_1_2_aarch64.whl (623.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aioesphomeapi-44.24.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (642.5 kB view details)

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

aioesphomeapi-44.24.1-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (600.1 kB view details)

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

aioesphomeapi-44.24.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (618.3 kB view details)

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

aioesphomeapi-44.24.1-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (665.7 kB view details)

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

aioesphomeapi-44.24.1-cp312-cp312-macosx_11_0_arm64.whl (533.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aioesphomeapi-44.24.1-cp312-cp312-macosx_10_13_x86_64.whl (548.9 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aioesphomeapi-44.24.1-cp311-cp311-win_amd64.whl (516.3 kB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

aioesphomeapi-44.24.1-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.1-cp311-cp311-musllinux_1_2_i686.whl (694.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

aioesphomeapi-44.24.1-cp311-cp311-musllinux_1_2_armv7l.whl (610.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.24.1-cp311-cp311-musllinux_1_2_aarch64.whl (640.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aioesphomeapi-44.24.1-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.1-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (609.3 kB view details)

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

aioesphomeapi-44.24.1-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.1-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (683.7 kB view details)

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

aioesphomeapi-44.24.1-cp311-cp311-macosx_11_0_arm64.whl (533.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aioesphomeapi-44.24.1-cp311-cp311-macosx_10_9_x86_64.whl (547.6 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: aioesphomeapi-44.24.1.tar.gz
  • Upload date:
  • Size: 190.0 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.1.tar.gz
Algorithm Hash digest
SHA256 542fbd45b6e84c245695ee49e53601eb63664554e0cc3a1e4cbb5361e8dea5a5
MD5 9d1293b6ad717b2c574b977cd2f0399a
BLAKE2b-256 5d1248a986b4b050afdac9c2b09484931e968c3637b0a7cb2ea857f47e9d6c2d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 a896aee75d79c8a30d51726a419920eccd03395bcc0ed5bfe3e515728925d833
MD5 e59d3a5bb04213e31c57cc27050b250a
BLAKE2b-256 d020b02ebe52ab95d56e4d3505792f69c5cb889767bede9e469b87609968a32d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 058779accbe3720bba583093a4c43108405e93cbc6bb96b0ba8b09745d142dfe
MD5 a10485df407b8dfb8ebf3abeb429252b
BLAKE2b-256 ffe03ea94de161c0275a5a5a538394c96e1a7fd527f51364010f64ef16848966

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 db9823d5bb513a71b2796c99078d8c2e13faec589f713d1b61d1254462435f7e
MD5 d7eeb17dc56c270ce875ae70f5b223d5
BLAKE2b-256 71a4e82f5d61ac58c3db9c461c567951dc8a4e34c22163356d1418671cec2e13

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.1-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 303e3d147c9dbb65c185b5378b696c9db495df4ec364188ba976cd39f16a1a57
MD5 f948eff454cdf84bffc67f8b3a17b381
BLAKE2b-256 8bfb3bf739ea8d0f0e7a2465f7df6da798d53fa0da9e08c698134ce9fbb3f7c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.1-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3c5166229903294114e75964846cd71078acd74a2d87b1221320771ad91423e1
MD5 78c64755a626fd7a777029d305543784
BLAKE2b-256 514e93b37cb4100f46bbe029a5a4468ad1828ccaeff3790c551ccd7f4e9bf041

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6b3573e19a98d769cf5de733bcef12a434710652d29769f213800cb4442c1d8a
MD5 a31012340226984508a6d5a665068dee
BLAKE2b-256 323577372d1a68ac745e4f0f3dafdcb2da7ac66b2c3a60b8ccc9ff19ffd9f95b

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.24.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-44.24.1-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.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4244545f2b5a61b2c0a160c0086258bc78bf511c2744dca67be4c663b7744013
MD5 f00bac0f94767ece63cb5edf8931eae1
BLAKE2b-256 dfa6586a64a24f4e0fdfdaea0d1866cdded1e474b54640f73358bc7326b7172e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.1-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 3444155fe5e92c5a8b086aa21b70979d8833311affbf7ba596bf0dcfa12d1494
MD5 d58fda3fd42b7cea873df16ad8ef14eb
BLAKE2b-256 8e501688e0f74dc2e290956e0398ff1029b8150e3a96a1fb8bba0d2ab2ec56bf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f1c52672afd7977c692ad84f57d5239d083b04a6402375961306576a6944f89d
MD5 d3cf40c9706da068cc40dba36cf7b377
BLAKE2b-256 4a15fd56a1dd9c0076dada8c4a3276efbb9c0e02ac5d6fb820ca1d36063be0c4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.1-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 c423ec423bba945d0608070037327cc0d8a7a83bbba613b5568f6f8c563964a5
MD5 7caf7569581f21ede5f1b84faf85459f
BLAKE2b-256 122af117dbad590acc31c90f6fdb01341f87be975a42f7d647bb6f8c495f49b8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f9ad2c457f03fdedcee6a6e12a56fff5042f2517a8eec9801a59627c3964645b
MD5 e8bac0a7d734f7dd6b4af4da1e3713c7
BLAKE2b-256 19c5ed772abd177209eee6441b072753d095b3144735411585ef846159a06007

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.1-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 e1cd2e5a0b3f6cff04004173b31279feb50f868f491817f7f9fc772a2a64da3f
MD5 af0689ae5e60711050ec85dd96df0a43
BLAKE2b-256 2a9528e66f53487a6d1c0af69fd5ca98e76afcbdafd344db4c3e4c8221f92ff3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 a50f719f81fae97428877beab6f47753b18e7080198d383b8c3886c3da656e9f
MD5 687ad46f1f1a7943d59cd9220e6cc156
BLAKE2b-256 526b6f607b9ea937f6f99c4658a45eeee89232c77c520ee01841eed2d70d6592

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 e3f434ed993878e7e9fdbad9a1099dbf499b5c34fb2a1930b5d70580a8892113
MD5 11b433745d2f00faf3c81050235f62e2
BLAKE2b-256 e93f4b25c1c8dce8df781a17edb8c9d7bd15dda99177df300890f9657eeb2fd1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 62615a3d5283f2a664e6055c76d1c69baf74257eb957d5c2af075e7100e13fe2
MD5 8e162d577e7979bf6e1c03ed2262c897
BLAKE2b-256 b429f05e35cf04007f86d09e4690502361900a6356001a86cf2906fb4d5ee968

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.1-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2913e532ed326531607233b6a3d42bb39472eb3872e5ab826b860d4eb52d0c4f
MD5 48b16e6eb0f323fa273c1c3356e86cf0
BLAKE2b-256 f2ba14c8a12e83a6df49589c3225afb04721883a31e05ce2867b0c70dfeac7a7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.1-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a49363bc3173f26cedccdd07210d3ff93cd24ecadd97b2a82fbf03f74707b078
MD5 0581cd87024e682d593f69f23a7d76bf
BLAKE2b-256 0be70682789a2d3c3b4b23bed08c94bd296ea56adc90d7cce0cb26a898c857c5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d6ae82c900ad6e1c4ca0dcd7be2f9b2970d16de91daf58b97cd354dab0ff0b5e
MD5 8942adb9cdfa9fbb0948eefbaf86d496
BLAKE2b-256 a94a8c3760f01345df1e93d23d68a16394d183dd4c4f0f36ecd7f4f21a1be684

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.24.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-44.24.1-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.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 03bac2648f73a212d992dfa0efbbb129df27f06c6c6e9c493f846daa080b2cd2
MD5 3811fd4c6afb59b4d7d68b0cbc474dff
BLAKE2b-256 5d2e68cc2b2ec353abfad2d5da2a47edfcfb2ff3be4b056fb15b670626dedb75

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.1-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 0bb679b61b4590e9fd176ae1df4023ab74ad8188b437d22c132417261eb5ca14
MD5 54fe9b28c43d851d99f9fee6a8cc886f
BLAKE2b-256 bf98941f58c416a810488ec4ebc238a90916cbd46ac6723d8fdac7e41b47da69

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 76ee44a82e3e1229027ff2ebda057905d63dcfecc5cf2e7804d0e9283b784c33
MD5 97be9e2ab15117c278d7f0d2e4c6eab8
BLAKE2b-256 6031a629ce019fcf5c2f99c9020289192d03ba625cdb38285488f79349e6fd42

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.1-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 ea0cb6eed1d4b383cf1885fdeb7be06f690974e5abd0027af872cfda3e6fc879
MD5 a1d94b03c3334292d9a2acd49d627855
BLAKE2b-256 aa5d79ad3fb36667019194bdeeff66303f29107ab3609ebac846ac531b179431

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c3597134206954d97c3741ae801074947aef82f6c87903d54d0caa27a4eac010
MD5 7a1ac906f6656f3acafc87b852b2c130
BLAKE2b-256 d78a63db709785f1711b5f478093a10d479c109820e08ea31b3c628ff8f9741c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 35c204bb9a84620a58aa67bb1ad3c92415420e49d2cd44e61f0fc357f30e50b7
MD5 fb1464fae25416ecfe48a37925de6753
BLAKE2b-256 345640263830fb1f8b8cbe07bac4a89fd258c3f2d1b791ab2706780571123cd9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.1-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 847da0574c00e53e6cd2e8c5b17e715928b738490a1983f9394d651a33832d73
MD5 99859598c46a323bc15c58441b4d038f
BLAKE2b-256 abc825060fb3a69fd93f8e8f919a9a7562ae07d5a11672738a7c09fcebf1bb40

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.1-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 f931764b2ea0f22869a01853e46e4e7e4a443a8bb0414f1b1b04d16a320d76c9
MD5 e2b571d957e27abbe2a92680c393a7f7
BLAKE2b-256 498119e5acfee65765e92dc54e2d81f7a1c5a6fda3abc20fbdff3b5e4dab9e96

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ea76b1024914006044fbbbe1296bf52818d02646ba02aaebf6e4ebc0f448ede2
MD5 22e1be7a996523c6afc7c0353332db42
BLAKE2b-256 cf7edaecf83e690f2335fe528f5e72fffec6ae3f226ccb28cc083b30a53e5909

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.1-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 08e70bf4e36b0424fab1a5bdf98d5b86f4709267f15f80418aabeedcc79b3ee3
MD5 b266eecb4e472a039fae503f8881a6d2
BLAKE2b-256 5c9838483d1f3bd11377ba3b95e4b4123a70e7891f743b3fec8bdef47e200bd0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.1-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d3fc5757337253cbd9f635bd370e21321e97327c4bd74e02c3c3988db534a26d
MD5 b9e013f1608c30fe1bc9ba44d6c9188f
BLAKE2b-256 0c4b9ca93e27ec2cafba089e41c63421870216e538e155da71ad2382c5fddfa7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2f2f7b3da9a4d003b30f958c6a6ee3216393d108f472209c98eaca2d95b91beb
MD5 ad505154ff691d596d30efb38c57461d
BLAKE2b-256 37a20adb9901808aa35136b6506f5df751db349d7758eac2d36b308b74dbf036

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.24.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-44.24.1-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.1-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 30d760e8ca0b6ac68b077230d48b3e3341a2e5e5f16221f305a697af818a4b3a
MD5 6088e82a42b67ffef4df2f640e6bea7e
BLAKE2b-256 bb79a098c5e828f1aa74503814bdd9f065dad8540b5a0d709e3595d89336bb29

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.1-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 442b5c141a134d8cd02b9fe97205f6c61e921658af53561f2fec417fe1d41a28
MD5 d61afbb4a86f5ba6d0894bd4b62f58b2
BLAKE2b-256 84f78b872209e4e6f15ce4a7ab8acbdf77e6dbbff9265790a1df4ac3a096eaf0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.1-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 aeace312c3594c53ed160bd1dd4c05fd9d89512b06045ddaa156f80cc1812cb5
MD5 90213aedc3bb8295aecc7b443a0daf30
BLAKE2b-256 d197f40b944e65c775236fc013102770599082fe3b55cdfa14cfacabfce88c54

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.1-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 39c84ca5376fcdc9319b0bb83005dba49e4ba6c379e2c481916b18e3c4799fe3
MD5 b8814c788a9eb93136ab955f759bd0b6
BLAKE2b-256 bc210e722ca1cc0b2846af5307e5e4368fd38ac0bb0324a08c6479f6fbe76680

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.1-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 62d487f4cab5093f3978e91fc2afac3ad9a627301a19e1d9bf09b0ea05489a1e
MD5 549e01e45bb481461ff7b22c6fdd668c
BLAKE2b-256 6d1607b447ca6e6d2bf2104880076186dd1cc3ecfc5e9c57b2442d0f03250bed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.1-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 2c97baacf13bdbae3246e93be65a7977963e3dde8ea04d43ab51569c1c2efa6b
MD5 2992934648f40410fd6bb6eac64dba0a
BLAKE2b-256 90ed3ed728966b44af7f27c9f64d4677a10014ec2ba52bf2e2583deb5e55a705

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b0125b8924a8fb7549ab4d16b9c8ef83848ceee66528411e4157d782df921cd0
MD5 2c30337f1eee206b9dee8e9b0245e744
BLAKE2b-256 fdd48e410329d2a17603bc4510aa424a37c235c50cae39ac2c9940f2221a367e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 5a9abc9f43aa2f4706b89d92734e940ad9434b5c0ef1aa60d8219bce59c449ae
MD5 d020fbde96527ecc2c4b5df3aaf71ff5
BLAKE2b-256 86b54236cd3ee72c09afa6a1e10e754477cb0f59f21edcdec26248279348258d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c745cef5973675ac94911c7f957c2719263b1cc8b38d556f0ec6c4ea959f8e96
MD5 f4c47c90115b1a495c1a3f96ea330789
BLAKE2b-256 2d2551113e5777c58e202b72f9a913645b97588719129d073b623aecf91e8bce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0ed1fd7eb602441a065b2616fc90147a2051ec8bc5829e8462d0d4030bc1f291
MD5 ae36d2d0c1f36be400772e1634ec7087
BLAKE2b-256 4603cf978495f555fac0006edcc475c02aec622ff94b985060dd1fb388826520

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ea0fbc515e8cb9ae389975281b87660c71b15db9b1055a8007515b5e7f2a318e
MD5 f26659ce8483a1f36c6358f2d7083260
BLAKE2b-256 b0ae0d43d2836ddca640eeba6484678221735be9337decd21c61e1e0069d30cf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0ddddfc648bd48b985bb84178ecf81d2f29c8aef437213a2e2cb708cd92b2b86
MD5 bc0ad60591b92965846cf06948970f94
BLAKE2b-256 4ba01d91f6dc96fb55cc434aa5eb4bf377d1cf8affb634e2d32a395b9add6c7e

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.24.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-44.24.1-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.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 03ad7d5c6fbe54e7fbd8a17714cb138d8c42cccb5e490803eb3f5209ed9002cc
MD5 95683f9aa8378b4869a019ac2bbcb21c
BLAKE2b-256 d4412d009eaad8c91cd6cc4512270af043a5218954ba219b40fd9ae03712ac7f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.1-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 0456b028184c48b50651077dab150c92a8550aab252af6c0b6855a2570785dde
MD5 33e4f79a6aa94bc0d3f6abd762ed14ff
BLAKE2b-256 deb7d4cd7e9244f71866926326fe80c945465cd300a8a9ee32341cb22c31bbe0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 39e4167a9ff6b49dd3646ef5c84f030a2818c6e120e752aa9447b952e8a34117
MD5 7a8f89b5c3d33721ca817a5aa7661c01
BLAKE2b-256 5ea7cba2d8851cebc40d2b49e474c131d4267e46b86d22db28bda069b5580352

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.1-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 f62a4c34770760c543215c615cff49a9bfa11230da198428de58815fd39ec32c
MD5 456f8a837cdd4a267bca67aa6e72e56b
BLAKE2b-256 346373671732fd45bff7f65ccf296312f680300995efe3ed977a3831f3ea9e50

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1d029e626277484e4887e88fab3aa88d45ed3ef6fae965e2e67f7304814077dd
MD5 ab24ba4babdcae38c98ac36ea0e88170
BLAKE2b-256 23bccbfce730b19e8ace29f347237e9168568bc25dd92aa72d2964396bea9122

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 bfafa4837214b9d116abf9594762cf8c671c3f56aba210c0b0563ba153b153c3
MD5 b4b953abed776530236bbb5f4a8627f9
BLAKE2b-256 a2ccfcfdd6eb96a3bd7ebf59ccbbdec237678b70369447ad9e7c5f4011870f4e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d11ee3b888c5c8fc0227952a80a1e28e478cc9adde941cb2e16fa1baac917de9
MD5 bf509f8f78df719aae0b74c89b348f7a
BLAKE2b-256 64b9f0ecdd745f0be7588503ec826cead8c57cb7fafb4465aa1226319288f4b2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 5ec2a1a5945926c277970173bd67dce53c6bd2dcd1d290d04df5e1ac3d2c18a7
MD5 cf860bad3bdbcad6184f610059cc826a
BLAKE2b-256 adce2cb1b6761c280cddb9c54f219d8947395897b4b00640d0171ba16d5d84c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ad3a746b02374ae30332c2134b3647b65650de9f805f8941521e222954bf16e0
MD5 7e7c9fe0f4575bffa7019995eddec1f1
BLAKE2b-256 141d3767685324aaf9903ca4648c8596f50b277ac5248e64c301f0bea39d56a7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d6cc325ea4a210d74eb2cae6815032fbac819ad68da45e0f0985f4f1d81b2e65
MD5 de10ece34dbf86440724e37caa903598
BLAKE2b-256 4f70ca941d005410e30c2f9e842a6ea2af8072f2f175f645ad225460ba942b40

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 016f99316a26725cdf074d10e37693bf3d097bc1b4f9bdde52f9afe1526e7076
MD5 f0602d70d259e541ed8f78632d5ee2ed
BLAKE2b-256 3788b214e2d415314890e84e9e32b27dc4274d9543eaec2fd2afa2d83858f5ed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 46072dfe69afc4b46a801b87448623f25b7e493d122adeab9d4d99dd5a3e09b6
MD5 7c4a0375428b93580ebf1e0088a77041
BLAKE2b-256 ada8cae67b8dfe099bb93caa7937685faefe9a641f78653db336582e71376c99

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.24.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-44.24.1-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.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d75fb43d42d23aac19370482b4fd062b2ad07803a7a17f1cc041feff1443ef91
MD5 67cc26f1c1c2f6e7e6ebf121410a1652
BLAKE2b-256 cc74fc9a5945d61e4bfe15435cb66d6bd09753a4855bf0c6c1c97a1c43ce4427

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.1-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 5f793a816c78bc2fdedba935b52053ae05daa0ea41993b84d1c12984a58028fd
MD5 08b89260171f30f7a498aeb998d351cc
BLAKE2b-256 8145f4229b71e4460a818a8cf9667f36d3175c4972e5cfa55080623e4f170a60

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 302217f64a9c3bd1e9ae82492c59267e4d3f689588605d6e3202d7e371b19bac
MD5 77f1b2d5fd65441ef77fcbf711062877
BLAKE2b-256 dd97437e7ea164fef836508a7ab2097349f8bdd2225573dca3eca395a93528a8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.1-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 4d36bbfbc1bc632ae0da2a014ddbb72b76446150fd6c799b0927c2f1ab68ba36
MD5 27e4039a5ffcf6955f777cdc4402c19d
BLAKE2b-256 6a84840291437156723719a7a32a347735449b8f9fbd755f4a2a4567896e3c3e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1e6997aa3b70110d86d3d4d637e2eafe3f62595bb62ce42ab65ee674c578c00f
MD5 215a6779cf2bf8280e9f5aebe9e0c56e
BLAKE2b-256 66ecd5330ce4b6d4c56b5db8407d7e963e037c3c0d709f5c884aefacb934f625

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 8f2e7bff78a4d673ab928e3e2f48877412ff9862bfa6b5ed33ecc9aaa34d238e
MD5 6bf70d205cb6dfe16f7dfb99c909a201
BLAKE2b-256 93b816a8f53b86d3a52d26dd78d877e587eb22af630a08acfd1518c8112663e7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 76d83849c3181c1f2bb0eb250c4b23be4344d4ade7a45bb012415847b30ee5cc
MD5 33829455bcda6cb986d9748f9c8ead5c
BLAKE2b-256 f7a1036158557b7c8b4f7ac40fc21b8626a286d4d9e58500fa5cb1e1c62ac196

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 036cd15e575200144c607b304c29f7fbfd76269705a17c8220c28f2c41eae462
MD5 f10ea56673956633d0536c0626eaac8b
BLAKE2b-256 2bf570519cb7bdfd9067a6094ef5506ef6e1cbd995ee8cd2db08cf41f4231aba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5f1894c31de29ea84f5b2541a268da70002682fbfea6a9138069fe066b0f16a7
MD5 fb02144b29798f0306c6d3cb8f363c72
BLAKE2b-256 2ebc04de822429ab7443e325789edc2cfaa97a47a5a98163632c6d31fd930671

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 98ab4705e8b33cb33a9bfeab481fa73fa7b27f0c88ca96eec8964afe8ed2a72a
MD5 82ebf47d70b744f9d9fefc3f5d69fff7
BLAKE2b-256 bec32e74dcbb1c94204f3017e486d4386e66db3407aa87a19fa28cb075165646

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e2d5027521319f2212f51c5d05140a4e2c9b6f95e0ce6c1b029809c50dbc43ce
MD5 5aa2bdc523c4e6ff94eac48c5974d7c3
BLAKE2b-256 c60e2f4205064ba462e6b315626d4a63cd96f2d0c2462f907ed86049fc1a0696

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7f9faa3413efecdfee57131abfc9db0a5a6db3abe19869cbd06903a9c00d7a6b
MD5 1305efe84ae5a1c70d56ba39662f0f75
BLAKE2b-256 377159e81fe7a82dd420c8ba101d91c3858ced7f58090bf270e22974e8dc4a0c

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.24.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-44.24.1-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.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7e8f4654deeb85bc090b24d60c071c911f44c985cc840ad015ea0320b76cbccb
MD5 823fd41201b2aac27845024abfb125c0
BLAKE2b-256 74fe68f21e1340006d8469837cf6e94380f6ffc7e3d9aef80ef0165a34cfc3bb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.1-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 f15246ed1bb6fefcf97d548c61d4e207eb9c2fc9200267933fabad915fb3d93c
MD5 fb79ad3c677c675b06146e62b15f0d54
BLAKE2b-256 6e3c6c3c386ad9a9366ff056dc9c3167c076c6ab65f88d92546b95f6bf3fc807

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 33b516f2775de344d748200cbdfa885e22c21ea0b38cca049a4451154533f53b
MD5 568446c13a034c12183627a63c93c2a3
BLAKE2b-256 360a87cbecc4306931bdb82ccf844d7d4ddb6af0d84cde25a2c12a00e37938ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.1-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 b3a47ebfc7474850f1b2f0c32c43c07637bb11b47edc6b635805c759a44a2638
MD5 72f24d2922fdb1c31960da60a1ce639d
BLAKE2b-256 320b118cb88296574998933871aa338fede0fc6e1ae52ff7a720f9d13ef9cbbb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b0ac2857fd92b0aa16be8be7c8e7beda685ff904a71ec59c9df734d98e8261e8
MD5 8e2f18c08f8dd0278627245018ec9005
BLAKE2b-256 0296befe885c04009183666ab56d14598580f6c9b5f5870bbc09019924173ef5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.24.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 44e57d33e0e63d89fe984f8000cf86a119e7fe405761b3f2b53d34d734152133
MD5 c81820c7fb2285f1a0978f7557d6fe49
BLAKE2b-256 e64a643efc5ebe6862253876ec05d36dabbb88656ec1b0baba56e67afe09db91

See more details on using hashes here.

Provenance

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