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.15.0.tar.gz (184.8 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.15.0-cp314-cp314t-win_amd64.whl (608.7 kB view details)

Uploaded CPython 3.14tWindows x86-64

aioesphomeapi-44.15.0-cp314-cp314t-win32.whl (535.1 kB view details)

Uploaded CPython 3.14tWindows x86

aioesphomeapi-44.15.0-cp314-cp314t-musllinux_1_2_x86_64.whl (658.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

aioesphomeapi-44.15.0-cp314-cp314t-musllinux_1_2_i686.whl (676.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

aioesphomeapi-44.15.0-cp314-cp314t-musllinux_1_2_armv7l.whl (605.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.15.0-cp314-cp314t-musllinux_1_2_aarch64.whl (645.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

aioesphomeapi-44.15.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (649.2 kB view details)

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

aioesphomeapi-44.15.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (589.5 kB view details)

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

aioesphomeapi-44.15.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (638.4 kB view details)

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

aioesphomeapi-44.15.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (665.0 kB view details)

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

aioesphomeapi-44.15.0-cp314-cp314t-macosx_11_0_arm64.whl (570.5 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

aioesphomeapi-44.15.0-cp314-cp314t-macosx_10_15_x86_64.whl (575.2 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

aioesphomeapi-44.15.0-cp314-cp314-win_amd64.whl (518.9 kB view details)

Uploaded CPython 3.14Windows x86-64

aioesphomeapi-44.15.0-cp314-cp314-win32.whl (462.3 kB view details)

Uploaded CPython 3.14Windows x86

aioesphomeapi-44.15.0-cp314-cp314-musllinux_1_2_x86_64.whl (643.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

aioesphomeapi-44.15.0-cp314-cp314-musllinux_1_2_i686.whl (666.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

aioesphomeapi-44.15.0-cp314-cp314-musllinux_1_2_armv7l.whl (589.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.15.0-cp314-cp314-musllinux_1_2_aarch64.whl (622.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

aioesphomeapi-44.15.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (636.4 kB view details)

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

aioesphomeapi-44.15.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (584.7 kB view details)

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

aioesphomeapi-44.15.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (616.6 kB view details)

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

aioesphomeapi-44.15.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (657.8 kB view details)

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

aioesphomeapi-44.15.0-cp314-cp314-macosx_11_0_arm64.whl (530.1 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

aioesphomeapi-44.15.0-cp314-cp314-macosx_10_15_x86_64.whl (542.4 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

aioesphomeapi-44.15.0-cp313-cp313t-win_amd64.whl (577.5 kB view details)

Uploaded CPython 3.13tWindows x86-64

aioesphomeapi-44.15.0-cp313-cp313t-win32.whl (514.1 kB view details)

Uploaded CPython 3.13tWindows x86

aioesphomeapi-44.15.0-cp313-cp313t-musllinux_1_2_x86_64.whl (656.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

aioesphomeapi-44.15.0-cp313-cp313t-musllinux_1_2_i686.whl (674.3 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

aioesphomeapi-44.15.0-cp313-cp313t-musllinux_1_2_armv7l.whl (604.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.15.0-cp313-cp313t-musllinux_1_2_aarch64.whl (644.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

aioesphomeapi-44.15.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (647.4 kB view details)

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

aioesphomeapi-44.15.0-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (587.4 kB view details)

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

aioesphomeapi-44.15.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (637.0 kB view details)

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

aioesphomeapi-44.15.0-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (662.5 kB view details)

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

aioesphomeapi-44.15.0-cp313-cp313t-macosx_11_0_arm64.whl (568.7 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

aioesphomeapi-44.15.0-cp313-cp313t-macosx_10_13_x86_64.whl (573.4 kB view details)

Uploaded CPython 3.13tmacOS 10.13+ x86-64

aioesphomeapi-44.15.0-cp313-cp313-win_amd64.whl (509.4 kB view details)

Uploaded CPython 3.13Windows x86-64

aioesphomeapi-44.15.0-cp313-cp313-win32.whl (453.7 kB view details)

Uploaded CPython 3.13Windows x86

aioesphomeapi-44.15.0-cp313-cp313-musllinux_1_2_x86_64.whl (639.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

aioesphomeapi-44.15.0-cp313-cp313-musllinux_1_2_i686.whl (665.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

aioesphomeapi-44.15.0-cp313-cp313-musllinux_1_2_armv7l.whl (595.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.15.0-cp313-cp313-musllinux_1_2_aarch64.whl (615.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aioesphomeapi-44.15.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (633.3 kB view details)

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

aioesphomeapi-44.15.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (590.6 kB view details)

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

aioesphomeapi-44.15.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (608.8 kB view details)

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

aioesphomeapi-44.15.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (656.1 kB view details)

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

aioesphomeapi-44.15.0-cp313-cp313-macosx_11_0_arm64.whl (525.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aioesphomeapi-44.15.0-cp313-cp313-macosx_10_13_x86_64.whl (539.5 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aioesphomeapi-44.15.0-cp312-cp312-win_amd64.whl (512.0 kB view details)

Uploaded CPython 3.12Windows x86-64

aioesphomeapi-44.15.0-cp312-cp312-win32.whl (454.6 kB view details)

Uploaded CPython 3.12Windows x86

aioesphomeapi-44.15.0-cp312-cp312-musllinux_1_2_x86_64.whl (644.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

aioesphomeapi-44.15.0-cp312-cp312-musllinux_1_2_i686.whl (669.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

aioesphomeapi-44.15.0-cp312-cp312-musllinux_1_2_armv7l.whl (600.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.15.0-cp312-cp312-musllinux_1_2_aarch64.whl (620.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aioesphomeapi-44.15.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (639.1 kB view details)

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

aioesphomeapi-44.15.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (596.2 kB view details)

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

aioesphomeapi-44.15.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (614.5 kB view details)

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

aioesphomeapi-44.15.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (662.3 kB view details)

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

aioesphomeapi-44.15.0-cp312-cp312-macosx_11_0_arm64.whl (530.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aioesphomeapi-44.15.0-cp312-cp312-macosx_10_13_x86_64.whl (545.4 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aioesphomeapi-44.15.0-cp311-cp311-win_amd64.whl (513.3 kB view details)

Uploaded CPython 3.11Windows x86-64

aioesphomeapi-44.15.0-cp311-cp311-win32.whl (463.2 kB view details)

Uploaded CPython 3.11Windows x86

aioesphomeapi-44.15.0-cp311-cp311-musllinux_1_2_x86_64.whl (658.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

aioesphomeapi-44.15.0-cp311-cp311-musllinux_1_2_i686.whl (690.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

aioesphomeapi-44.15.0-cp311-cp311-musllinux_1_2_armv7l.whl (606.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.15.0-cp311-cp311-musllinux_1_2_aarch64.whl (637.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aioesphomeapi-44.15.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (651.3 kB view details)

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

aioesphomeapi-44.15.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (605.5 kB view details)

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

aioesphomeapi-44.15.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (631.9 kB view details)

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

aioesphomeapi-44.15.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (679.9 kB view details)

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

aioesphomeapi-44.15.0-cp311-cp311-macosx_11_0_arm64.whl (530.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aioesphomeapi-44.15.0-cp311-cp311-macosx_10_9_x86_64.whl (544.1 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for aioesphomeapi-44.15.0.tar.gz
Algorithm Hash digest
SHA256 41d3171d9aaf38cc62525fd6b9c610bf5a46c6345fef229d7498836fc5f37e4c
MD5 1796c144fa27c24ef1d1f20f9b705b00
BLAKE2b-256 81f08129cad8450ae195ed3a3f66f773ce86670a1c8a4e5c52f908bd90de9cba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.15.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 284457a3165c1685e49466da886075cc5a88e117fe038d5ca21ea55667e56d2b
MD5 04ecb6601e70338bb44f56535c2f7525
BLAKE2b-256 e4c3db025756c7d2f53bbb6823e0ee6d3ff45fe015693dc704cabc47a4b09c40

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.15.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 bf44cdead5072e5851e52fbafec36dd1aafbbef42f17613316f527f36518d4c8
MD5 c83853ccca20a71c03726ef405842578
BLAKE2b-256 24aea610a65a2bf92ab75fa8d0d01ef2fe0ab2262b42f283185e73a706620168

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.15.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0d72d22987ff4637f720ab415c848f0445385672eb88c4b5686e0ee5b9e59fa3
MD5 4094d72da57fc392b7c93642410862b3
BLAKE2b-256 43c57e883d415e9bb51523f325fa5ffb23f6b812c541918b1a7832084b92292e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.15.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2d4ae7fd43047f02209a8997eeced8a4614c3cc39d87f646fceb731aef742b06
MD5 949a74b7f17da0de1dc5c70ee3187ebf
BLAKE2b-256 9cc965552e5e8b96d0bb20b70d150af285d95467c130e8882db7d29a42b2f956

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.15.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d9fa7a272897067bbeee84c25110114b7cdcde492a59457d4fe2cadf3990d791
MD5 a26f6211f66b987969f0026c7c6b5eb4
BLAKE2b-256 58a262fa93c98dce85db8caca4cf45a14a936293fd9c67e70ca5e419530b6781

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.15.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 87fec968c36e4d1b89f9a930d954b3d7a8465e37c4d973a4402a15adff6a6dac
MD5 9b77fc73a2ce4e9b47d9124d4b3538eb
BLAKE2b-256 55430bba422f4a85cc19bba94e885a3e1c9c5123365043ed2fc428d75827fd96

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.15.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.15.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.15.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 831f1c17c9d451c10a20078ca630e97d80aa9eba17959d9c35ff46034e5a4a6a
MD5 310355da0d696a982cccd95cd0ee56a7
BLAKE2b-256 75facde6e2d2537cccfb7b2c0c3d6ef1c05b705f7547b4c4048b9c7cdc151297

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.15.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 587e0c12da4daeab500a39ef543ad9bd6ff9b8320cbeb69b2090795238ff9683
MD5 b18ecb7a50eabe31d6e4d5824f4f6b75
BLAKE2b-256 530b923df6c62f2787736f6a655728160f13933294ff745af5ab13c64fef8313

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.15.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 00f1eae3daff5a4f3879a2524c6a92cdd5bf8ad257a92b73192323844b5ada7e
MD5 1ee4605486f0a8c55a08836cb44781e6
BLAKE2b-256 a53473d315714be5a0a59d5d0cd91bffaa20d2df9e468315cd440bf7f517e31b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.15.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 ddfa943c92f672fbea4ed9438e8f3c8d6dc3009acb7c4d005154ab27296c8134
MD5 f38c3edd5564627e984d87ea86f397c4
BLAKE2b-256 d5f94eef4dbea294b4b713b0fdab64c4c305edd35777ee8513df21ed61bb70a8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.15.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3ae9a547d91e17b5ba2dfc5578f2527cfebb25cd7fb7277836b050076068e6bb
MD5 2bf46800f0ba814ce14c24a9deb07275
BLAKE2b-256 723c0ecc1506c59c2c6f6641ef12dc6428aa360b80de56cbb84aa5d8ee6b81b3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.15.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 c9b4ff37fde3cf8da393ebb6b973bbc4ad29b9663fdd85072bde2de675b7999f
MD5 2b3544a2f3b0fc4bf37992029604bd5e
BLAKE2b-256 0e7193128019a8b7ef1773a8f29ebd798b14baa4059e24ec2bdc5ed753f848f6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.15.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 68c207e3be94cb8580a0757eaac9b52693d5bc891738d430234bd44539bfd6e2
MD5 4fcb06894072bd9541f8189a109a61c5
BLAKE2b-256 92d04b170e6775a662d9c267343d7ab947e2dbead56610f99a440ea1ba824094

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.15.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 3cb03a3ac5bb25164556dabce1cab5eca24e08191965254a0233f47dc54c25bc
MD5 00058549ee854718f0e9e2b3f6621ed6
BLAKE2b-256 1b28c2bc837bfee675e2056e640240fac5d2dcf1101ea85babc2286d8ed05614

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.15.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 af00854afe4d59aea32d4c56f1a7c8abdf7c2666f3a85e33dda81d92c05c689e
MD5 427cdff4aca2137be8e1cb666878a212
BLAKE2b-256 0530e61898785219f22958789125b72b2f2b911ea11d8da81ca982ade5ea90d8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.15.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e367cfa719648d2c796be7fde4a704a2a86dc58b923b1176f44deea53545a633
MD5 e66a9432732f4012e75f108f1d4747e8
BLAKE2b-256 5b2a488b19d3554f02f3fcc76c80a8a6e25b0e492de959e6b86923ed1c782ef8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.15.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 56467126526f16d1cc14314fd5daaf8af2a0ebd972fca2b4b09991d7919ca33c
MD5 db90914a75ca95bcb118b9b405ddebad
BLAKE2b-256 31937d10da31cc2399e132e76eae20a34004b5ff18c1a040f768799c0d4a5dff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.15.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b299680f2818b042ea5d58057531ea8a0505d191d8b0f08998445f97170b05f7
MD5 728abc03993f1b7a36400510eb8ea820
BLAKE2b-256 8b333d6ba31106718b88db630d5e40b896fae13791351eae13ab26a8f63370d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.15.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.15.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.15.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e01feaa5e7ce7ba6ffebc8ba052117c3772b3e5e472a02ac1ae8537bc3bb77cc
MD5 e7f4cc0158133dad94cb451df2688456
BLAKE2b-256 67fddd64419ccd7cad1a78cbfddfc1285b539c949aed980f29ab11215309725a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.15.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 619baf39d813427531017b6a5cf930004b40b48aa586649da013386caf81c90a
MD5 42c2243ba7dd8f824ca00b5324c1e507
BLAKE2b-256 41a08f31d3f97cdd099f644e27346606003d3c960443dd6986b38dc1b7913cf2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.15.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 eea8e38e566c766ec6b6e9013248c3e1866d088f98f137d7d2e9ea15e73ff53d
MD5 5e6e025938d858474d0b0db037962a2f
BLAKE2b-256 518a129fa1a86f70696a6d547142235927e79b7e1fe3270ee87932e6b4c7984a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.15.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 cca8b1086b7208ba5d4362d2bd925edd50f89b7333dc0e340dedca63d7a810a7
MD5 08fd3be759be3db49daeeeab41c3ba92
BLAKE2b-256 8b51c3230a1248c90fa9b0293895c662f90e4eccb9b2ca4a2a5b1b43f0567bd8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.15.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dcb512cc9365cf236e0098c390c23b4e1a505425126f7841d7bf395492326ed6
MD5 b8fd8ded4d5509472064bf97138521a9
BLAKE2b-256 624dc6e3cd7d5f3e1299088fba3bb4a416d73547989b220fc43eb71db80a7e9c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.15.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5c700521cce8843ccaad973347c081b5dda92a5f340d9782158b04e4c10c297a
MD5 7d3447dac28cf44235bdc8b9f58c7cb8
BLAKE2b-256 ace0e371ca3f659f4a001cd5e1dac343ccf627a48e441819290e782657a472cf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.15.0-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 62c6417fac69e732f7f834c625d2895d4ab8a5dc9236fa9586e0d3b5e7b6555e
MD5 63304d11d1616d79ff71d84cf7679b33
BLAKE2b-256 6114f9ae9ccd6f3862a15f5e1a733cf3b22d3dac3302285f38db7efeb54fedc7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.15.0-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 17d5677ecc0b3bb94227a21e1fc23fe3411214a850d6489d87be62407566fa28
MD5 a9ce65d692c048a084b0fbdf62d93eef
BLAKE2b-256 9d9153cedc537ae18729eebfa1acf0a7d712ae271144b51f00f18a90fc50061f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.15.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 097677b351e4ecd22b02427c7a5baf91bf13542e6a73a931e2e796d14a4ca438
MD5 ba8f09579a6119d562ca23cb1d721da4
BLAKE2b-256 1a8ce834568eb32e6ad3924b5d4f85ce55f996746e4b14109105a88f607ed61d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.15.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1584a0da2ed4e3f89a98fe8c4febb03fa4f68f6297ee061ca9c415822fb49cf7
MD5 a090b3435dc4484c4a4c96e5f1faa99e
BLAKE2b-256 583c7a0cff06bdf4704b8a0f27a848d21c900a2a150f37ae08fa6121533493b8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.15.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 23457663f9edfd1a7da9c5618136e8ce4fd91b79f3240175aa530448cb7731c2
MD5 8ac828b8880c0798ff0a742ca0fec6b2
BLAKE2b-256 b05b138fc53f4cd9a65778ae5396af61f3cb61561f75f4f15217eba22b1ac251

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.15.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 74590af99660ed7420be1937877026b5b036b98e94d541640bc91d199ae9549d
MD5 3875590e57d72af5bdb438e8f370bd31
BLAKE2b-256 42da9ba09b84268d48b09cfedc189f414d6be73e0126aaa2e4955d55786c74bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.15.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.15.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.15.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 87e5ab11fea8f100f2b3d968854d510599cbd6b0d22128545988d393924c01a4
MD5 1e47081251d1b5262a54544a885d5db8
BLAKE2b-256 c38613422c3c93da338a8218c7619a0adeb60737ee9e149af8b911efd5e8c98c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.15.0-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 a0716a071680391a41c1ba1a3b9f21b5d1e636af0ee7252b4b3f623db70babdb
MD5 f7e4013820e007f2b0d0ae93df3eb69c
BLAKE2b-256 c1acd88b5233b45e0442f4e1ced17558559f34971e79d53dfec260a858806644

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.15.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 88b448b82ca41a39980136c64611cfbeb7a9100d83b26ec3e7677a042bebbbaf
MD5 2e0f94b278168f392b78800fecf71eea
BLAKE2b-256 8bfb4c3eb0115ded27cd2451faeca999145e94123c49de3f55da96ec2b05371a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.15.0-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 45a87f523fc6e18039751d4dbc98e2816c7c84acc3daa48f12fe4729ae4afa1b
MD5 2d0553f2a07c75b7ffb54671a878349a
BLAKE2b-256 7172e91b3e1c54eaf2291fef0de3e0951df40e5917e20ef59a010dd525a81dc5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.15.0-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 708f547292d6c4b1c29fecedc601f518de052ede8123bb625fc6b5e456a14765
MD5 020a33b068c7a772e75457767e26eaea
BLAKE2b-256 c0c6d6300bb7875efacd70bd6067ac9cb94ee1c1821de5fd5da5fbd83381221e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.15.0-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 46b7fbf7a4fb623a71a04e79accb9c5e3af3382223a3ce14bb688e417994070c
MD5 8230f501847c7340b10fce229e003bcd
BLAKE2b-256 6b957a1be534290c6fd87d9001e9a3f46558c48e481768d40e56fb25b791e633

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.15.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 cb7a05dfccbad654870a4b91465b76de37dd31bda873e355db8a0549213667f7
MD5 64eca204b284eaa08a0872b367485efa
BLAKE2b-256 b928368799e5797d8b5fde65fda2ee1647669cb24106d47de5e3af147ab23d84

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.15.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 76ff5cd87086f97432ab3783216e5aa96632568994e4a9523c03efdceb554f2f
MD5 9ec5d9afb31b51546a851982dee94019
BLAKE2b-256 cb6a643ffe8cbf2e4af98ed5b187a040d55dddc3ece1804d4ca3f2d1837d9aa4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.15.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6d57193db7076b3b91591be778cd85451fa95b041ccadb8831ab9034ff63d205
MD5 b5a9d854ade1c9047a9a96c3c0cd11bc
BLAKE2b-256 dcfa24d68c194f2dcbadfdb08ecb677bb26406dd642a8501cef2ec01404206d9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.15.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e6c3a2948bfe86f87258ae3c9d72ea04c615ec1ada09e2afd629b1b1baf28ff0
MD5 6571283458167a56a2f495fbe4e2fe3a
BLAKE2b-256 1df0bd1d0df6424b5923ef1ed51904d27c26dff8745d17262c321a1f103e827c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.15.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6cdaa6f6377754d904e01f01d23e3ba4cc00532067e659b9c769e038740d839b
MD5 9f5c99a6531801ec3cf92b1aa26136cf
BLAKE2b-256 cb251ebc7d072d3216cff3b4c2bb9b45e6047ff86f1adcbe732ab443213ca583

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.15.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7da0b74dd544837468e824d45dc3d1d729b6e76ab134457edebe1b521e422164
MD5 6282a8e7a02885919b66b8b0460a0f57
BLAKE2b-256 1f202ffece22a0c907140f0226fdff0f4e717437857188a2d422f814c2610d50

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.15.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.15.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.15.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c3ad88f363adcc3c8547526151b2554cd08b8c025fca3b9242f69492c0a83c2c
MD5 0bac613d7c6f98ac36df134c88b3c665
BLAKE2b-256 4eb38b0d174f19b59bac266537901d9da0a23c10fd02ddf0633fd9c37efe1f07

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.15.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 487359760b479b54403f322abb8c7c1dfba054bbc6d9cc2c5f396a281dc651a0
MD5 dfdfc46a49910f6fa495164d49870acb
BLAKE2b-256 17ec3643ee59ff8df97619ccc69e6c64673d473f747fcc5a47a21095a56bf862

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.15.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5fa14cac6d11f465e306892f5865696bf26fc7633840ab4be4c1d4f1783bb035
MD5 609168041e610a71bde101125dbd02f1
BLAKE2b-256 5489855c8201b356f4fb343d7426c64600eec1b80dbd766e5a81d68edcccbf39

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.15.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 d6964fcbe1b2daeb478a0af82c0bf909a0aa775172f4b669306f9a4aeb092d6f
MD5 0c3107d077a903b1accfb1025ee6338b
BLAKE2b-256 be7bdadccc9a5549fbdb6a7860e7d530875524688fb51ccc97accc432929e595

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.15.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 47ef4adfa632684e29b0a01a8cadb7b1a4d15d778858f7bcc9da175c6d0c6a45
MD5 109703c9c849c33a3a87c7cc7f85340c
BLAKE2b-256 e6173e04610f439c50e067ce6b14be4402f76bb77906633118071b2e9aef0215

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.15.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 49d86c04fe07925d49554588885e1906c9a71293dba15a29c56f7fb8a909d790
MD5 94edf485ac3327e3e33c54d1510d6bd3
BLAKE2b-256 accfbd835dbc588c4c3270339902eecd4fcb459cec67bec42190610a73264003

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.15.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 9897a29854a260fc5d4606df6af02296e90796f08905e9820ce63d8a0c611ffa
MD5 32a2f16a3c74549bce8135e1c6a8fa44
BLAKE2b-256 d2f4a29b988850553a2bf58114de47a432c274964b0cfb4081eb32284ab873f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.15.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 f34408a405e86c0faa1801a58dabd494c757c836b1a0e7ca55495ba83c4c6b9b
MD5 998e00f0c6bff829e4db803583d1a092
BLAKE2b-256 0a038860d6811471b14f4a332694e6e3c882f4ae855ae8888a4bce34f46e976c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.15.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 208079e58ba7809f65dccf7c35cbec7bf54e04871ed9b3dbc740a2fc2cc14a47
MD5 1b632003e4efb7b0599c9847d0997704
BLAKE2b-256 b392654e31c0b8b8b77097db164ceb727526b7486a23ec3d8775e97accb32d50

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.15.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 48bad9505452b1c68b3e0ea1d28563c6d77aed57691d19fc058911f88967d81b
MD5 4d7ec90547b00c7fc80026c0a108176c
BLAKE2b-256 e506cf73daeee743cbc02ff97f5fdabbb46346626d6c720e31a52051e63795fc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.15.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4dc95761266d32771d23888bd415b45261322b060aec17097d76cc433fb22690
MD5 d94b7480dd58513c2f169edfa1f51424
BLAKE2b-256 ab9ef661f707b94046c3ebf1e160f768a1ffa81ce2ba3c6b94ec2f2baa981474

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.15.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2094d1c1ab5b3ff0d675c4f5fa5e640c1975aee7bee1a269d54ca11e16a82c27
MD5 7e5f33c9e7a0c270a8c121784fdc45a9
BLAKE2b-256 8b666aa11964ba12f9c78dc9b52615e2d3e186e1c16f49082f597d8ade82f6f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.15.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.15.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.15.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b93e6a42fc668b05e7c3ac1564885d8a4c8619c49283ef2fb49a46223de8053d
MD5 c30b58f445fb4bc000a4c441b76a220f
BLAKE2b-256 14249e3952365da352fdf998f9d7fb8a3c52ce850dfbfbe251d9c4d556d6cd5c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.15.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 3e547890266a8286ea18ea670f37b1cd5ebd549c2a3fff46f099fcac351895d2
MD5 f07b67564d02fd913cd0559207bf1d20
BLAKE2b-256 92334ba1ad59069a23dff9e41142adf70bcdfcd04d24fa23954a017776e85a65

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.15.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1be7089f6a4aa1a6da6c002caddbfbc811e9df773bcb5b9707d1ad7c6f903a28
MD5 05b4df2a199c8b48b5c5b7f2e1ec3872
BLAKE2b-256 efc42e40e1760b56450b64437baeb526032a55ad7f147d054c6ea0f56da864be

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.15.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 bcdd64a44fb2cfb1fd5947c70ad5246e4e3c83cac978a8a8ab09eabaeb92ad62
MD5 0ea26ac897f246b71c9ca981f7ab8f44
BLAKE2b-256 175ace5444baf984e6f699650a6bba1b5e7e4bd62a8cc1f28e97a8030724abbf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.15.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 65ede68569f2942f50d7f8dbeaf91e01a4f33970076b727840fd3ee057f8f66b
MD5 e4523b95f877c05ad7ffbad31d868bc4
BLAKE2b-256 df83ef951451b444d1177376ff87f13ddad6f70bcbee38fc075ec06b13a59078

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.15.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 8d5899ae89d33db66e1184a375ab404a22e0ffcf6661d047fc64799bae830acd
MD5 bf69a11fb9c59eac5581400b8b4cd811
BLAKE2b-256 96b715ee7bb5f3082978eab202f30a656e567cc47b44c1b7bbd1174705e59d95

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.15.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d741b3bdb42aa26b5f0c164f7946b67f947ffbe2e27262f4e31432d27b13218c
MD5 7d13d7e3879bd33bceae3d65b92edcfe
BLAKE2b-256 abda067d33365f2a313d60802a47a5ab324989ea9d14ddc100a681eb05756cbd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.15.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 1c0f7174963e63ccb4803aa4648acc5953ee04ab1506a729c9891fb69cfb974d
MD5 385dfe84bd769d6c0e2e316260d290fc
BLAKE2b-256 2d7e24b44d590f0d6a6105cf4e018db2969efde578f72ffde615532203fe459e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.15.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 036c719d7dcf37677d3844c8d305e3bb72415a9059f6952ef291afd73f868544
MD5 f1968d0ec71160cddb7af0aa83a2439c
BLAKE2b-256 3ca973b07c0d623dec49d96c5f11c185df5e3dc446931ed5e4486094694d7257

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.15.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7168a7cfd39998ce1d05454ca737a9c8f0e50c55634b9c17cc6d79ac9ca2844f
MD5 1fb7a5dcec6eccf3520590f86d7ee8ba
BLAKE2b-256 e90c81d1f9ff303eccc27ce80026a7b414f7568e605fa861fe8c9aef781c8256

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.15.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bde86c5c1be3d62cdb915ecf82bd25bcf185edf65dabd6c78fc679695914362f
MD5 6d4bcfe10980137a81c95c9c94d6b542
BLAKE2b-256 957d2ec4e00c822fb97846346e888a9d17e0ae871fb3bc5521741c134e986965

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.15.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e55cda572403a79527275b33f39061c5f54d9a3020045cd97eb107831536354f
MD5 cf3e4b6809f89ed187b3e81f7033cfc3
BLAKE2b-256 87e3f2152ec0e35d13c5c6c7cb8c9f00924dc1d7394e80b04e595abaadf9069a

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.15.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.15.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.15.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d21125afba2d484b3bc3f1c4fb52db85338742029e14cf06991a9876953e20b4
MD5 c858717344de7f62f901a86a0e2032d7
BLAKE2b-256 6472ffedbac9f4bb4c1e5b83942d255ab63448558e242708036128e1a34dc96d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.15.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 d95c229af777ec9ce274063a551a32866407d3449a05502c1d610b1dd45b17fe
MD5 97aa2cf694e70b4b52a398e8a7e6cdca
BLAKE2b-256 251088b359b81911f8e8b8603f3bbc67e2c59628791d3cf1ba77367b63eff9d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.15.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7d3d0a0e7929ed126421f6328d0dd7478e28129bf6b92c8b6b663f5f6877fbbb
MD5 e54e188d1ef4ad983b1e61552df0af0a
BLAKE2b-256 b8a85199db2abda4b4e1537b8faa50b61478128e71fc55a24e659072f0f3b851

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.15.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 f763f91e0c2bdff694edc7e331f90f4fbfce4854718978117d5e7c9d1a7f60ac
MD5 9a63a10607c1153a2e3fe614182887d1
BLAKE2b-256 8eb081b3e9dec20d8980133ffcb415018112ac47b6c9af5c58b11a00c968a48d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.15.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 45aa054e236f4fc150233a87ed456509593848f62effb3285e6caf34fd6a541b
MD5 0284e825675b9071a41101672156e727
BLAKE2b-256 3bd083c51dd6f877b5d503b65f6a3dd3cba34f83889212fa2a78ca2f173d6c1c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.15.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 746fe184578096eedab045a2991b8fa403bf654695db9f9b59f612903c1cbda5
MD5 7881eb362e6c38707e91e05523654ff4
BLAKE2b-256 63db7819cdf681dba5423216acb8dc146dd6311b8d3bbf46d20133069a131bbf

See more details on using hashes here.

Provenance

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