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.20.0.tar.gz (188.5 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.20.0-cp314-cp314t-win_amd64.whl (610.4 kB view details)

Uploaded CPython 3.14tWindows x86-64

aioesphomeapi-44.20.0-cp314-cp314t-win32.whl (536.8 kB view details)

Uploaded CPython 3.14tWindows x86

aioesphomeapi-44.20.0-cp314-cp314t-musllinux_1_2_x86_64.whl (659.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

aioesphomeapi-44.20.0-cp314-cp314t-musllinux_1_2_i686.whl (678.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

aioesphomeapi-44.20.0-cp314-cp314t-musllinux_1_2_armv7l.whl (607.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.20.0-cp314-cp314t-musllinux_1_2_aarch64.whl (647.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

aioesphomeapi-44.20.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (651.0 kB view details)

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

aioesphomeapi-44.20.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (591.2 kB view details)

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

aioesphomeapi-44.20.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (640.1 kB view details)

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

aioesphomeapi-44.20.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (666.9 kB view details)

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

aioesphomeapi-44.20.0-cp314-cp314t-macosx_11_0_arm64.whl (572.1 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

aioesphomeapi-44.20.0-cp314-cp314t-macosx_10_15_x86_64.whl (576.9 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

aioesphomeapi-44.20.0-cp314-cp314-win_amd64.whl (520.5 kB view details)

Uploaded CPython 3.14Windows x86-64

aioesphomeapi-44.20.0-cp314-cp314-win32.whl (463.9 kB view details)

Uploaded CPython 3.14Windows x86

aioesphomeapi-44.20.0-cp314-cp314-musllinux_1_2_x86_64.whl (644.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

aioesphomeapi-44.20.0-cp314-cp314-musllinux_1_2_i686.whl (668.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

aioesphomeapi-44.20.0-cp314-cp314-musllinux_1_2_armv7l.whl (591.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.20.0-cp314-cp314-musllinux_1_2_aarch64.whl (623.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

aioesphomeapi-44.20.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (638.1 kB view details)

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

aioesphomeapi-44.20.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (586.1 kB view details)

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

aioesphomeapi-44.20.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (618.1 kB view details)

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

aioesphomeapi-44.20.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (659.6 kB view details)

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

aioesphomeapi-44.20.0-cp314-cp314-macosx_11_0_arm64.whl (531.9 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

aioesphomeapi-44.20.0-cp314-cp314-macosx_10_15_x86_64.whl (544.1 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

aioesphomeapi-44.20.0-cp313-cp313t-win_amd64.whl (579.1 kB view details)

Uploaded CPython 3.13tWindows x86-64

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

Uploaded CPython 3.13tWindows x86

aioesphomeapi-44.20.0-cp313-cp313t-musllinux_1_2_x86_64.whl (657.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

aioesphomeapi-44.20.0-cp313-cp313t-musllinux_1_2_i686.whl (676.3 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

aioesphomeapi-44.20.0-cp313-cp313t-musllinux_1_2_armv7l.whl (606.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.20.0-cp313-cp313t-musllinux_1_2_aarch64.whl (646.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

aioesphomeapi-44.20.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (649.1 kB view details)

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

aioesphomeapi-44.20.0-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (589.2 kB view details)

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

aioesphomeapi-44.20.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (638.8 kB view details)

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

aioesphomeapi-44.20.0-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (664.4 kB view details)

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

aioesphomeapi-44.20.0-cp313-cp313t-macosx_11_0_arm64.whl (570.4 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

aioesphomeapi-44.20.0-cp313-cp313t-macosx_10_13_x86_64.whl (575.1 kB view details)

Uploaded CPython 3.13tmacOS 10.13+ x86-64

aioesphomeapi-44.20.0-cp313-cp313-win_amd64.whl (511.1 kB view details)

Uploaded CPython 3.13Windows x86-64

aioesphomeapi-44.20.0-cp313-cp313-win32.whl (455.4 kB view details)

Uploaded CPython 3.13Windows x86

aioesphomeapi-44.20.0-cp313-cp313-musllinux_1_2_x86_64.whl (641.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

aioesphomeapi-44.20.0-cp313-cp313-musllinux_1_2_i686.whl (667.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

aioesphomeapi-44.20.0-cp313-cp313-musllinux_1_2_armv7l.whl (597.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.20.0-cp313-cp313-musllinux_1_2_aarch64.whl (617.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aioesphomeapi-44.20.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (635.0 kB view details)

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

aioesphomeapi-44.20.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (592.0 kB view details)

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

aioesphomeapi-44.20.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (610.5 kB view details)

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

aioesphomeapi-44.20.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (657.9 kB view details)

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

aioesphomeapi-44.20.0-cp313-cp313-macosx_11_0_arm64.whl (527.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aioesphomeapi-44.20.0-cp313-cp313-macosx_10_13_x86_64.whl (541.2 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aioesphomeapi-44.20.0-cp312-cp312-win_amd64.whl (513.7 kB view details)

Uploaded CPython 3.12Windows x86-64

aioesphomeapi-44.20.0-cp312-cp312-win32.whl (456.3 kB view details)

Uploaded CPython 3.12Windows x86

aioesphomeapi-44.20.0-cp312-cp312-musllinux_1_2_x86_64.whl (646.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

aioesphomeapi-44.20.0-cp312-cp312-musllinux_1_2_i686.whl (671.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

aioesphomeapi-44.20.0-cp312-cp312-musllinux_1_2_armv7l.whl (601.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.20.0-cp312-cp312-musllinux_1_2_aarch64.whl (621.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aioesphomeapi-44.20.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (640.7 kB view details)

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

aioesphomeapi-44.20.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (598.0 kB view details)

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

aioesphomeapi-44.20.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (616.2 kB view details)

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

aioesphomeapi-44.20.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (664.1 kB view details)

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

aioesphomeapi-44.20.0-cp312-cp312-macosx_11_0_arm64.whl (531.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aioesphomeapi-44.20.0-cp312-cp312-macosx_10_13_x86_64.whl (547.1 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aioesphomeapi-44.20.0-cp311-cp311-win_amd64.whl (514.9 kB view details)

Uploaded CPython 3.11Windows x86-64

aioesphomeapi-44.20.0-cp311-cp311-win32.whl (464.8 kB view details)

Uploaded CPython 3.11Windows x86

aioesphomeapi-44.20.0-cp311-cp311-musllinux_1_2_x86_64.whl (660.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

aioesphomeapi-44.20.0-cp311-cp311-musllinux_1_2_i686.whl (692.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

aioesphomeapi-44.20.0-cp311-cp311-musllinux_1_2_armv7l.whl (608.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.20.0-cp311-cp311-musllinux_1_2_aarch64.whl (639.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aioesphomeapi-44.20.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (653.0 kB view details)

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

aioesphomeapi-44.20.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (607.1 kB view details)

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

aioesphomeapi-44.20.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (633.6 kB view details)

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

aioesphomeapi-44.20.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (681.6 kB view details)

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

aioesphomeapi-44.20.0-cp311-cp311-macosx_11_0_arm64.whl (532.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aioesphomeapi-44.20.0-cp311-cp311-macosx_10_9_x86_64.whl (545.7 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for aioesphomeapi-44.20.0.tar.gz
Algorithm Hash digest
SHA256 b52e6a05774152ddfc187f6c506b7da3e46134b60c3d1366368bb0791dbe9d0e
MD5 4010f97af5cf93b5f087299c4a96a074
BLAKE2b-256 78bcdc57451ab75b858fa8b4d87ee34a12a165e4e16739848c9e7a4dfe3bffb9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.20.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 5f3943e26b60a6bd76d3547cfdca596b722fbde295e10e965438ab379bf07e93
MD5 f6db34bff799d29e7149b9defb0ab6a7
BLAKE2b-256 a0646f0352d087d45ddd0f20e78bfd6bdf65ca1e5ee2bbb84884903d950a2432

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.20.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 5b0ef9d77f26fa4bc6f2e6f982e24dbdf86b4bd0a8b1c1e291e36eb0b9235b4d
MD5 430fdc4255909f3acb7d2ce83118a876
BLAKE2b-256 f7efa1d2a781691b6e3ad8c3ba1ec1c78bd0465cc6cf0f41c8c7d3c2d9495a9a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.20.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c05bdf8bcca7abeeb164af11c6b7a625b1ba7a4aff4f46a7b79a2c39ebd0ea3b
MD5 e25fbbd753dc30eac87450c4f27425eb
BLAKE2b-256 3b7bc97f58e1bbd8e7f8095d3186936e93e5de83d65f100485dd682b2125dc3d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.20.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1b9cede0811d55f4430954c8fa63e9c0cf4cdac931306d488749e80d4d4a3559
MD5 01d4a270aac0b6ebb4dfd3994e276ccf
BLAKE2b-256 7cd6731723b82ad1d9ece4fa04b505330e7815dfb3ca8120c20df0873cc4596f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.20.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b43c1cd14c9dd627be614871f50eddd042817679f78e04bbeacac230565dfddf
MD5 809626b9fa8c4708df24afa4fa31a466
BLAKE2b-256 9ab765827bea19a2f220738691ed0049cb8712fe3fdc0ab974a06a5c5b4a8e6e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.20.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7ee14a81cd89c514500a2fc32de4fb1c5a312b8eb75c55f525ef0c6d746c0590
MD5 95b6c620765bde2b19147499757d36cf
BLAKE2b-256 3a990d894b0ad4e1556e8d29abafd34df616f091537127732ea3e49372eac504

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.20.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.20.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.20.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1bb1b4f9293ce40bfbd9f1dfc7f7f092ee51b1bd9911cdbd013a8cd4298a5a33
MD5 19f2c99d898f76a7d41c29f0274648de
BLAKE2b-256 8ee732503a711de0f8fccb0b017eafbb6eb122990b57fd6c8ab61e2de396640d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.20.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 4b210fb902c8586da59d74bc5a3ca09ba72d815fb6636e78cf7ba33ffba270fd
MD5 f4e79d907ca88802a3b9267aefef5112
BLAKE2b-256 bacae707aaf7a8a9a67710859ad913404f1da81b035f1c1a0f88d69df176582d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.20.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bc78bf9d866f5799bff6770b1c7bbd5ba2d6856b4378a5fe8e103fde8566fa0c
MD5 1a860b9acff5a36f5a0cbced59487b77
BLAKE2b-256 5d7d38c5ef6989b2446d6f04a2d857c331bc8c251b1fd9ad2488105c0fed01e1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.20.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 5b35dbf813b00f2e8ecef5fe4147dda043e2e1f214199d973b42699366550496
MD5 d29d08e87bd3d1dfbd1089f0967cee51
BLAKE2b-256 5cd9cc1a6fb9577f94cda74aaeb7899dad39c2f498ef5abade4eaf110cbf65b8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.20.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1d149862622008baf404c8f9d6982257c26e2a6b0d07cb44b3bfb9c714baaf5f
MD5 0359242715e84ea616a39180f0537134
BLAKE2b-256 d987c92a1ff6ba983940f9a1ea2f8752741c3734771c93da6f884fd2507ea9e7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.20.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 2b08555f16540f65519af0153ca6b3b9632c9c04dd5f9c9b8479413cea8e5a45
MD5 3fbf783e68529fceb769d90eb8d7f181
BLAKE2b-256 958a8f25b271655e0443d148b9edfe5d61e5a77807711e3dd63d0b2ebbe6bedc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.20.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 75c3d134cd3b6f40362208c64cdd910b7557bf955eea8c8f68f274997c9d7d63
MD5 67408c2fe03347b20896c1c3b35892c3
BLAKE2b-256 da74a2066575e564d778915cef58f6087827f31127ac371995a05692a832b7c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.20.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 6e13dd0d91e283e05088e68a2e9f5d102daf4f7e32a50454cb68d8fa513f453f
MD5 c334b15c3756caf39f25f13d301603f8
BLAKE2b-256 1c6ca133fdfbf4962dd17f6866cb6e71d1ce26b98c9a1735407251e22a1c6f36

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.20.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 609835c87132ff4bd53206f6128394306944b089d63ec39466fa981be2bf57a5
MD5 bc98cd7e3fb5b2bcd671a9f647baa888
BLAKE2b-256 5f9ede1ef8f6facfa0b2374e3b8bda37eb1988897823f6bba6836700d967ab95

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.20.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c9629378fe0b60b0c16d4cec9b3432a097c5ad601891cd4796044b2e5157a4c6
MD5 0dbc0f33deb7833332987a7eafec92a0
BLAKE2b-256 2c4cc295f420a9772cbe5878c7ee5ffcf0316293cacbb56d0ff6dc9b7a9d629e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.20.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 65ed68e7bf6a291742d5d15ba8346dfbcfefae128d3aa8fa227a53c63b02feea
MD5 ac300433d97345f747112a5d749a4163
BLAKE2b-256 86c4e04d279ee10d0e2605c9a4872f6e18a6f5c0ea02ab3ae531c997e0b2f6ce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.20.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7cdf283bac01bf920b6188daa72e7ec089da3f5c13fe131a5496b248a486f2e3
MD5 78b7e9d7ddc221a961275f25a6450f10
BLAKE2b-256 d6953246b73555f8c4275b07d77e9b7061381e572c880687e7b980f25c5d1b3f

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.20.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.20.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.20.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ecb16a1d79d2aeb804b89634d34912c662e629563f62719213e1ecfd46047030
MD5 fae7423694210e43c6a8392d3acaa7ea
BLAKE2b-256 5445082be2441d33a4d43c22eabd9f0beef80e22adc1d25c04d5613846376131

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.20.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 2ee97a2d05f5f478b534e83c87a6f468f7b599ff7690ea1535e7e4786c4edaab
MD5 5b5ea0328ee8805cf6a984cc4262bd75
BLAKE2b-256 fb5921700c2b58d47d148ab4e930b14b4321a8ada93e632b03281541391242da

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.20.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3664e324e9b05e1d3635420d0c859915ecdfac9ea4799b44589c999d00aab14b
MD5 28117bffcd2b2e390f80eac8d5b44d59
BLAKE2b-256 c14c55170d6accdce6d5e55c6253eb4298a1e5a764fd44067a0415be8591a6ff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.20.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 e012e5cc6ae33b9e59dd1bbe18c00870aa473826e112b459fb69c20584f07e05
MD5 ae771adc9e564988b3f550ae95b4788c
BLAKE2b-256 07d495500e7206e1c8119d5cf5b3df1e81eb2fe4e2c0d2cb816fcbd6495a9246

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.20.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 afe9fbc023d931d9193aa6b8954abf3063f2452fc1424cc38d1de387727c2d88
MD5 2d76e8da4c1495ea61c8670a7e3c3d66
BLAKE2b-256 ef046fc39d738cfc95e166e0bf30029a098f7ba3d87f41771264194100ba0ce0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.20.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 08126b63f192c1e7ef0a575cbc7c4ef914aefa86701855802a31550d4e2b9bfe
MD5 457741071c56a495180d8c8e5ddcc4fe
BLAKE2b-256 b298f9e5c92e64a7cb7f4cca3323cb02ebea2663721cdd729135a3926a35534e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.20.0-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 745f91914ec3ae9408bfd0cbcbe840739fb008d1e0f61bc9e8c84a2aaf8b1664
MD5 6f710bf57b3a32dda2f5a29a038291cf
BLAKE2b-256 003041881a6c6d303fe4399824623c84d25c81a8c243884c44a82a6f3ba790dc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.20.0-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 e0f5552b8f4d8797fb153a68426a91b1a6272418408ac12613c635326a1212ca
MD5 812860b28d6937504e94d845d7050b92
BLAKE2b-256 120dc883607e189517ee6c9ff5688f66019fb9a336d65b9cdf32bf9988cfda64

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.20.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d6d95ff25a0f8c37ad634827fb87959d7533f759b08e45eff8578b01021873ef
MD5 20ba003a1e6df3215558c11da8753a08
BLAKE2b-256 1b6b2c052c2b713b9e96aaf5c1a4ee41c064758a33bba154015ab8c3ad02be22

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.20.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cf236cd6feefaf0e32a5569d31bea09c3b64db8b3bd0a1eea8200772c983d162
MD5 1dbc668e8ac606d54c225f376ad50dbe
BLAKE2b-256 5721a3a049cf97540bb5da290a2955f7adda0193762f71bf3e649c407181b9dd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.20.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2f3336da0d698243c652d927eb76c1c7d923da1e2776177dc9ef50d6d96c5064
MD5 3720c29d069d0c9e9c34bea33f0a8081
BLAKE2b-256 25e91ad84f7775cf764e53056b791d8b8e71e007a5a5926245f52845bc736034

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.20.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bee5952533f3a13b14237ebe5790e241ba695e56d102e1142551c3a89445dea1
MD5 6917342d32ac92f0e60005ad79f79c82
BLAKE2b-256 10655ca38d15123a3239da1ef19c9da4304d55c97de9b4fc64bd7e514d9e469c

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.20.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.20.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.20.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 251bd58aafda9b02d5c0c848bccd77f65b7ad67e4e52cd9ce59e23271111e7a9
MD5 033985b49fb26abfdf2daf03efb8d01e
BLAKE2b-256 03076260cbdfe05ee637c921154251a94ec069b403b0077ddbdd3f54cd59279d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.20.0-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 aed33b1ca3ba0ad3d3f64db03e9ffdc0ded14d5c066094cf8a390928a999358a
MD5 45f5332eac6873a8d9729512bcdfe460
BLAKE2b-256 dc3a68dad4080225ce6897d0a49e3d198cd9d0ebe0a0fa2d060a8ea126863a16

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.20.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9604c25232bcb9c7feb74faeffa7a460daa7db2ea816200238d4d4687313e495
MD5 5ea248974a25d293afe985ff128e3b72
BLAKE2b-256 e634f750c3cb1d7c591cdd3dbead7f8867e5ce0bac076b0e3245ce2247feba8a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.20.0-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 33c04fe6313086ddc5e89de8f0b55722386d7dbe65ca88ed358b1149e60b8d13
MD5 7ff205e05c123977bd4ca72f6ce5608d
BLAKE2b-256 ed1bad6b21fd7540567b8537e4e9bd3ad523794076afe2b54c7dcaa27aee5349

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.20.0-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 11ad31a1a33433eacb70cda36aa2d73e537582d3ae9fef340909ee638822778f
MD5 bb51bbae3756f82be2a72f3ccddb87ad
BLAKE2b-256 62fc00bf6b2289cb6df9ef72d006b745f8a9c2764732722c0fc44b25cbc6df25

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.20.0-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 3bd386ec8e93789838127151f4f8d455d9174fa75468e41709ae25af5383ba1f
MD5 554f63441a7feb501385905f2c66091f
BLAKE2b-256 5aad3c6c444c7b24b8072594ffffc6a08ba170106bd8d02d767d28a2f3ac6798

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.20.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 41aed74f3e285af0217526ef6b0bda76babc96971d4b1d003f4ad22deda2f008
MD5 b8fd55452fe2cfe9f4a6501158672a07
BLAKE2b-256 1979db0145b24ec04a3060471b9c37eda3c73b12ddeac6e512c0155b6cccad68

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.20.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 b4c9d30df171c8d261d1025e581342da0ec144187002660bedcec1dd25153e95
MD5 df4d8afdd69c88f026c494d3c3dffdae
BLAKE2b-256 e35dff1fbbefdb4091c92126712ce256c405c1cf55a35136808d5ee603b4f9ed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.20.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 faba88303c991a8b42c0bc9607fa0cdafd7902463a1eb87e96932fd48dd1bc3b
MD5 e30ea55fccadad2227541d2faca71a3a
BLAKE2b-256 047f247593809917052a6989a99b822bb5357a4e91873e9b3c3b425f74da00a4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.20.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ff21fe2516665f794537d3eb6def7ffc7f7ab16539aebdfb3cd0c02cb5d15f80
MD5 37b7327589023297ff2e428cdbda0981
BLAKE2b-256 e78d6a502f74b0595dacaf0bb871ac47d824c8f3c57f20714b0bfe549cd03352

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.20.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 864eaa90ebde3077ca8d66bf97cbbbc14f8bf7e6619eb0fdb3debe501d59dd72
MD5 096c6437a6365de461943bd2c9e04d89
BLAKE2b-256 6e1a3c8dcb10305d8db9b37b09004fa00f6ca50b3235f095ed17d27adafcac24

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.20.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d1e46596823a433e110eff04839ac486849b8dfe257f649e2087b92168074869
MD5 deca98ccea2029f3e06f27456cd09383
BLAKE2b-256 0326b804bab6765a40c009a898b5d0d2018ff24c9d9de29002732efe1d9dcab1

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.20.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.20.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.20.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 88303bf5b6e0518839ac9166da7805ad18a3d6ec25df136b9fb813a944976c91
MD5 2f1a42c0714df4e65d67e0289f8601e4
BLAKE2b-256 71a7f9fc78f0f6cb261f665eaa854d4c64151160a034915498aee80b64e60aa3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.20.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 75e7cbcf8284c0aff16fc12cc80b35f0b5cea6a040b46ec7bcc3629b4ae2f850
MD5 159481c1b4401cc7d3503ce10c083758
BLAKE2b-256 f92660293ec0a11bea6f2e544aa0d2950adf91b3fe9a22383fc252d3bf914b63

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.20.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 de177006fefb71d2b745cb02c4cbc8ad977c3d0f36c5058538d35e4067aa8ee7
MD5 b8be412296d23a5fe80763aa6f819dc9
BLAKE2b-256 c118da4a2ac84939055732dc56e608dc991bdc0f7ec0ffcc160487c9528a1187

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.20.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 190e8e306d861270d891ebe5033ab9ededc462152c746d5ec3ff242c9bf8232a
MD5 7d0ec6955697208453ce4625364e5dc1
BLAKE2b-256 d64ac568328590797db217eb03513e208ea9f8fa73652403e9e60927bcf3c71a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.20.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5b279bdca92b135bdc9747e6dfe24650ff12c11561499f3e5a82dfc028f2aa31
MD5 60fb7e2c542ebf059059506c44958555
BLAKE2b-256 54e662f37723e0d88359a8c5498dcac97b4e21c6d4bb1f0a0dfd9d12b7e52202

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.20.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 913323fec5090cbcb8b0735e29f8f2b35fcad1808c110fe433b33feeeaec19dd
MD5 50c13738a2d6ee40f56ed73cd741f869
BLAKE2b-256 d46a527d8396fe0f60e8edee26ff35b56f02c72f2b297a00ef65177eaed68157

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.20.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2e5e06ec5f9ce0080577524384390b4f258b615cbea0caa22ac95f14dd2c159c
MD5 cfe812ba91e4b0cd847bc612cfeb35a0
BLAKE2b-256 85a8dbacabfb831dfece1a4ea15d7e1b582225a294ad03476a5aa57a5fd8162d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.20.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 4f72a194378d9f87eaecd28576aafded80590c1bc82f03914f73faabd57f2030
MD5 e122248fc638ded0d0825a4155ef21e1
BLAKE2b-256 4465d3256514613ecf14a06e96578b1beff50cd4108ff235c9a48171bf1cabff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.20.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 98a697a3b017f2f92c4c0b513f26312b24f7bd512c59b693119dd8da9826b7ba
MD5 01f1bf09c5c23032764ed969cf8caa2b
BLAKE2b-256 8714765a02abfcbddf0392a7de927559400ae57d531d167d89643d95e51cd2e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.20.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bb362ca4b551e58b18596be026ff594e31e778f2b33fd9a3e2d3b0d30f40e8f7
MD5 5b193c76280686842e544ab46fab9d28
BLAKE2b-256 df41d7674734641a179647df9b749fbb7e70cc583b1890b051f7a4c2e269b2cc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.20.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 330eb908b734845268b636f20d0866e2447505bdd55e7bbc381074f5005dfd80
MD5 d3606f66796629663773dca5a7cfe60d
BLAKE2b-256 dbbbcd1acf26a126b3e7cd6a70f821fbe3657aa5f1d687fa84cb399a874faaea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.20.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 689da38a4fef5393c2ebd834320c21c85e0828c50125c31d0c3241a83009e36d
MD5 fcc415bf5c87c17ec86f2f77e4ce5d25
BLAKE2b-256 1a1108daff559426cf89711441dbe4556325eeb5d972cabfa09650d7b8c28d78

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.20.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.20.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.20.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 201020b89445e1097922b16b0d1dac1b15ab810feadf59ed788ebdb12d751cbf
MD5 617915ef0370f892e163cb3170d4dd58
BLAKE2b-256 d6eaa40ecbe8038859fe6c3553627a46a8bcc5d196a81d10d419c868251511a1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.20.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 b33e8bac44d23fa835d8f08cea4274a10d8b388d7c16c600c096822c16c3f489
MD5 dc331200c9a682d339b9f4b97ecae7b5
BLAKE2b-256 4c42dbd6a8bfc1490bba45430d398c65f07a92a150241a5a924f1ec6aa16a124

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.20.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2f61da4d18bd628b87ea322d447aaa4f0bf2a530c5791c78d8dadf5e8dd4f978
MD5 49e40ce84547de82d9ffd9f840b7be4b
BLAKE2b-256 979f4cb4ce39943c97b4e7e723663a11d711ec84aa32709588f57bdf04ae1f44

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.20.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 e6fa00344228adede6f5822c1dc93a75bbdc27101d6cf803e87558462d430899
MD5 4a2d26d56a6a6f7b679c30faea5c1e0a
BLAKE2b-256 c90cfc0d84c11b03785f3552c850461e392d0b1d980430a586d173872d4f36ee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.20.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f9b006c8741ed0fa15c2ead7262d9c54423719824a9919e38c1974c05dc93db4
MD5 c3846d6015d4005c694bd4f92642e56c
BLAKE2b-256 aa9719655dd087567075c7ec1b01e1ec5813306476aa8a786be4e9a7c2adec41

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.20.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 2731773d92370f5ce9654f19634256ce6dfd6ecf0127b968b8cf91bb4c1e2898
MD5 42950cd031571567fc8f7af907de9d01
BLAKE2b-256 15e350da22d929461e6c2d657da9443f165bb82b03064047fec88ca28180627d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.20.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9cff73455e60e0c839f31b3d3fac38025aa4e491f79662e020de660ccbc945f1
MD5 1fe2ec2725758c38da48ba1d5682f24e
BLAKE2b-256 d90bbb7b62b5ee7a2d688dfb6af706e06fb1b64950535cc48e0dc0e3a31a0aa4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.20.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 52e0b7c2512b3a38afaa8b5a24568c24a611d85efa83801a0aa5b0b0d327e9f9
MD5 e0604a856dbbff52e36c32bff14f9b19
BLAKE2b-256 d3aa391ce70e1df76d3ef74ce334414cdd2d4991c2836a5683f8676239cbb803

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.20.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d899c8f3e4b3acbfaf220c0de442947825a88c22590177486a0975aba128c3dd
MD5 322cf3ef7ea4438c196ceefeeb146a97
BLAKE2b-256 cedeebe5a9254baa575f1e287e522460c2b4cfaa406c6beaf297b77b22747a4f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.20.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 24c75bdf0b5bf4f6da80da21432b6ca096a8219ac5d8aa2bd3b39d8468bb02a8
MD5 28ffb9e8cbbbdc946be44fb039e83685
BLAKE2b-256 ee41f3b5b0fe3405049c310436d1203e3b98556f2e2f4e0c06466bfdfaebcf01

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.20.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f4a7f0f222fcc7570250b0a1dfdcc668e764c595eae3fa48871947bf941cfaea
MD5 4b48bf8ee169d776d90ccfd3bb709ff2
BLAKE2b-256 ddba4ae097511a4b1335cc1ea19be95c9ef2fd413f8fad2e7eac6cf5a5986b29

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.20.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a46d0231cb69b8326196a602b8d0abfa33e42be65ddcb81c0c0f72a1c95b45cb
MD5 5ce985d97d10fc25188c0f4e82675719
BLAKE2b-256 d4a30854667e17203acbc3651b88db05c3e1b977201ab64e4292bcbb2c07ba62

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.20.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.20.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.20.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 36a5ac7dce7738b4ef42507739e214078f2491fe92c58972a755f448c094d6d6
MD5 4016540523d21f20845d9b5e632e203b
BLAKE2b-256 ff3302836b878f59a5020e375ac8df97af7850672206c5234e3c165e6ca08ca1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.20.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 733281042c2013fc138cca4f64ce58c746ace87cc6ef85d6707245e7cbcb23bb
MD5 511f28e108cf50e992723f88e115523e
BLAKE2b-256 0d7b45509f07528581039005d05eac6b5ba9a061ac13a8c3a1491c63bc4e5de3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.20.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d7b34119a366bfc355c1db90e22db546a2d5572b2b65e3a1fa4da740b99abd60
MD5 0d2e35af3955fadee1e9e137cf466a9d
BLAKE2b-256 65a3c43bcc6cd8589fa3d83a8a2884bee4b4b1568bc919f03b1d08f7248ab6b3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.20.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 93331186adbe6f69ae74be37e49fcd3dccec717e505fcf48291d575dfd17424f
MD5 d8b72c2d7502ccccedda8b5ba1d85ed9
BLAKE2b-256 2fe35a5a229d7955c281d716e1a18ea6e860e8f38f1a04e73254fcf517713ee2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.20.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8f3c54d2503bc5330122b95b5d4223fbeb459f768abad1c0a303fb7529a09ff7
MD5 827b7c600749559d5e563fa63d5f38ad
BLAKE2b-256 48acf795b98d60a4b0747225beddcbcd9b6409840d10f1724b548ba9bbe23246

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.20.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e364751d853069855d34ecb924765f0f89800908486d999b10209680dbcf48cd
MD5 e4e7178f851ca4a5c140bad4b154f38e
BLAKE2b-256 9544fd8ee06c5cd4c540c333da5eef7f67f818f834a4629831f72ca8d26af712

See more details on using hashes here.

Provenance

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