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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

aioesphomeapi-44.14.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.14.0-cp314-cp314t-musllinux_1_2_i686.whl (676.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

aioesphomeapi-44.14.0-cp314-cp314t-musllinux_1_2_armv7l.whl (605.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

aioesphomeapi-44.14.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.14.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.14.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.14.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (664.9 kB view details)

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

aioesphomeapi-44.14.0-cp314-cp314t-macosx_11_0_arm64.whl (570.4 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

aioesphomeapi-44.14.0-cp314-cp314t-macosx_10_15_x86_64.whl (575.1 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

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

Uploaded CPython 3.14Windows x86-64

aioesphomeapi-44.14.0-cp314-cp314-win32.whl (462.2 kB view details)

Uploaded CPython 3.14Windows x86

aioesphomeapi-44.14.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.14.0-cp314-cp314-musllinux_1_2_i686.whl (666.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

aioesphomeapi-44.14.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.14.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (584.6 kB view details)

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

aioesphomeapi-44.14.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.14.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (657.7 kB view details)

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

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.15+ x86-64

aioesphomeapi-44.14.0-cp313-cp313t-win_amd64.whl (577.4 kB view details)

Uploaded CPython 3.13tWindows x86-64

aioesphomeapi-44.14.0-cp313-cp313t-win32.whl (514.0 kB view details)

Uploaded CPython 3.13tWindows x86

aioesphomeapi-44.14.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.14.0-cp313-cp313t-musllinux_1_2_i686.whl (674.3 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.14.0-cp313-cp313t-musllinux_1_2_aarch64.whl (644.3 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

aioesphomeapi-44.14.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.14.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.14.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.14.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.14.0-cp313-cp313t-macosx_11_0_arm64.whl (568.6 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

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

Uploaded CPython 3.13tmacOS 10.13+ x86-64

aioesphomeapi-44.14.0-cp313-cp313-win_amd64.whl (509.3 kB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

aioesphomeapi-44.14.0-cp313-cp313-musllinux_1_2_x86_64.whl (639.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

aioesphomeapi-44.14.0-cp313-cp313-musllinux_1_2_i686.whl (665.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.14.0-cp313-cp313-musllinux_1_2_aarch64.whl (615.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aioesphomeapi-44.14.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.14.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.14.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.14.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (656.0 kB view details)

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

aioesphomeapi-44.14.0-cp313-cp313-macosx_11_0_arm64.whl (525.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows x86-64

aioesphomeapi-44.14.0-cp312-cp312-win32.whl (454.5 kB view details)

Uploaded CPython 3.12Windows x86

aioesphomeapi-44.14.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.14.0-cp312-cp312-musllinux_1_2_i686.whl (669.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.14.0-cp312-cp312-musllinux_1_2_aarch64.whl (620.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aioesphomeapi-44.14.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.14.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.14.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.14.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.14.0-cp312-cp312-macosx_11_0_arm64.whl (530.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

aioesphomeapi-44.14.0-cp311-cp311-win_amd64.whl (513.2 kB view details)

Uploaded CPython 3.11Windows x86-64

aioesphomeapi-44.14.0-cp311-cp311-win32.whl (463.1 kB view details)

Uploaded CPython 3.11Windows x86

aioesphomeapi-44.14.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.14.0-cp311-cp311-musllinux_1_2_i686.whl (690.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aioesphomeapi-44.14.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.14.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.14.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.14.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.14.0-cp311-cp311-macosx_11_0_arm64.whl (530.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aioesphomeapi-44.14.0-cp311-cp311-macosx_10_9_x86_64.whl (544.0 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for aioesphomeapi-44.14.0.tar.gz
Algorithm Hash digest
SHA256 a0728f59ef772cc880714198b50ca83906cb83e4f66b01de6e9cf6c282f2f6b9
MD5 f303fa60498d653c32584ab78c49fd47
BLAKE2b-256 10c9bd0997ea453ad891fa70b30235a998c17c86a5b83e347a7d6e46df96a5b1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.14.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 13d84ad30a9d3f0e5e33efd6a2b1714296c8dbca786050c12d7da2add741083c
MD5 5b88981779854adee21381b5b5bf1190
BLAKE2b-256 6f4b516d3b8bdd8847c5609388f895b661581207f384ad3b78a456cd52c6d702

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.14.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 e24289f46550b6ba16e55e48d6ee5c7fd3cb8b6ae9f8baf5af81d9df46e80392
MD5 3edc8880924fd0e523ac1d76a58c60b0
BLAKE2b-256 d587f3b138e1bd307fb5c28ed769ccc9d460349d11e03188e7b7f1a3adc8171f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.14.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a8e0fd0ebce8db483aadb24d4814bcb8125e519eac207e0378844ee40481451d
MD5 601552a50c57b5235559ce879b56151b
BLAKE2b-256 be3a5e85b9a67ef2a992eb305c8f2d24c049749018808b009ccafa3690a710bd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.14.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5452bf9693c3c3d23018bc37224f98f7e409e1616e87e5ff037e4276fd94e38e
MD5 da808f83a8fd4e553d0225491df94e18
BLAKE2b-256 f78b42612851ccb736d89ec51b9a7edc50b18d281ee5018a884b140ec7ab1553

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.14.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 023638fc8f997314e554d49df62d152095292c5071a18e5511b65cfd20e91759
MD5 5e1db516acefa74c07466cd58ea0b187
BLAKE2b-256 9db5d18f00f4379b87bfc200b295c5957bf55a8d5f4186b0a9cca96f9b0e5e59

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.14.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 966c8a96ddcdecddaf5e0b08a65b68d4331f06ef907dffab4fb38aa33fed167d
MD5 ae90d96d41ccd6ea440e8fa2d3d57e32
BLAKE2b-256 ea585e0c3dbd76a83e5040d8a21cedcc47c1da821a2b7fe2bccef87cd61ecc40

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.14.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.14.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.14.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9489482b7e2428fe16b825d0c36d2798fe0d98be24209d3de696cd1fe846af73
MD5 698cb3a9ad58c291e7395d6660a06dc9
BLAKE2b-256 0d4dbf94ddf1b9878121e54cba232123fc0948c6659f7259f7cc57bacc763636

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.14.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 28643dc9a80eac38b5cae94a23f0109a76751e3a176feb2e8f82cc8d02b8c989
MD5 d7e067d799e85e7601374e2e8f88ec17
BLAKE2b-256 ef82fb60449c9e3761fc9f574f94f8d223841070a4ede20542afc7bc47e825d9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.14.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 800bf217fe5cb4a59223497d33225676ef51afead594300a46ed3f97664b41e5
MD5 d1de32678367e48fca7f0f56163abec2
BLAKE2b-256 aef2e5c7d5759dfbbbe5763c065e5ee84b28c80c662580e71fec981d4c2c6dfd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.14.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 52619710575199407038cf2bb98bafae7e7f9aae6556a7e8f57b827adc11d248
MD5 35626814533128760e7f9e0a68e4739b
BLAKE2b-256 2b062e4f623a8978d4fb0af2a7f35c8b20f5042c34f7a0596ec8d88ac435a929

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.14.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 732dbd1494f83e28ddc70b792837758960fc65e788c5add01edb3d9130dde004
MD5 b02e7252c5f200d3af6da0fbd778e393
BLAKE2b-256 d9614c23e49a1b6d5c94fbfe87f4e103b773efba9fc694fc6a1d5294b2d62f5f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.14.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 d7e7858df2b620c326297ac514279baa2ec98b164daef134bc1cd3ebec93309e
MD5 efd192a74236a5538e85f35d34b9dece
BLAKE2b-256 708971b6e885b7ea8fa3bd3108e068ce7f332e490fc0c20a9c020cd91e13ce69

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.14.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 6741cb3f2eefc82d6686e3cf0b174c7ce5f2ea398063ba68dba9cf317e5337c6
MD5 65c805e5530144af8b779bf8675eecbe
BLAKE2b-256 059b4f4f76dee7ee4a4f1b125c583f390554e663d1fa321be2bdda123454dc04

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.14.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 4c17c0588f137dffd145ffb6ec7bc80000aff7822ed53a010dcc06cb47665e8c
MD5 14f7c56a2ac17564b3843419088a830e
BLAKE2b-256 d3b230df99e409caaaa560d17284d0fbb363a7508bb05016fa798b78954ec6dd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.14.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 696f39046de23c44ed86397049bfa4a8f806bbcaf208b296157b72a75069878d
MD5 3dca31341ec7e7c5be4afaa1886feecd
BLAKE2b-256 14bd7e577576a5a4c310c23e60620307336249347bfbd51b9dd39b4f03e5ecfe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.14.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cb1c11daca03961f5221e3c047b3d9941a34d769fec0ba966b9faf8b689298e4
MD5 ed648f6da9502457fcf8d0802d6f09d7
BLAKE2b-256 5100f2fa2e9d5fc6255fc1870d0c3adb0726cf48d450819ad361162d6ab3be8c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.14.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9d298a9948e2d2d0c6aeed1c90e0b62f23f552255738e8620a91f76b2672d161
MD5 049c59581b11846c971a8fab7d569546
BLAKE2b-256 5660f287d4a4cdc223725658facd4f705cc2a300d1e374085f4c9f6bbdc5c78b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.14.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5c8cbdcc73e077bca137ee2e9be1ef09e50d03c2c69428547ef57db8321aa35a
MD5 2e9b40fa5c1ce880e49968484ef22bbc
BLAKE2b-256 08a5484947dac8db26af1830206be10bc63f3b35bd0fc71e524c406323798153

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.14.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.14.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.14.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a3e365d1e393adc44d1807557232b88f20371cde273409c3d6fdf43ab80f33e8
MD5 1f9fc0109b0601770cf96ac9833b7827
BLAKE2b-256 3f16b992b55dfa873a2672afe11a8b59db96811f4cbc08844c653f6cb273bb6d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.14.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 7aaf375bd7d4c2cdc91f4c48299abbbfd739a1038a47de36b16d7bd546111a1f
MD5 b6f761162ca5ef8baacd5a1f9fece577
BLAKE2b-256 3cf1d0fe127ca32ced5f00a109e39123b4800d286bcae65464496e795f4b0100

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.14.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2cacee8751e5721dcad3a8c9b799fd447aace3af6cd177ecff4ab0f5797848c0
MD5 57dcda76667e17e8cd4e6f928b155d48
BLAKE2b-256 b0324e5177e358b5dea2149b38d7287475c161add704ff5cd2ec75779adea813

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.14.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 3d2a1ea9b58643cd80ff65a62c50bb4bdf4673b33687f6bc8f2b765d63623a19
MD5 f6f4c1718b7c5c02148c7050d5081180
BLAKE2b-256 ccbb4743eb5740d121d9c72691d03e9530e65c9be85a5cd2407679fbaa0a514d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.14.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ace645c873ba146dd59c99fc9c720a738e3357049ca660d47a66783686196d11
MD5 917ab709a8372fdc28ea369fe6d59701
BLAKE2b-256 8df9dc00560e5eccc3d3850a4276dd0b6c3db7923ec51f9c9c6622689549bb13

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.14.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ae5fdf5a56282d63842ea7d1dcf5877025209f95aa0a1e31cbc432bc0c5f82cc
MD5 e62596f551a3b537ef6d569277030f06
BLAKE2b-256 b9428da4d8566d4876f1bec351a58de0b93f07284ae1f4db9d70237c3f4b34ee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.14.0-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 5377a0bb6a7fa58691dbe6e4f375075f298f0fc65a83a619bf437dbd7cc15ef4
MD5 45f277977b2c842ffdc84e2a13e5a368
BLAKE2b-256 0f5b33944c1f89b6a1e791d21f99f5b8cac74b4c8989e0a138f3d197d508c521

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.14.0-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 583e0ee3c8a840e652a3b37c0b7e9b125f60b4e7c4298fd8e3cbd4c621626bf0
MD5 7b0686a06e957a3232db85a9697457a2
BLAKE2b-256 bb868b1942809bb5d434052f93a29d7edadb18c5462c7311d3b104d3a7cdd8d0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.14.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ff322b33be04858a76559acdd723855eeedab48ee9c9d898586494ae6a8b6391
MD5 bb80bd2e1aff6df74f72e65475a428d7
BLAKE2b-256 393c0ed509b9fc1978a00807bd0f7db3e125318201846b049bf678e1401d01ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.14.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b405ce5ee4163fd0958f3615048776afd09abeb1b303e810af5685b894095b80
MD5 4d06d3729687d216e7d24875d8f60adf
BLAKE2b-256 436c80f4750b4603fc77ead7f0972c8f6334f786eb373c12ebe0ddb4356ab4c8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.14.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 04719d8bd500d5bec77033859bc75fe41c5de3a1b68f2fe157e4d734bba69ad0
MD5 b9ae73c6f53dc7a474420a8f5add96bc
BLAKE2b-256 f42574f03589981b6b1c526feb6ab892fa1b402861912b0ad47ce3ed83b1b623

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.14.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3fcfc7b2b368c55a632b6dc201f63c1ece1f06512101b417bab6c397dc43ee33
MD5 033f9ac2aba44fcec66b3642030e38b5
BLAKE2b-256 c387c31db145397113808f33e15960ba562cd6aab2f77eae64e9fe5029336ee1

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.14.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.14.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.14.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ddbe42215b53fbcd06e6cab80038b18772886b100e16f4b28ddbdcb3113d5c85
MD5 010be5688f2df91bef49f23c096fb320
BLAKE2b-256 ae3c332d64a95626b8e08a575054cb381c736aa4483c3086563bd6b3b3d598d4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.14.0-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 cddeef4f5c5fed327ddd7f76f2da9aec24ea37050ec3a503a6fb05d7df770fe5
MD5 82a230bc264b46dafd4285ce5e4f16d6
BLAKE2b-256 7ecaf1de6ac245d76626031aa62a018ccc91a9fa0d4df1baef1eb23fa80b59f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.14.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2658d63ef6682f63b7c941ca12295dec6470b969b778e6c88e5931321204d2f6
MD5 6e4060fd5f392b1b40c72881657958d5
BLAKE2b-256 7cea254ec38d5b7b74b2da1c7b93d84dc561cdafb83c8935aa785805fa14ba06

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.14.0-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 b8c2fbdea9a6ccad3e4771f7eee53fda8cf780d18b7c36b814a535a781b05099
MD5 741dcc4e6c00b3cbcd278ba3e8fc0341
BLAKE2b-256 9a1b96ef9b46bb27b6dcbd768823ac6391fdc9b0bf9dafc3d06ad9c89df3757f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.14.0-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 396163751e9a871e5de6d2f984524dedbef8caa2920671c94441cb42089a0767
MD5 d35ad281d2d314995f59880a04388805
BLAKE2b-256 d4b3d46bf49a77aa31da6b5a38318aa9575d337f5752c0c3b6d25bac5f5b9519

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.14.0-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f8bf708c991af95d1bf16a67f19c2d227f0b386b0e5c2baa48043d3aae345dd9
MD5 7cdc8adf675820ef386d0a0257b65dc3
BLAKE2b-256 8dff856d5073e6fa0a708b0497b8c114e1113b22b069e21632870db73fef9b9e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.14.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 16b18d652c1190edfd45dd550712bfa54bcdac36c67ae956e6721d8c1b8a2eda
MD5 08b28e4b06a0ef8fee0b42634e75048c
BLAKE2b-256 905b80380bed8fa4f69c7993719ac89fb1e5eaeccb03acdf1ed3de6e972cecc0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.14.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 bf74fa9e23eaea6fa353ffb77fab1e5a146e84e47eaae74906ca4b6dbce2d220
MD5 27ae6c87a0a02232c2b9c560560029b4
BLAKE2b-256 b5e0409a1ed6af72f0bea0f40a30e3e3deb5051fe8485fc1681f418922cc34c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.14.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d793f722cfe53b7c93987c8df71afcf7de9a218969e0602eb893c0530fc9766a
MD5 a6263305e662718a473590998f2e2485
BLAKE2b-256 e00cc69102689604e4c340ef579f58f81e37b4213856dd2f4bd0ed4a2ce16429

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.14.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2c74392509766b7dcc8f0db1600f8caf0839d65a017a2954bf65473f2267bd32
MD5 e29fb9299ff426c2996bd9a62d700e77
BLAKE2b-256 e146ef75c7e6467716764357efd22031d67877dce95eb84911b8aa35039e3324

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.14.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c8f3a8993675b23d69e8f9f1b2e694dc1b4dde8525663cc4db1caeaea3816c88
MD5 3b602c78be5b1a230850c475c3a728f5
BLAKE2b-256 231cd7f8a95ab2ddfd76b221fddb2888aadd05aa2c3962e20fa80caacda8797c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.14.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3d4e2dad055699e13c7db2267236ae344126d9e472c79219e453a319d72c91b0
MD5 f1ca7dabbbafb9179f197ddc66b25718
BLAKE2b-256 5b8e75358df04efcea8297248c1db8a4ee0e847fff655e0bc2399f58a0e43714

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.14.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.14.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.14.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d32f0ecbbdaaac77cce688913b225b1518063fea02085f9160624b3a8b2f5537
MD5 52a37eb7293e6848097572aa5fa73992
BLAKE2b-256 beb94e2d1a5845a05011952301093dc7c77146152af2cc298a8445a5a46b89fa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.14.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 d4d0d1e0e87e2677adce1a2a1a27c9a85337119e0d24406782e640f6492b6ca0
MD5 7e88074db6a725f385a21947eabd85f8
BLAKE2b-256 28d3b8438bcb4cc6d333a5be10c3710183bf35a287d2df93347fbc290ba37957

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.14.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d273ad3162c1d94193d48f088b9b80d9125eea3e9671800dde095df23c83c7e3
MD5 e739448dc4875f2050da31ee4da5cf89
BLAKE2b-256 d11b25e1ffde0f7c04af65e6d5d1fa42233bae1d136eb2fa77d23798174bba0d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.14.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 e0d306e78076e907a7904b8581efb18265005a3989a9ba257c4b844d7d0beab8
MD5 76ca47478a3b9067c406fbef86134253
BLAKE2b-256 b843e27b65e423f2b33c879c7e655c38ffedee756fa07b8164499befe7bfd084

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.14.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9d810a84ac657ff293d3bd6cc7d7c6f2b364872582f37d6f30a04f0ed098746e
MD5 2b52268cb460cfab52f028e06aaef662
BLAKE2b-256 057636066232596c7e6511f6db8754f6c0961fb09fb5049d505d7330f5d5cbc9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.14.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 2ddec9ac6c61f9398f0f6d308a043fe38fdb969ed2f8c1b89b7a942573a6f9c3
MD5 fd1b36df67bb7b43b2970031d2a198e0
BLAKE2b-256 3cda139286ba01d0d4c44b27589b68c42c15c30083b05b4ccebc166038f639f8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.14.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 89dc3d1ae0bec2a28ba80320d4de0c87efd54da5e253258ca6c3cf6b6ca01bfb
MD5 c36e6224876eb41e740b68c02f6dab3a
BLAKE2b-256 9bb330f2115ef990d54c3407b0e71173eea5525f67bdf02d87a9ae2b0d04897f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.14.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 d645e57d15380d88bbdff28fc311dd741d6da76f974e8d5654e8f3d94e466e2a
MD5 22eb2b867f32aa8562ea7b24f3251f06
BLAKE2b-256 6b38266b93415da813015aef6cfa0c982d1c895da49f9e7ea10ba30afb401120

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.14.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2250a37d691cac182a5d1935162f936ac07948690c77dc42bb16d4692b54fc33
MD5 194c97482fab1d3cd40d1cadc426c848
BLAKE2b-256 6e9e983000b6abf3ea889d78801c58fedec923376d8283a46e66577328460b55

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.14.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 32f13712b9c13577cee6d79087d908157f9006e29db04ea2e782b2733d69c29c
MD5 6d011e40725abbd2cf150f34661b47d9
BLAKE2b-256 caae29eda7b7a2eb7c2ce835c7a7bd4429209b2129b5f63840b9a5a4e5594612

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.14.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 50d697d972244f829a8bb5ebdd4e4e177f3e036c899e7f8f2f9258cf84be9484
MD5 2c468bf8a564a6621121610385f04224
BLAKE2b-256 60f4b112864ab97b151564c8bfe8cf52d374c54103e257bbd5acbadc60f9c439

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.14.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7794d36500f9dd579c1a8ce55f79058e841d5f187db3c1e582fd43126d705dfb
MD5 a62ce71c5a057a570fcf80cd84d8705b
BLAKE2b-256 da399297e4d8db8b85c0015805942477f2fc14535b10e53b16843c9f78557e0c

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.14.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.14.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.14.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cc315bbef592c7eb39eca42a48b27f0194d1ef5b1ddccd48c35a017700ca5924
MD5 bccaca8e51eaf119bfc4392ec3c769ec
BLAKE2b-256 071b8b34afcc49db1060ba259ea0584b44d9552c76711b828b8581fe3563f9ac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.14.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 b5035026140d8f6258dfdfe0847ecd05cf2e1c1101e99269bec7f00c5ffdb487
MD5 bb2baf1e8f5ce415bd85d91be99bd018
BLAKE2b-256 00228a17b25f87120888a3741498be1e71976459b58282df838e05d7d6878ca2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.14.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 77bbffd61d3d768296c9c97a48feb58450d1506312f9b37186ed6a5751cd6130
MD5 2b7d529c29d05b1be99773488c0c67e5
BLAKE2b-256 76df033820fcc09f4e14c87a644f2b7fe9f2f9cc835b67c48cfe96af97af9895

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.14.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 f2a04fef227b40ff949714212a80c51c89adcad114bf77e8842bd240a16db4b7
MD5 ba087d1aa3e1371718ca91642b391784
BLAKE2b-256 d8e63f6b0830d0d841aecc2413e34751374bca159a628f305c40823dcf932d39

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.14.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8cc2220c465da9aabda51206344b4502da609bcb24e600148c4e2536d2a7210b
MD5 265f26517d4f6cef73243549702ed5af
BLAKE2b-256 79b3e1d5842d5895896ece0b72d5d8819047c3414786a6f09967bdb48e6c4519

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.14.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 058c3598ad75a3482d98a66e443ca25e0184c322f468ab6291697bca14cf8417
MD5 a8554dd15c18c3855e4226e6504a624b
BLAKE2b-256 956e6d5dd2b53454ddceb8e6bf156007bca3153c4b39f2da483b9f83059f86e7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.14.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7e1701430966d96a88868f031eab44a98b83855580e2c71a7aeebdbcb8f76b25
MD5 e7f84139c11320fa842f078a2c0620b3
BLAKE2b-256 ab0bcf6b66f6565f1b80275f3bf2531447e3bcfa4e0382c96f6df6e8a2bce70c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.14.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 cfda7af25696335e664cba2a883e36327c457edd3b9b47de7af9980ac9a242a2
MD5 09f776fe324a52dc1fb4ac3324f0e581
BLAKE2b-256 f579a4db6e85a0342f5408ab9cf774bc170a77dbc3fb2a9dea85962a00cac7bb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.14.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1d4223e38cf4fc34477e9ef940c7483bf96604f565f2342e2fa00cfb7953b6c4
MD5 a0c9f580b88de60909706e8c141259d2
BLAKE2b-256 c837e35f33a32c913dc6a40ca298e0b4b7ee0d38d4e0dde292e32ea370b90cc2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.14.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a020cfbf3de397b08aa74412728712b5b77fdffbc273883a424e1586fa72aae3
MD5 cec2545c0ba9137aa95114f834051070
BLAKE2b-256 bf9a49bad2baafe2be0ed400a54e6a5728a60a81fd977ec8d0320151cbddacaf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.14.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 72bd573eeb0433ff2ae7fd30629bbc000da1f09b3ac3fe0eea51bf6900ee4708
MD5 61a808195d8578e7f7eff5c5253e4273
BLAKE2b-256 73583e2a234540c4c2c5ebcc1fd5c6480b93a234bfcd761b6191186b1fad3ba6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.14.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 04456b248ad2696be5e050c7802421be1afb5b9bc4efbb047fc0fe5e577dff46
MD5 b9b332a6e244df279e42e6fc19dfc7ea
BLAKE2b-256 b726b5ffdca837556febd282a2c11f31bef38c01778fc0edccfefdd8924418e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.14.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.14.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.14.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e042f235a367a42fdb3baa915b42bab336dc4d3e7eb42cdd5b3b60ec3b1a8dd3
MD5 3b482a4b12c3ca1057aa1b9c0c6b1b48
BLAKE2b-256 8fe550b4702a4f09236b3de8b5f5aa687eb2826f00eabc768d1dd1ce1ba5c982

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.14.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 ad62d10a2e30f529b311174303276b5ad581b49c3cc6ee53665683009b8c9c9a
MD5 085a6830518e3a1f16f26960f0fc5a49
BLAKE2b-256 eaf44e687aa31fc1f30dcc90016f9f676acb39d64184aaed830201c91e63b51c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.14.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 adba9af2881b4cf260c403dd6c00dc57a9a4cfd9b419405323422ad9c4c307e4
MD5 b6602aa9a23fe338265dc58657bfb1bd
BLAKE2b-256 b5a46573965ebb98749d00d9e6c15f8b10c266c438565d659f05b60985385a18

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.14.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 705d212d57f3b327ebaf8385673e7ab015d1816396d4945b611b0e6f37dc881b
MD5 f6cb4244318c42868c4cbf2f919ab43d
BLAKE2b-256 fad2ddb305c26c2469fc9e103de7a7e3255bb8aa806e0d0514895fbef588fb92

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.14.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1d73681985d06a3806754d4ee06738002790642aba032fedf5c1554ba7c25784
MD5 2ebf5a5ecc2a27b86d61c15bfb159a4c
BLAKE2b-256 f0e65997159139ffd3c2a0709de6a2f684f4eecd958b12b1e59fd0a25e77f0e9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.14.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 eb0625a346b0ac0e6550a7e246dc1f7b91b98de8d1659bb3666c2d2aa39c53c6
MD5 64042962eaae41a5337391ccec7235d6
BLAKE2b-256 a944766bea251280aacf1912f3f48dff1d25f8e03a2047b7aee05db977b457df

See more details on using hashes here.

Provenance

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