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.13.3.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.13.3-cp314-cp314t-win_amd64.whl (608.6 kB view details)

Uploaded CPython 3.14tWindows x86-64

aioesphomeapi-44.13.3-cp314-cp314t-win32.whl (535.0 kB view details)

Uploaded CPython 3.14tWindows x86

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.13.3-cp314-cp314t-musllinux_1_2_aarch64.whl (645.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

aioesphomeapi-44.13.3-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.13.3-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.13.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (638.3 kB view details)

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

aioesphomeapi-44.13.3-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.13.3-cp314-cp314t-macosx_11_0_arm64.whl (570.4 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14tmacOS 10.15+ x86-64

aioesphomeapi-44.13.3-cp314-cp314-win_amd64.whl (518.8 kB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

aioesphomeapi-44.13.3-cp314-cp314-musllinux_1_2_x86_64.whl (642.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ i686

aioesphomeapi-44.13.3-cp314-cp314-musllinux_1_2_armv7l.whl (589.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.13.3-cp314-cp314-musllinux_1_2_aarch64.whl (622.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

aioesphomeapi-44.13.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (636.3 kB view details)

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

aioesphomeapi-44.13.3-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.13.3-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.13.3-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.13.3-cp314-cp314-macosx_11_0_arm64.whl (530.1 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

aioesphomeapi-44.13.3-cp314-cp314-macosx_10_15_x86_64.whl (542.3 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

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

Uploaded CPython 3.13tWindows x86-64

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

Uploaded CPython 3.13tWindows x86

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

aioesphomeapi-44.13.3-cp313-cp313t-musllinux_1_2_i686.whl (674.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

aioesphomeapi-44.13.3-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (647.3 kB view details)

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

aioesphomeapi-44.13.3-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.13.3-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.13.3-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (662.4 kB view details)

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

aioesphomeapi-44.13.3-cp313-cp313t-macosx_11_0_arm64.whl (568.6 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

aioesphomeapi-44.13.3-cp313-cp313t-macosx_10_13_x86_64.whl (573.3 kB view details)

Uploaded CPython 3.13tmacOS 10.13+ x86-64

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

Uploaded CPython 3.13Windows x86-64

aioesphomeapi-44.13.3-cp313-cp313-win32.whl (453.6 kB view details)

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aioesphomeapi-44.13.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (633.2 kB view details)

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

aioesphomeapi-44.13.3-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (590.5 kB view details)

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

aioesphomeapi-44.13.3-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.13.3-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.13.3-cp313-cp313-macosx_11_0_arm64.whl (525.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aioesphomeapi-44.13.3-cp313-cp313-macosx_10_13_x86_64.whl (539.4 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aioesphomeapi-44.13.3-cp312-cp312-win_amd64.whl (511.9 kB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

aioesphomeapi-44.13.3-cp312-cp312-musllinux_1_2_armv7l.whl (599.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aioesphomeapi-44.13.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (639.0 kB view details)

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

aioesphomeapi-44.13.3-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (596.1 kB view details)

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

aioesphomeapi-44.13.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (614.4 kB view details)

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

aioesphomeapi-44.13.3-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.13.3-cp312-cp312-macosx_11_0_arm64.whl (530.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aioesphomeapi-44.13.3-cp312-cp312-macosx_10_13_x86_64.whl (545.3 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

aioesphomeapi-44.13.3-cp311-cp311-musllinux_1_2_x86_64.whl (658.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

aioesphomeapi-44.13.3-cp311-cp311-musllinux_1_2_armv7l.whl (606.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aioesphomeapi-44.13.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (651.2 kB view details)

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

aioesphomeapi-44.13.3-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (605.4 kB view details)

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

aioesphomeapi-44.13.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (631.8 kB view details)

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

aioesphomeapi-44.13.3-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (679.8 kB view details)

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

aioesphomeapi-44.13.3-cp311-cp311-macosx_11_0_arm64.whl (530.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aioesphomeapi-44.13.3-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.13.3.tar.gz.

File metadata

  • Download URL: aioesphomeapi-44.13.3.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.13.3.tar.gz
Algorithm Hash digest
SHA256 44a76abc64e110616aefb9a0556c89937643ce8e7f5a7f49a2498d369bcc191f
MD5 14ff7d1f43c1d457b76dff14d502a097
BLAKE2b-256 c22d788c2832f37bc014f1d3d58007e4ff7573b86e59b23c84e22e1fba7879a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.3-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 8614f397061e8d088ccea53a39faa7e5363d4732940d3bc8fa06381900a09fa2
MD5 e305b1ad6168a2644f42b18824feaa93
BLAKE2b-256 debefc993e34b06c80f0218a5c1b5f6a89f55b5500491698e52f9c1a49a0deb6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.3-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 fd3f06b72500ede1ad566b7d4c8b98d0200e73d4d144263a03f679f8833b89a6
MD5 022a69b1144cb02355f06453cc135ecd
BLAKE2b-256 89813fec2ab9dcab028c22d3f438726d426cb31cc09bc8b6b9bf99ebd20098c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.3-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 19ccd6d7be0ea5a5e6f99e5ea34d85540f01834f2cfa66ace9de28fbd9fef970
MD5 7cec748b360b8175a1a37902aa91aca9
BLAKE2b-256 d092fc7e78a7f74986987ff562d83a6bf0de99f69b99739d6e127c24118d0ffc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.3-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0c0d5d6f6f30bdb9db24ab83794dd70abbb0198938bf18753cad199196682686
MD5 9e3414726d89c00deabe1f1b1e80aa0d
BLAKE2b-256 07e1cea3fb5855d5050c207f78ef6dedcc3d9241a935a4a857a449196ef7ca35

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.3-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0eca7eaa4e233042406fbd09edb0b31385eb1bf32d420a602363f82b0705baad
MD5 58bd2451b256bbc5c724ef2fd13cfc4f
BLAKE2b-256 074997fe893de9dce5de2e8e71f08405a2e420e3ffd45c49f7d6541ea606c5f8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.3-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 04477a706e40e6f39e1aa0d5d8dd06917f493864aaa3c7d0ab60cf44137360c0
MD5 d67fdbb12d7ea737bff9cb9b1bc2b128
BLAKE2b-256 e67a4c2c65d78da5e79fbd872aaff67d6008facbe4aa79e26d847a89ccce1828

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.13.3-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.13.3-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.13.3-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 be037d39ff0c8c5b5873c0ed19e96e52e23d916032b9a588fd8f4ab56387b3b6
MD5 6f706a875cbda43af41b32d4ba53d9b7
BLAKE2b-256 ede39870fbcf9bea1a21abfea696a76dad410135ca01eea63642f0178d6af292

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.3-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 d40f0c4d59eca8bb7b11a968242e66bd41c7c43865455081bf70ba72bfd946d9
MD5 e35e3347a050ce444e8e2a21f5f45f8b
BLAKE2b-256 dbf5d8769a940aa966033b3f94d7e58acf1c835906b3c5203609b95f5c374d5e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b413222c06c96cdda91cc9b7363899878405dc0c5e8d1e58f62f125caefdf5f4
MD5 2344995edb1bd70641a17d2398e6871e
BLAKE2b-256 89044b150dcdecded0036a957efa5ad04f88e2bdbd26bf0b61061d811fc31bf1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.3-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 55b341a24032bd88c4b8e43a378c82ac4a9f8e4ccc182db112f5b54b2da3988b
MD5 b493e9fb3e9da58553b18234c8b25c16
BLAKE2b-256 6b45d0716353c8b998d517b57f5f23eaa8793e0ac2b7a4ff01941a85bf26af0f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.3-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e2108ebccf36e0a80c299e1a5b75de866eab5bff1830c938dcd9a9938b0568e8
MD5 f9895264df13b86f2231b4e56f66b7c7
BLAKE2b-256 cf6b6403c86ec8e0b1848c96ac441be822e6b850bc2920d72cd5851057f2cd72

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.3-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 7221ca20303c51f56f5c91ad9523cde7af2a0e8d9d780268b11486a56b3ddb8e
MD5 7cfed9de4566f05dfc3f73b85da07fc8
BLAKE2b-256 3acd8f46e7e371f7cdbb631b5f89e6b621b5c9b383e411df2abf14adfbddadc4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 94705b295e1699c2c413f412d6a8182425dd938eb8fcff504953c3b576221ca5
MD5 87115dad735c6309e987728a712a941e
BLAKE2b-256 f37e928d31be770c2b177089fdf8e48e111361b39c4f138b153990c67e1f8874

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.3-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 262bb62094a8c1a7e74966fb4fa51ceb66026f96ab9285d8d33d17865768fb46
MD5 485acf339732ea57551b0b4e6c8cf8b1
BLAKE2b-256 1e1c20c571f823c5c33ddfe6d472892140309ee58f2e4465b5b971e3da943911

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.3-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dba2a3b112056e8af4abaa555c07ef38743c3f9ab748e409a60a0c690d7a422d
MD5 956d30c654aacb271f7deae75706c7e0
BLAKE2b-256 05192bd95c31fed42c066280835536c19997ddb1519e330a0c5234776673af8d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.3-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3721ddf6b75406752db6387149c1f21a64b9b32ccc055be92188bfe9d6898ebb
MD5 23b8f0308e5f65b3b30c43eb9d489c3c
BLAKE2b-256 3ae9cbd96ced63082b87d75a11bc30f897044d6be6b6dd4871d295e1577dcfb2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.3-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5373eb204d535bfb329d58457b65f332ab4de81ea491faf5d1869df69846e1e8
MD5 6033502dca9d9cebb9fbb1966fdc71ea
BLAKE2b-256 2834cad19ac8ed24f969dfe1ead30da5dff7a9274319a52f24d994b3f7b46f94

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.3-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2dc7475e2e3f11833ba17dc63d5e7ad782b43b751024103e17e75a73cdde245b
MD5 4c0ea5a21c34e0697f853843858785af
BLAKE2b-256 237642488c3362cf03ac41a5eaf14069477797ebe8a9abd9d440b13330b3add5

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.13.3-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.13.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.13.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9058a3521d1240c12b40ebae872c72199f0b381b9954a6f7f088ad5a30c722c7
MD5 106875d462b25c3c1866241d1a5f977f
BLAKE2b-256 e50c252eea1029f0f60871b828ca9e4eabb648930ba350485207dff6f352b093

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.3-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 f1ea339a98fac71312dda8525bac8a1a9bd5b49088c811cbd4122607dd3b315b
MD5 8c1bd5abd6def34b3dea046bbbf6e00a
BLAKE2b-256 85a5ca023f0ec334f3d42cae3c320b3c3472d3e5dcb174b3b6e3bf1519c2c4c2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6970c1a1d9070d99aeb79aec505dce22da2198ff5ac9eb7c391292b0f2328548
MD5 3980ed19c64e82d3d38f7ef3712daa33
BLAKE2b-256 2dc5f69d6fc95e0373ad24ca15653c73e333dc6372d21c75a354aab77e803785

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.3-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 328b502f2e1e4b7031e6d05afb230487c9763de04b33d96b1daaecba26a13792
MD5 2c25b5e57a2ca15bb649b7dca4f1db20
BLAKE2b-256 88b9422ea0c47f77a492827103d65ee1edf3f8097cc0ff551892bfe25373cccb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cef7d928aa4dd93d55a14290d283a7c22d8a938382030ae1e3bd985a8984ada3
MD5 a6b4c7ec391b8368c01c261365c3e329
BLAKE2b-256 2524738c802b269f841ad708035ae0de90165cbb4694faefd842c2c32e300c99

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.3-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 8990d607494c107fef9a74190262fbcf0b0b5102494977d8fbaf10234ec1e0a6
MD5 f310c10f6684bc01800fbf12bb5a9220
BLAKE2b-256 8a8c112cbfeee15e44120a496eddf34dad8f65a375ad0ff52bb5b953ae2a7595

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.3-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 0b56b68687a041dc77814ea4a0eb1a5efd46c3a414d91b95ad79db28cc2033dc
MD5 cc31e0937091d9dd90b9ff678612397c
BLAKE2b-256 ce7d6d65418914062da81267b6ada87657139ec6122e9a4e019927fbd9c6c44d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.3-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 5d506230a1a51368565c3b3c131dcc48c7d20ec3907828fa72f17fe2781682ce
MD5 ecaa95246b88522038b181eae4478a80
BLAKE2b-256 688329b75e954f01fa2b9e2a4708ea69302d9b4cb5b380e26f9aa4ef451410be

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.3-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c98448398e2207a0ba5468b736af8ecc8ba7e7c9a3435b4cf432a52501703b4e
MD5 4e59ef19e05f8cbfb838557970bfe2f3
BLAKE2b-256 caae9c8ebca3d43e7740bb5867d8ecd9a652b88e42de06f959822c47f28f4d64

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.3-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 dd44ed2059ab99ed91b4caff8bbe3c1e06972a6ddf18816c811e99120ace985c
MD5 1ccf10ea7b510be9fd8b4390a9e487d9
BLAKE2b-256 c703db861af8b8390cbea82bf5963bd1ba8572f304edaa2a787aa958d5d01ace

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.3-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 91bff04ce1fb23056c9f9eb2db75f9142c2b68976571a2de0748d13931614221
MD5 60039c7c4e35bc0cc2468dea444186f1
BLAKE2b-256 901c61fb5e4e8d1e676d4268ab12b01bae78dd237bdd8d835f74866dba153741

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.3-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2f23c823ccb93da39b8f539174c6e9baf07f0d423156d96131559f5e479d4efc
MD5 d65a900eddcd406c93d9e3c1c595a2d7
BLAKE2b-256 3a5895ad6a081635259cc8ce71456cbcdb184bf388924fd3d25d51990cf5c133

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.3-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8d4f9aebc462c8d9a280d0e5dcb56de5ff1db68ca7918580eb9541d0de1496ce
MD5 a665c3e2a8627f6a032eeca071219c5d
BLAKE2b-256 99f904d1f6a46b9c9b1497086807de64be1d55588ab19d201eeec814a07585fd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.3-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 4ae950fc54d9336f16f1ff5bca76adb6fd7c2aa679efd32ae7842d105271297c
MD5 031d50a4cafe1392e8e38466c4bd94d3
BLAKE2b-256 cb33c7d09865df8aea74eb5d9a1e862e08409c5adb787787a9ee0322f42a793f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.3-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f1b9ab1aa25ee8e209ef6a863517b381f1040ae5044bad4efb32767c0584af62
MD5 4d48725f8fee9bcacdc937a8998728dc
BLAKE2b-256 31a41fcefaf1fbf3b21757227707217a1e0d5b52e5fb423c5a07f64fa2c7ba67

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.3-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 b921716dd212eec72ce76af16f65ee3f56ffbfcd1404eac457e52dc85b55a609
MD5 c67266fab0793da51a076d9bc7a3d5e2
BLAKE2b-256 26ad9c577aabf6dd734d429cf6478611c6aa7bdede45f2b12d434c3a20910255

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.3-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 06c50fe3c96d75845d2c1da918e70f65205745e00acfc92d1d2b72a126df9527
MD5 689a526277c69b34dbb585f949610e09
BLAKE2b-256 186ff77dd6061ac3402b7b404b65a04f2b382541a9fa812defa49e326bda0333

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.3-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 346e344e6ae5edfbdc60f3f80c7f53b1c4e35cc837f011045e14d5c3d9082084
MD5 b3e470a388f0a8fb24f06fe39c1b09ad
BLAKE2b-256 a40fd55c4f7dd7a834a99783bf09033f08b022bbdffadc337a8ac9b3f4d8c7dc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 0ac3763a27ee51e3d8ff6b8bc5f2fe19078782f4f65bf5a7274e5482e2c3315b
MD5 0cbaa6be9b9c4e7a46fb37139cc8b059
BLAKE2b-256 75247abad70a2727ba0df25b7515c364d5d74fc91fdd9770f65cba947cd836bd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.3-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 4e3beb54fec962ed4d290f8cbd72f69f47c2edab95b3a4869ea6840adb53020f
MD5 f9edc235471d433cdaa7abde196b7995
BLAKE2b-256 dc7c4b44219b901baef742a45fcd6103f0a7d22d8286f6bdefb4611812cffd53

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 109fbd1d772702f2de8975b792e5448d1eb76c3e8ba8653a902706a545f2a823
MD5 e80b54ec8635234807ec7933036a1935
BLAKE2b-256 705c321dd9d26c4cfdc4c5b80648f32b4c3a9681131410d9e0fba5026dfd226f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.3-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8ef189bc313c11a8ddadd23e0599b7f524aee309a83eac4937228771b2d083ff
MD5 95b02c25d36547a683a73d20c7340be3
BLAKE2b-256 74da4c7910799f8b20b4d57ca04302f8069ca2a0ffeb54812160b888b922d6f9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.3-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bcfc7d87c317e8ae6a2345b094868ef549abd59496f2e6e7fde80b5e6473f634
MD5 3daaebeafdb152ee67f46c675c156003
BLAKE2b-256 e9f2d6aeeb2e3c15d197cb842a5ce481177dde96124302f82f54f672ffc9e37a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bf25b5afbbfbb25bf53c9e10346943e1c8c49514bb035acf1d95dcb138294e1d
MD5 a2431bdd8a4b3db6cff30df9529c2f60
BLAKE2b-256 627417db6a42070cb35e53c709123cf1d8aa9c9d3ecc938bd24de21f3be5bca5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6af2c46f1f31bc424920d0a7973e62a523025a3cd08fb9160899a91b090c8cb5
MD5 9c057e70c032f290ab10feecb6bdc566
BLAKE2b-256 13e02f464db0dde7276cd1d3cd2079b3087eba6618d673278d2ec432695b336b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.3-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 73af1767f1c33636d0915f0fd5416d7f73476553dbc77a69b40d0709043cc5d9
MD5 75201c0e26261f3ede33d4ec59ab4ce8
BLAKE2b-256 a28e7e10b52ff46d4b52897b7d46fe17fb3789f7e64152b4f5bdf502ac906bde

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c6769dc75d0895be10f41ee559e76a82c558b1bb2b9e334c65fc8204c53eeafe
MD5 30da096d30bb12cb628af695edbae1f5
BLAKE2b-256 968a1cdc2697ac355b2607dcf55c797e12661dc12aa16f9de9e5699f49fc4106

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.3-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 1c966367daa4ebd54ff85eb901e4c3a3206baa2b9cd8093d6e2d83ad9ef4d0ad
MD5 2dba26e1ba95965196f90e8afd95011f
BLAKE2b-256 92bf7aac9ab9b7b97bed43486413cdc6d2d44df9cd6e5d64ce0d418fada72279

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 12ccae3c6e37797f65ea1f2e0896990a8da8d91972f292f55ce51f91150f3eee
MD5 777f7f8b6d0eb178de6cae7f0b52d50d
BLAKE2b-256 ec4f73df19401ea818ed7fb7dc368ec15fbdb78b5492d21a5ab31641b9d57775

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.3-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 0df375e95a88f82e6bcd406d85d5bf3e4facc76385f1306bf620877142255d0e
MD5 05dd187ac7cd64465a0cdb0e7732797c
BLAKE2b-256 f5c36ed33ed86fa07a9d0bc2d71f93590e58088f620539009366e174b4dd07c9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 fd83f866f8125d9ff5a0407cefb876473936e9a861c309b56243ac093f0009a5
MD5 7a2afd619aa2c89aebaa95a52f2514f3
BLAKE2b-256 2efac2185368904410d3623f2fb1d92e03434acdf3c4100dec8d9489fb68b691

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 62d6dc77929e6dc150c37d2626ad553c46c927af9e7fecb8351d60c50e3a3cc2
MD5 a1d41a15f3e5eaea35cef414997545c9
BLAKE2b-256 05564abf1785d47fba24893a233d7fe243c5f3df9623f4da38a97f416eac0281

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b83744038f5c8c43c6fde45c7c46f4a6ff4fd7a49dab969b07d12d17744dc839
MD5 a707cd1555cabf7d3217ec0985786b01
BLAKE2b-256 6f4759ba277823e0c4b2e6c8e35051a3fd3afb22ecb23c42cad04e8cd02b4194

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.3-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c5c7b1d84cc2aa6a6b2251bb1e95a8b25cd290fe398fbe4781be6b1408a35633
MD5 f1cdad3ec1cf8ed943d393558e088e83
BLAKE2b-256 fabf1afbec60a3ecdc64064c29f76abbfcde466a1afccf64cfa885310d065c06

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.3-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 363172f85790ea2f2bab3e529a92d6aaf80657c1b39dc247d5507d1bafcc7146
MD5 de877fc3493fd8e85383bf4a12f161e6
BLAKE2b-256 fb0127d8dd6a32251a4e70c3fe4b060db1482c7836a9deef851e6fbf78accd59

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6b32c18429d003d991a0ac070edd093818456c6dba985a9c0169f8c50d403d20
MD5 888ffbabcaf2229c8d83b530328bcdb4
BLAKE2b-256 4ce6423578fb24d321fe7709bfb0446f9988e43a41eb37a3c3981045235c80f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.13.3-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.13.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.13.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 05961c5d3eb3bc1a46c558982f8d452396bdca42a6bfbf10a3fc7c6fb0226e79
MD5 7113f54e863105d0143988e09dd77d3e
BLAKE2b-256 0d4c7f64b1571858326d03a3de79dd51f6d2579da207ae8b62a57453a26c28a1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.3-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 1e672d9c172a1abdf79c717aa073933f59db5427f5b54704aee68950fbd1ec26
MD5 4e7991a2744dae81aec9d7360064d666
BLAKE2b-256 529a63e0a70cb57726a69e665cdec8177375d30451f50dd978e03b02293fd0d8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6e879293cf808780778029c37969f9885098b7932a52645ccc8b2330cd5906ee
MD5 b1fb401eb71a1da2d7bf920e04975d41
BLAKE2b-256 b0e72e677ac655d6da8dfa234ad16a8802dd3d98987bbb365be82b12dff919ec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.3-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 973b2db4996914f617f3af231d1e7aacfd7a0776fc976c9747091442ae885cc7
MD5 5260e23c7185f83f9a385016bf439d09
BLAKE2b-256 8480d8162347b707a8fae5817559dc36a8fdfba38fcaaa761c018984c4ffa4d1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6cb5e83c9494c84c5b93f181fd00ba994a9bb7c568d5ec02131509e7acfd3cba
MD5 05d499d18ee3f5827088155f9e0f9cf9
BLAKE2b-256 d23bc3fcfcb79caf4d1e7cb1d117c53631c6104c89d78133e2eec7787cc6ea50

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.3-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 cd34da32db7472693dd64d6ac30313713e7d0fcbf0f30826ab42f1a6461f2d30
MD5 97e8ebcc93e78bbe16cad5fe3001e315
BLAKE2b-256 89c1c064caefeb2c801e7803b56dbf887b09c0c53eaab0289e01676170dfff31

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2625f654b3644f3306fa6e2dec09c0728223dc968defa243604d9031239841e4
MD5 4b49d7956dac8fd4dac82abb98b6a0eb
BLAKE2b-256 eb512bf59c497f99d0c23c37c67546da254e89bb68bbe3ad00278862587f7e87

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 20d2db9bff8150bacf34f2c43c72af178717201cba5f1c219f1b8f6bb93bf76a
MD5 ed16d70a61f514e9199d030292f05a62
BLAKE2b-256 a0096e452457bdef496e78127f3916de13be0df3507dbe9a04e6a6d378d58060

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 315886ee331577ae0040040a077e8039798298564a1ad3b4f2f87e15fcfdb7c4
MD5 aa6434cccadf3f20db2b86dfd279ad95
BLAKE2b-256 7c762304864fe3102110714b31d5767c5809e6fbb887dab60d774276978b790f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.3-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d71865aecdf579a9382a69670a793c151fcb322a3fe80a7a2ce568878df51400
MD5 9e5435898b5ad57243f0ae41dd2b39b6
BLAKE2b-256 9d3f70c8a4cb899b3a7813ae7cb15ca7150bd900753f53526f099f05ebeafeb1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.3-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b613771c14cd50a1f5b169f05a22b888cd59e09509cf7ee8c7570cf2325a8b78
MD5 32b42e827a29bb2019542955a83cd29e
BLAKE2b-256 a7a6c982dea5fddca1578c337d956201b8361bcc262a52cca7056f3616374e74

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fedcd1707c5a7c0e9ed69e6d6485b7f57b9252eff0d3a5de145e7ab89e09f0a8
MD5 99c15c90a3a1afa386e87c7788c2789d
BLAKE2b-256 759cef1a1bacd1b1c562fc6263d73d8494efe5edaa5de6b85de84d8c1f18a4b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.13.3-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.13.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.13.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ee17e1129bf186dd3beacb4abffe3cda8e77f07785966aca646fac136f99ffe0
MD5 6b40662bf1f18b24f398255823ad2164
BLAKE2b-256 5b3e516cc2e93a225f2d1f51382084731d98f6fd1e079cce19c62f44a58c8897

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.3-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 3ec1823f6cfd0b2e09b8fdd0d0b98f5dc91814dafc4cb472b388ad8fa5b171ec
MD5 84ce67b5f169062edfcf03a0bc21a93c
BLAKE2b-256 2555c7aa4d48eecb67bdea60bd61e12b04a85eda882c61505ba9f5a9000488ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5684721c680387d9bff1f4cc79b19f5267ee0a53c79bac0dc754bc2d580ac685
MD5 d427ad4eb2e49be08c3229e160d5f04c
BLAKE2b-256 cf7fcc3725c71af9446fdeeff59ed8b65b7fecf7c23b111cc446e0ddbfdd504a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.3-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 be3f129f90e3f3dc865f6351bc513b5b29695c7d60af5dee5003763a39a4303d
MD5 1430db7d746d02a02dc18f3cc3a5b374
BLAKE2b-256 7b75661393b27dcf22713a30fdb04fcfb6cfbd7244152d1ab025da85c8cfdbd9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 049d75fd300272214eb7aa67174a7512de55aebdb289227a5494cae865c00716
MD5 c41bc9595a9f22e569b38deab2997867
BLAKE2b-256 4524bfe9bc987f3085f810e8ecb71691fad7581dfe82790ce0432357101a5e7b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.3-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 18f12380839696965f9c7d280534ccab98e72d15b61c1338939db0b858fc0fae
MD5 d076cacb250e15bedfe0e2dead0d4863
BLAKE2b-256 6224a769c9d0c1ac0893d7060f1380b2492982fce60b1ad1b2e4a67f8558ca94

See more details on using hashes here.

Provenance

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