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.19.0.tar.gz (187.4 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.19.0-cp314-cp314t-win_amd64.whl (609.7 kB view details)

Uploaded CPython 3.14tWindows x86-64

aioesphomeapi-44.19.0-cp314-cp314t-win32.whl (536.1 kB view details)

Uploaded CPython 3.14tWindows x86

aioesphomeapi-44.19.0-cp314-cp314t-musllinux_1_2_x86_64.whl (659.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

aioesphomeapi-44.19.0-cp314-cp314t-musllinux_1_2_i686.whl (677.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

aioesphomeapi-44.19.0-cp314-cp314t-musllinux_1_2_armv7l.whl (606.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.19.0-cp314-cp314t-musllinux_1_2_aarch64.whl (646.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

aioesphomeapi-44.19.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (650.3 kB view details)

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

aioesphomeapi-44.19.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (590.5 kB view details)

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

aioesphomeapi-44.19.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (639.4 kB view details)

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

aioesphomeapi-44.19.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (666.2 kB view details)

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

aioesphomeapi-44.19.0-cp314-cp314t-macosx_11_0_arm64.whl (571.4 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

aioesphomeapi-44.19.0-cp314-cp314t-macosx_10_15_x86_64.whl (576.1 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

aioesphomeapi-44.19.0-cp314-cp314-win_amd64.whl (519.9 kB view details)

Uploaded CPython 3.14Windows x86-64

aioesphomeapi-44.19.0-cp314-cp314-win32.whl (463.3 kB view details)

Uploaded CPython 3.14Windows x86

aioesphomeapi-44.19.0-cp314-cp314-musllinux_1_2_x86_64.whl (644.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

aioesphomeapi-44.19.0-cp314-cp314-musllinux_1_2_i686.whl (667.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

aioesphomeapi-44.19.0-cp314-cp314-musllinux_1_2_armv7l.whl (590.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.19.0-cp314-cp314-musllinux_1_2_aarch64.whl (623.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

aioesphomeapi-44.19.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (637.4 kB view details)

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

aioesphomeapi-44.19.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (585.4 kB view details)

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

aioesphomeapi-44.19.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (617.4 kB view details)

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

aioesphomeapi-44.19.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (658.9 kB view details)

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

aioesphomeapi-44.19.0-cp314-cp314-macosx_11_0_arm64.whl (531.2 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

aioesphomeapi-44.19.0-cp314-cp314-macosx_10_15_x86_64.whl (543.4 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

aioesphomeapi-44.19.0-cp313-cp313t-win_amd64.whl (578.4 kB view details)

Uploaded CPython 3.13tWindows x86-64

aioesphomeapi-44.19.0-cp313-cp313t-win32.whl (515.1 kB view details)

Uploaded CPython 3.13tWindows x86

aioesphomeapi-44.19.0-cp313-cp313t-musllinux_1_2_x86_64.whl (657.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

aioesphomeapi-44.19.0-cp313-cp313t-musllinux_1_2_i686.whl (675.6 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

aioesphomeapi-44.19.0-cp313-cp313t-musllinux_1_2_armv7l.whl (605.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.19.0-cp313-cp313t-musllinux_1_2_aarch64.whl (645.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

aioesphomeapi-44.19.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (648.4 kB view details)

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

aioesphomeapi-44.19.0-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (588.5 kB view details)

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

aioesphomeapi-44.19.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (638.1 kB view details)

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

aioesphomeapi-44.19.0-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (663.7 kB view details)

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

aioesphomeapi-44.19.0-cp313-cp313t-macosx_11_0_arm64.whl (569.7 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

aioesphomeapi-44.19.0-cp313-cp313t-macosx_10_13_x86_64.whl (574.4 kB view details)

Uploaded CPython 3.13tmacOS 10.13+ x86-64

aioesphomeapi-44.19.0-cp313-cp313-win_amd64.whl (510.4 kB view details)

Uploaded CPython 3.13Windows x86-64

aioesphomeapi-44.19.0-cp313-cp313-win32.whl (454.7 kB view details)

Uploaded CPython 3.13Windows x86

aioesphomeapi-44.19.0-cp313-cp313-musllinux_1_2_x86_64.whl (640.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

aioesphomeapi-44.19.0-cp313-cp313-musllinux_1_2_i686.whl (666.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

aioesphomeapi-44.19.0-cp313-cp313-musllinux_1_2_armv7l.whl (596.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.19.0-cp313-cp313-musllinux_1_2_aarch64.whl (616.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aioesphomeapi-44.19.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (634.3 kB view details)

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

aioesphomeapi-44.19.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (591.3 kB view details)

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

aioesphomeapi-44.19.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (609.8 kB view details)

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

aioesphomeapi-44.19.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (657.2 kB view details)

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

aioesphomeapi-44.19.0-cp313-cp313-macosx_11_0_arm64.whl (526.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aioesphomeapi-44.19.0-cp313-cp313-macosx_10_13_x86_64.whl (540.5 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aioesphomeapi-44.19.0-cp312-cp312-win_amd64.whl (513.0 kB view details)

Uploaded CPython 3.12Windows x86-64

aioesphomeapi-44.19.0-cp312-cp312-win32.whl (455.6 kB view details)

Uploaded CPython 3.12Windows x86

aioesphomeapi-44.19.0-cp312-cp312-musllinux_1_2_x86_64.whl (645.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

aioesphomeapi-44.19.0-cp312-cp312-musllinux_1_2_i686.whl (671.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

aioesphomeapi-44.19.0-cp312-cp312-musllinux_1_2_armv7l.whl (601.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.19.0-cp312-cp312-musllinux_1_2_aarch64.whl (621.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aioesphomeapi-44.19.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (640.0 kB view details)

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

aioesphomeapi-44.19.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (597.3 kB view details)

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

aioesphomeapi-44.19.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (615.5 kB view details)

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

aioesphomeapi-44.19.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (663.3 kB view details)

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

aioesphomeapi-44.19.0-cp312-cp312-macosx_11_0_arm64.whl (531.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aioesphomeapi-44.19.0-cp312-cp312-macosx_10_13_x86_64.whl (546.4 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aioesphomeapi-44.19.0-cp311-cp311-win_amd64.whl (514.3 kB view details)

Uploaded CPython 3.11Windows x86-64

aioesphomeapi-44.19.0-cp311-cp311-win32.whl (464.1 kB view details)

Uploaded CPython 3.11Windows x86

aioesphomeapi-44.19.0-cp311-cp311-musllinux_1_2_x86_64.whl (659.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

aioesphomeapi-44.19.0-cp311-cp311-musllinux_1_2_i686.whl (691.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

aioesphomeapi-44.19.0-cp311-cp311-musllinux_1_2_armv7l.whl (607.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.19.0-cp311-cp311-musllinux_1_2_aarch64.whl (638.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aioesphomeapi-44.19.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (652.3 kB view details)

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

aioesphomeapi-44.19.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (606.4 kB view details)

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

aioesphomeapi-44.19.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (632.9 kB view details)

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

aioesphomeapi-44.19.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (680.9 kB view details)

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

aioesphomeapi-44.19.0-cp311-cp311-macosx_11_0_arm64.whl (531.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aioesphomeapi-44.19.0-cp311-cp311-macosx_10_9_x86_64.whl (545.0 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for aioesphomeapi-44.19.0.tar.gz
Algorithm Hash digest
SHA256 7a01189cc4b6537be365b81bd77afa183c36d3600cddcd59426b2c26681981c3
MD5 106c724cfa5feb878c6292c0bc7bd967
BLAKE2b-256 ad7b3ada4917eb687253b31842e52d5027054c6129fe0e4df948c08574acd4c8

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.19.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 c104764fe204cdc5ab4a850b77737b4f7c6d2c4b22b570e203d3fc11b09650a0
MD5 40b60c1109bb27a4c25d2b3b48d9e2eb
BLAKE2b-256 067b4c558f6f81e56fa250212f7f191a03e3c68b9b8f08c74b3ab04ea6c3227b

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.19.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 9a9b352741e0f0826e539601796b609a4113f5db051a370874d8dd93be16ab3b
MD5 94f25851a3593021af64a44391078596
BLAKE2b-256 d5eefe70d91694b166829deb37aef41e0ea4b169acbec25ea9621e7e5eb67bc1

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.19.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 91c18a8dbdaba57bf25cf3ccde33f8bc6e627a45b5482476ba0e4ab4d8c57229
MD5 b9f0f76ce53d957a03dc366d412eb92c
BLAKE2b-256 a5bf0ffc920c328c2449543c583874d2bbe6331da1c134257d203a097a3def42

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.19.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 606186852f7c32692e000a60f35db1d5c5c043d9b18d37a892f68c4947c1ae1b
MD5 a876ba42ab4251fac416215165b6a744
BLAKE2b-256 cbb66fe32885e39002dfd22c3f8e98531c440bd03ef24655c44cf7be6ee2cae7

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.19.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 32cbf0d06c9bcd690d622c482a2a4233419f76a14d5c5a26bfdaed200f78ea79
MD5 a15215b6f20bd7fa4017c9dfd6fcdb72
BLAKE2b-256 45478dbbd5a3cfcff38656d02d48641aa613313b004125187e435a0cde7fdd5c

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.19.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9c49f89710fff0df7af5cbac601685d9031f791af2f0e121cd7bc6f19a90d3e6
MD5 8b56100e270ff0ca66a90afc5274e439
BLAKE2b-256 09f4ab76642f3091dac67da58274783ffc2ba0de2641023481f5fadc8a9f9d05

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.19.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4ba0b467d2d2e84f41c2ace66541fbf8ee9dfb6419287fa8e28eba264d63a671
MD5 8819860572ff0983aa2df30d0a83abe6
BLAKE2b-256 50fa0e96b70a51847a2c6c852189791db3289e1aa25cc1763c25b852d95aa256

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.19.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 4a128c9d82da572e7d7f1d22184f8e6e1442035aa39f65b0c34cd2a04ab7462a
MD5 05e20d5baa704eb1c9c03ac694b28f89
BLAKE2b-256 e805155fb00acee22d8fb94452a3bc9ab2ba9faf0175a6c6cf24ed52c0e5528b

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.19.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8096435a44ea93c65e63f8741e8fa801df152d94f3edef69363cdf34bdf91a86
MD5 4a01ad8af81cafe8793f6737e95c1b5a
BLAKE2b-256 08cffb3ace49a390044974fb26788100c3dc18b29418372e4c4180792b72b1ef

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.19.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 34b7552fcf59e54d806b588b121ba30180fa6f4fdb7407f703eb184aea1a38e5
MD5 42db88585e286074043295fef718f291
BLAKE2b-256 d3abc546cf934c846d77075fe0d36595fed5fb4161db62a6fbd04cff48a2360f

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.19.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6095d7f5de9670bf3d473a68efd0287e53de617cc625031a407d8c2568c9fd1d
MD5 b6db3158622032ba946877030bf1a848
BLAKE2b-256 8205a8b911c8f87d210a2805bc6e3c2b070949d02e29b1a26d09888324277ee3

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.19.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 01fbe38888055c7729dc31f6bec34a1513619cdc943904ae333c4029006b583d
MD5 bc6dc318e3a865227724daf2f65fee90
BLAKE2b-256 4545c02efc345dee6a566c6b94c3e64a5bb91c8f17388c2d963e368706fd47e5

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.19.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 8fec2f4528627ef42b47180c9785b66b2f1c5b72be2b96bab23d3e24439fd844
MD5 1a6d62450ee8118c7bfb2adb87164d26
BLAKE2b-256 2e28b273a135197e026a21ba657ce43808960fbe0253151c21572f811d8c85ff

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.19.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 706600fa21029b7d8492253024359e939c59b62c0fe4c1e491dfbf94fc60fdcb
MD5 e3486710cbb100f5a17de9a7522a638f
BLAKE2b-256 6904339a495fc4c95827e8d84ddf4a07f53b1a5e603d3685d0bea050660ea6f2

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.19.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 027928917fa904d85d6349eff90937fb2e5da2d61d64b901d4dbc01b48113893
MD5 e57901d563cb8ab5da6c3b4f62d6e74e
BLAKE2b-256 d570ba0a3a6c131886a5159250a0be27a01d2abb47aac42af61c530ded4e293f

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.19.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 10ed861aabeb2b8b60d4eb5cb351d76c423252730a727e5fa8496db98af0950f
MD5 4a5ba5a8e7cd75a471cc7bf41ce1be23
BLAKE2b-256 f4446b3e9601973e34e6bb79cb53ec705bf2438e16e2b5cf4451512dbf11e749

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.19.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 98ccbea7cecab3248cdc9bb0917a99045cf9c8fa4121b3b7678df4769d37a570
MD5 59c2e57cd74248f0a9eb945398307904
BLAKE2b-256 f9a8975ec067cd2da8449ab4767b1e6494f8ac7af4aed76804f5867c8b93436e

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.19.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ef9d182bd8e8c8bd7333997f7bca8007aa1bc01b46366cd148802fd088f9c19e
MD5 e9606573ced2bc016aca64164334a041
BLAKE2b-256 560ac7f76cd8d0603432512be9fe0f67353da1eedecd8130afaeb7d7c6088f93

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.19.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 93a6ebfb76c1c5f944b7c68841a7e35eab7da8cc98e77867f0e31285da0b97a3
MD5 53806a30bcc1b47aa31b2c2772463ea2
BLAKE2b-256 ffa13d642ef559638e0064690480cb98a1cba32ff4c593b1d7cd9488afcd1ad2

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.19.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 043bcab51dbdf527d43b614076fdc184dcdeeb05224b318b29dcfb99df646aa1
MD5 ec900b8300c911a74c7ee4ac8f3d228f
BLAKE2b-256 e9efb196b75a86a8e432305b6411bb94d1ee4cebac4c7e0d6cf286c546576ecc

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.19.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 16e3c4515e4e2159a33fee3cc59bf03e6dc41f2c59171f4ba07dd602e0cbde3d
MD5 d96a5531a5ebd2a785542d3cf1e1d1c4
BLAKE2b-256 46dadeb59966b0edc67a8e2edf26d695c7912d36e217eaba84cf4b1528a37ed7

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.19.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 074b9b578b612f7a9577b9b00f643b7fe42d4630b85bfcdb2840300ede33bf5f
MD5 90abe21dd3c711ab9ed4b6fa3563d58a
BLAKE2b-256 c920f419172cb23094e3a87784017c08d8931d4b98aa1ae257bd540b0c947348

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.19.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 de2b8dae9724aede35b3629fecad9db41302c0e1079e62f06b3ea9d9fdf3f75f
MD5 a2213b291b93f88c84e07ac5c7ea5b0a
BLAKE2b-256 9334e553ccb08a5c4763e40ea849ae53fbb512af6d1b87584071e5c258564f89

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.19.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5f11e115e58ec9668cfc3d9c3904934523616006de37d789f39688a00caf4210
MD5 f79b8e785079ec494509e97b2c9e64d4
BLAKE2b-256 808a69d7546b89e86d4c5b1b30ae97dd5dbcbba17e563b66771377362eb69626

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.19.0-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 c419e599352c8e92e66f0880e25c721bec67662b4d29315026e7ab87bb97003b
MD5 abca66845dbbf60beaa467ab2022fc88
BLAKE2b-256 068022fe765d2bcd12d9704b493e9f22658e19df7d9e362e582acce5c6ed780f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.19.0-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 51dccc9871ee7a4b29fcff0351c6c8994eb56daf08517c60461a35080e4366ba
MD5 bb31246d30af839ec69c8a85d000e4bf
BLAKE2b-256 fc6176e5164377a73c7f1e98c8b7c8a6c03e4aa53a2503caa310a9f43cb1de26

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.19.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 463ef60a5a967914c7b8e31db6bf5ced00f33eb1f17b89d387798ff83aab2f45
MD5 e515c56b2a443cf8d02fdeb665cc8633
BLAKE2b-256 833936d553d3415b214d63ee35db1e12dcc0c7549abc8c6f5615a4b89c3e5f0b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.19.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c4c3728212f63420f978bd00e8910a550e771ec865b783b6b1f8bb697940a7a3
MD5 a7f4e7a0dbd6a7653c6b0e17c388a219
BLAKE2b-256 1b4b2434212517d1f788cc9b68c1cd917beaca36615dca369f0b070eb032cf12

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.19.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4325fb51d068583627700df21515717e8ab4decf26fb990bb27b782e7d287b05
MD5 d799ae750d5bb10b8ae72ba56d10fa6d
BLAKE2b-256 535c1fb2de6070f78b13c3fb070a7651039a9259a0277cd2c9663d968d374731

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.19.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8d77ee7924c1902f474e4f5ea303d9eae5611e1ea412b510000a26fe5688fb30
MD5 6284e24595db4e20dc402a2abbb85d13
BLAKE2b-256 e78168c5d7a27ad668b094e0b509f14b42113f7d2e8355a4ad271377f664386c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.19.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0f1ae746f4b87b360bca8ebb10d488d619091c31c39e20050168a978f68bd85f
MD5 3c573f9f7ce5c098e1f9269b4989351d
BLAKE2b-256 da38bbc3fc32fdc9ba5501ab7e88d53866006bd77fbdd95de0abd69bfd0b35ae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.19.0-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 30167bdf1e2d6f65aec70c4c09e29b692210c8089c511fd3b009fb31368e9c56
MD5 00219bca74ee67a20af04fec4450a528
BLAKE2b-256 ae587088840e459f2a42ba5ed1460eb65869288bf9a65f1fb406d448f9c1b07c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.19.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e4f90e020b1937ddd970c949d3a839e67679f6dd35ac7ce00a010fec44451427
MD5 7c4f3bc12109d76c6da0d81ed2e4defe
BLAKE2b-256 0005a8dbfa16bb59b69439a4b20153a8b643d1d3793fab4aa397aa870375e8e3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.19.0-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 8bb70ee7bb5fdafd5dc2e5c74196839826270f147af07cc5c4ad81bb3eb5c679
MD5 ae622b2c0b68330255b7c157ece7fa03
BLAKE2b-256 c20f0710f64ca65f8ff97e5134318ee458f4eb9e3f00fd879531120aa30cf609

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.19.0-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b81988e1d288a3e3409c5b89469affb4143bef007652c4b184af02b5f45a335f
MD5 ed93d75903e0de4292f0c6f665977bd9
BLAKE2b-256 0796612004e26d15b22476ce904fa03011d5e689583d98aa60801e81b08f8fb7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.19.0-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 1efcefe954efcbaac54490db6feadfa2c9981de02367c7c82ccb2196fbfef8fb
MD5 5348934eff03e99e14dfae42308f098d
BLAKE2b-256 309bb0d56d92daf06148617ec6d29ea1b501a5b8971c833086f5411142501efa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.19.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 49b8f07170ed7664501d4961581328a19772166e98e049b23f93d300c44f36bd
MD5 82c551f2344bf8c3bec5b541f31a7486
BLAKE2b-256 ad91dd2cc34cc86e565e9f25f04fa08c09486f4ba02616bb261f53bb814a67b6

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.19.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 19d5ae694a03f5c03e9d43871bb47deb9f43c9af7936d4139217aec15f15a377
MD5 53d64ec37c01b7ebf6bdd0c04e5a3bbd
BLAKE2b-256 dd549711dcee7764e9d1408ef767e3a7903ef3b4101bddeb45036e0c1b3160fd

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.19.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 283f81ef52edb0efe1e4f78e19b00b872311d895b8b125c5afaca3d563ac02f3
MD5 2636f73d7411cb3b4b29c01e75f2a242
BLAKE2b-256 f58a3a8e99438d9b86e6d7ce3f65c1e1e0c9d2ea0eec2ff2800f4da1058fad78

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.19.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 435fc5f75a32f4c9a0b39d0281ba605a91ee427ffad343af8f8587a802f6f023
MD5 43e0b1e56390cd0c1320306fd8d46d78
BLAKE2b-256 c1070988a94fe95eb9c82f631d7e351ec1a142190af7de248dc459a3639fa469

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.19.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 124158774cd717b3a2c3c4ceda119455dece6b0cf08e62f76fe04270d14486fa
MD5 46b82b1e5a6d81f131c3a932bdbf3e31
BLAKE2b-256 0c4ec95ab34776b5bb5239d12f8cf73e972211dffa9c40df92905a1a2c19dfbf

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.19.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5a888dd750f4a3f1df4c8ea73d22d5f22c2f2e1805716de6fffb4f1ae653bb30
MD5 46e74d470dde1eaaca4dc83323cc1709
BLAKE2b-256 c35ac7a44cd7e1e4ba2d31874e5f25440bd30399e16974031315a90136182b63

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.19.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c2a1f5693411e2aa3c38ec47ded3376753bf7abe50cd8a5670e14033cc9dcb0c
MD5 c9f04671f1d8d74865075a96c44b193f
BLAKE2b-256 13e311d63e75a430a88fd142ab48a13372a59f98224780fa0865ac32a4fa44c7

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.19.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 1d7d1a90093bfc5999a2de414486d87ded41dfca0db02f4e2f6a92711ca57053
MD5 0cc50f5f16b315f4201212cd554befb2
BLAKE2b-256 691f743b95d40eea94edcab3ecc397ceb6f7def00f8d7df5b3a26ead89b8fe0f

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.19.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fbd60d29dbd11c018c16061cbf917dfea4af2a9068566ac5108b56855a83607c
MD5 89a5f936b15522c3afaa65f44c978d89
BLAKE2b-256 5ff17987d46f062ad8ccfd2bcbecfa2e8541dc456fd9bba86a6e82a386314375

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.19.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 0d615ae5c196c69eedb46545287d0c06de28aea80b6110b74d8582c76196fd8c
MD5 9d92c19abc23967611f193cc2afbeb0d
BLAKE2b-256 3ad1a6452f3683a7c59dba1a7e454037bfd4cfdd384d2ae36709a2a8de3eaa50

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.19.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3880419c3521bd9ac506dd9e07fc0de5fbe6f73cb3a1bc7efcff54da3f09885d
MD5 c519ec3435b0dc06fb12cb5645f3342b
BLAKE2b-256 b49172976019099aee9d081116ba438a0d5679fb7476909012656379669bf5d4

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.19.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 57d8914f1646459773d0307962816e86146639e13ce938b97cfc28f5f929e65c
MD5 701c144abf317e5bcc37e3fcf408509c
BLAKE2b-256 121096147bbaaa2f01894403b1b0480898bca7c53d0b67b2db449090229e0aad

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.19.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 9235c4371960cdc4e2bdc4ff5f561f27a9df2717c16b36725ba8af5c000ed687
MD5 dd7ff4deace953f03cbfedc268ee3319
BLAKE2b-256 255135477573f94d52bb580970d81894aa105f208a724d111b757ca196c23ec4

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.19.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 c05eeba66132de26b1225d134838953a299bcddda54b54b204ab803c7a589ec8
MD5 e0705544556dd74f727caefbd599391a
BLAKE2b-256 bf2bb3e83b3d9f19b5d4799334c34daccc7af8fc8b7216a7ea10c6ff2549f04b

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.19.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a7415b9e6934b81b35eeaa1d2afcdb62726767b1043a4e5cba1dd4d7a23596a4
MD5 9d131a23127cd724194e1d64dc78aab1
BLAKE2b-256 030b33b341e3f704a2c4d5f3d969a211fe0e3048231cc685feded1ce84c74b20

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.19.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d49e6c41b1b79b1d41ae00cf96113f765d5e9288321bc5de135390731e0040c0
MD5 ce793230fec1e077143d9e4e8450574c
BLAKE2b-256 69602551e3155d3652582804201c4502a83dde5a5a187923394883c2210d0f10

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.19.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 adc363a74b0e92fde2a113d00d0b9deb3d3d29ed9b3770d115942bd4d2821b33
MD5 c4a4d710431bf0028401db996dd8fc6e
BLAKE2b-256 a51361b88e25947a0097b5e5f739c29d712f40f4e359b989398a736ee1fe62cf

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.19.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bbb4aa1f484389b6e5668b9c8490ee21f6f1bb949994a1e66474983885b03490
MD5 2537b8d57fa050fd982aeecc0f2f99f7
BLAKE2b-256 bed5c68b83b9f5737935146d7130f04a7da97526ac24b17c0aaed8bbdbaf4cfd

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.19.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9bf639458f3db1dbc24fc589d9788e58bdddccf4b8a637a2f65e078cab7d58d1
MD5 4477655d0540174f09c0ca173f42eede
BLAKE2b-256 33940f07a7f012c48359229676d0dbaa2172243ff689e852ce71f06369ade791

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.19.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 c0880f7214e3b6e946f4eac071c48c36ad2da686bf1d6bc0ee7b8cbc78fe79e0
MD5 dc43d8c5ebe424c0451158e7fc179937
BLAKE2b-256 6cf51a3bfb91bf819770c448dc0ba4eb28533e77c4fb3fc77ee62a52d1e038ed

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.19.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bedb750070665714b9ba2a47b8f97f3f3fff63306ce4be5a705d5cd344cbb347
MD5 17224df8b502ce361361a17d9d434354
BLAKE2b-256 b2d6a4aa764b65b75e4e9b4209041e8d8876091a5182885ffa460b28a20a549e

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.19.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 f7a9236ef857c7108df8af391370bda202a25514aaa4d1656c93e9730c9ce680
MD5 4589633c327f51a41abcf3736f897dfd
BLAKE2b-256 3190f0cabf41e3930bf6b97a4cd36529aac1540f0e0d5dc22f7ee977247ffbc9

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.19.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 80c7edbbe9aee31d308699df27566cdc96040f81fe06183748e8b56dc74521f1
MD5 ab482aeab2c12121b1162b439403204f
BLAKE2b-256 b0db473187b98ad432b464282444fee53a7f80041d0c8db99fd03048e9a8cd8c

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.19.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 74a49264de3e793b2a2565271d7db489aa7f89b641893f89bc7cff1ca2d83b66
MD5 7cf3d707ce2e8e96177b4b5f9d255716
BLAKE2b-256 4f3d1e0efc5e1ff34d176941c5c1d9cfc884f784281a840d70381cd16872814f

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.19.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 18a2f7a2b273bb89d7d6fadc67963c92080729919e6e137322b57e2db5deb596
MD5 d00790b34af10655b7289b556678deef
BLAKE2b-256 fd375d78ee240cc061ed5d29a804d257db86f6deeaabc2ec14ce9f2ef34e2ccc

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.19.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 9dbdecfbeeff142c684517247c6f12a7252444380181d1f81d5150dc692dd85f
MD5 7d32e209bae479186cda796011d984bc
BLAKE2b-256 c30421bedfce3f1841da8c0c6cc1bcb43d14bc356a85398788452ebcd192eb3c

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.19.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6928be616b2fb55213a7f984e5ad33346602989e064dfd7e558363372c898b43
MD5 08e499fb623aee46e9707e7746614849
BLAKE2b-256 aa9b33cfe7803e23058ef8c28866f9917cf89a4a09781a87b7e6819fc27e2ec2

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.19.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3417a0703bce02d1137d4b140b3ff522507be88938445b07889a8d84870ba84c
MD5 7dcf92bfcd974efd1eff17f7f1715268
BLAKE2b-256 601f644e434cdc8a2bdffbeb5df814705ebb625c174e317821b043b617a26f78

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.19.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d55e9bfaaf1c13a4f2ac2f1fe15afcdd1166fbfb2cc122fce7d5fc4ef57d095e
MD5 546e3689606d17f60e8e852aa994a240
BLAKE2b-256 00ea1bc43c38aada1d20ffb6df94339405ad5fd202554ab1e474b004c67037ae

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.19.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2ad79f88d05f80e8b47d1f05ff19d6cbc4861920d7f8a507de8d49f5e9b70c8c
MD5 60a3ba6954c087b759309455a7dfe15b
BLAKE2b-256 6ee9127ffc73c97b634557b5b9d7ebfc4b48b4ec2341fd836b01822a8a018940

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.19.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 19a7937fa07a57255ac3ac6b4e637aab09521f31ab010edc8542fa5ac8fea8f4
MD5 41c770f4e57028d81747c17c0020a745
BLAKE2b-256 906f8b326b183c3ccd4db2f89926410fb9f1feda9d9f2c81f3ed75d31d9ddb6d

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.19.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 ae72b8bd8b825351cee008ef33098785e213eab1074e8e52c32847383d73ea01
MD5 485e4f346668e19fe21fde1e7563799e
BLAKE2b-256 e999007d3b921019d4bedcec475bcb0e3061182718a2b3af0ff65f7240c4040b

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.19.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5732b33fd5c3e95e5b90256b774d56db5584db60b8ad212e208a4ed39de8add1
MD5 4677365d2b4b09263df01f9313faf0a6
BLAKE2b-256 6739c1a85f38f2f51fcb8aca9f800dfc293f3e208436038e653d70f6618e93ec

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.19.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 ab34704ef24db002507c0f1ebf9c99347579be47dc9d979c14774ad5df75f967
MD5 54594f650ff05a4077beb9814a9bf87d
BLAKE2b-256 af8e694ccfd6fd3c84ac8b77323018d795563cbfe09c6eb9a4c1679d2b2f6d51

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.19.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8aade89c9b47ce9518938c86bc8c9247e6b77859ba803d74551d7c04357a2822
MD5 979515793ffa41bc2e0239ff56e6a88d
BLAKE2b-256 232106f51a19f525cdaa3e3c21ea22dd0dfd81c86a049478593399e96351f55d

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.19.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ec2c5b078d76ac7f91ee5bab86641330522c29d3652ac179f5181b9cfb12116f
MD5 37578de03239553e2f65195d934f92b3
BLAKE2b-256 9e93622614aef61d03fbbb26b0da43be4d69422eff63de14027bd38ac09a35b6

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

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