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.1.tar.gz (179.8 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

aioesphomeapi-44.13.1-cp314-cp314t-win_amd64.whl (605.7 kB view details)

Uploaded CPython 3.14tWindows x86-64

aioesphomeapi-44.13.1-cp314-cp314t-win32.whl (532.4 kB view details)

Uploaded CPython 3.14tWindows x86

aioesphomeapi-44.13.1-cp314-cp314t-musllinux_1_2_x86_64.whl (654.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

aioesphomeapi-44.13.1-cp314-cp314t-musllinux_1_2_i686.whl (673.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

aioesphomeapi-44.13.1-cp314-cp314t-musllinux_1_2_armv7l.whl (603.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.13.1-cp314-cp314t-musllinux_1_2_aarch64.whl (643.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

aioesphomeapi-44.13.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (646.4 kB view details)

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

aioesphomeapi-44.13.1-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (586.4 kB view details)

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

aioesphomeapi-44.13.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (636.0 kB view details)

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

aioesphomeapi-44.13.1-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (661.3 kB view details)

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

aioesphomeapi-44.13.1-cp314-cp314t-macosx_11_0_arm64.whl (567.4 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

aioesphomeapi-44.13.1-cp314-cp314t-macosx_10_15_x86_64.whl (572.6 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

aioesphomeapi-44.13.1-cp314-cp314-win_amd64.whl (516.1 kB view details)

Uploaded CPython 3.14Windows x86-64

aioesphomeapi-44.13.1-cp314-cp314-win32.whl (460.0 kB view details)

Uploaded CPython 3.14Windows x86

aioesphomeapi-44.13.1-cp314-cp314-musllinux_1_2_x86_64.whl (640.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

aioesphomeapi-44.13.1-cp314-cp314-musllinux_1_2_i686.whl (663.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

aioesphomeapi-44.13.1-cp314-cp314-musllinux_1_2_armv7l.whl (586.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.13.1-cp314-cp314-musllinux_1_2_aarch64.whl (620.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

aioesphomeapi-44.13.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (633.8 kB view details)

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

aioesphomeapi-44.13.1-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (581.8 kB view details)

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

aioesphomeapi-44.13.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (614.8 kB view details)

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

aioesphomeapi-44.13.1-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (654.4 kB view details)

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

aioesphomeapi-44.13.1-cp314-cp314-macosx_11_0_arm64.whl (527.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

aioesphomeapi-44.13.1-cp314-cp314-macosx_10_15_x86_64.whl (539.4 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

aioesphomeapi-44.13.1-cp313-cp313t-win_amd64.whl (576.4 kB view details)

Uploaded CPython 3.13tWindows x86-64

aioesphomeapi-44.13.1-cp313-cp313t-win32.whl (512.8 kB view details)

Uploaded CPython 3.13tWindows x86

aioesphomeapi-44.13.1-cp313-cp313t-musllinux_1_2_x86_64.whl (652.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

aioesphomeapi-44.13.1-cp313-cp313t-musllinux_1_2_i686.whl (672.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

aioesphomeapi-44.13.1-cp313-cp313t-musllinux_1_2_armv7l.whl (601.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.13.1-cp313-cp313t-musllinux_1_2_aarch64.whl (641.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

aioesphomeapi-44.13.1-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (644.4 kB view details)

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

aioesphomeapi-44.13.1-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (584.9 kB view details)

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

aioesphomeapi-44.13.1-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (634.6 kB view details)

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

aioesphomeapi-44.13.1-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (660.6 kB view details)

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

aioesphomeapi-44.13.1-cp313-cp313t-macosx_11_0_arm64.whl (565.7 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

aioesphomeapi-44.13.1-cp313-cp313t-macosx_10_13_x86_64.whl (570.6 kB view details)

Uploaded CPython 3.13tmacOS 10.13+ x86-64

aioesphomeapi-44.13.1-cp313-cp313-win_amd64.whl (506.6 kB view details)

Uploaded CPython 3.13Windows x86-64

aioesphomeapi-44.13.1-cp313-cp313-win32.whl (451.5 kB view details)

Uploaded CPython 3.13Windows x86

aioesphomeapi-44.13.1-cp313-cp313-musllinux_1_2_x86_64.whl (636.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

aioesphomeapi-44.13.1-cp313-cp313-musllinux_1_2_i686.whl (662.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

aioesphomeapi-44.13.1-cp313-cp313-musllinux_1_2_armv7l.whl (592.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.13.1-cp313-cp313-musllinux_1_2_aarch64.whl (612.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aioesphomeapi-44.13.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (630.4 kB view details)

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

aioesphomeapi-44.13.1-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (587.2 kB view details)

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

aioesphomeapi-44.13.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (606.4 kB view details)

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

aioesphomeapi-44.13.1-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (652.7 kB view details)

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

aioesphomeapi-44.13.1-cp313-cp313-macosx_11_0_arm64.whl (523.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aioesphomeapi-44.13.1-cp313-cp313-macosx_10_13_x86_64.whl (536.6 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aioesphomeapi-44.13.1-cp312-cp312-win_amd64.whl (509.1 kB view details)

Uploaded CPython 3.12Windows x86-64

aioesphomeapi-44.13.1-cp312-cp312-win32.whl (452.4 kB view details)

Uploaded CPython 3.12Windows x86

aioesphomeapi-44.13.1-cp312-cp312-musllinux_1_2_x86_64.whl (642.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

aioesphomeapi-44.13.1-cp312-cp312-musllinux_1_2_i686.whl (667.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

aioesphomeapi-44.13.1-cp312-cp312-musllinux_1_2_armv7l.whl (597.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.13.1-cp312-cp312-musllinux_1_2_aarch64.whl (617.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aioesphomeapi-44.13.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (636.7 kB view details)

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

aioesphomeapi-44.13.1-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (593.4 kB view details)

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

aioesphomeapi-44.13.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (612.4 kB view details)

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

aioesphomeapi-44.13.1-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (658.9 kB view details)

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

aioesphomeapi-44.13.1-cp312-cp312-macosx_11_0_arm64.whl (527.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aioesphomeapi-44.13.1-cp312-cp312-macosx_10_13_x86_64.whl (542.4 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aioesphomeapi-44.13.1-cp311-cp311-win_amd64.whl (510.9 kB view details)

Uploaded CPython 3.11Windows x86-64

aioesphomeapi-44.13.1-cp311-cp311-win32.whl (461.1 kB view details)

Uploaded CPython 3.11Windows x86

aioesphomeapi-44.13.1-cp311-cp311-musllinux_1_2_x86_64.whl (655.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

aioesphomeapi-44.13.1-cp311-cp311-musllinux_1_2_i686.whl (686.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

aioesphomeapi-44.13.1-cp311-cp311-musllinux_1_2_armv7l.whl (604.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.13.1-cp311-cp311-musllinux_1_2_aarch64.whl (634.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aioesphomeapi-44.13.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (648.3 kB view details)

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

aioesphomeapi-44.13.1-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (602.2 kB view details)

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

aioesphomeapi-44.13.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (629.1 kB view details)

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

aioesphomeapi-44.13.1-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (676.8 kB view details)

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

aioesphomeapi-44.13.1-cp311-cp311-macosx_11_0_arm64.whl (527.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aioesphomeapi-44.13.1-cp311-cp311-macosx_10_9_x86_64.whl (541.3 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for aioesphomeapi-44.13.1.tar.gz
Algorithm Hash digest
SHA256 70e9fe14c51ca196f3b2aa59631f843114f4badcf98d91795074b477e399181c
MD5 e9ff60ab2634df117fff8701c77d3eab
BLAKE2b-256 ee4cbf35d11028f79a2507c768f178c9db14cfad710a13bc2361ed55241c4e32

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 c38906f99347cedf6fe70fa79f06fcd94d8d9584cdfd3ba31d630a109b316290
MD5 a32495463e966dd2cb6d3aa9ee405b23
BLAKE2b-256 78098882ccc6525f796b6ce5167d3d0fb6387d32b8ff93f2f13a5505d2a5d504

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 a5e9f87f726f89398f30edb2814487591250057e7415e2cd8cdb32ab03dbe583
MD5 accb161e808fb51aa80ee88f056c7d87
BLAKE2b-256 db5c0a60a35e5081f1fe4a74473ad2693dcd31f4b5e35a9e944998ee6b6ab2d5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1195d2dfd20075562c8705b751d7db8bbb6615772c20226bbf00d397320d0a4a
MD5 885d52060f31a760d8b8a57c28836918
BLAKE2b-256 e72f3cc4f0e25ecca2692c27f2280ed56f973caa93337b6238b5e00bcc845c80

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.1-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fdced28a4ac0a12c128124021c4caa306ef75a4b14080dfeb33a3746ef66b9bc
MD5 00854f356443c88def9189ce78860656
BLAKE2b-256 6236a28f0b404707256aca1a066ef0cd9db90a5585ab366ccc739068e07808f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.1-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 78a47e2a213065413e2b87ec02b23196a4da727305158edda4176934d996474f
MD5 88cf1b4270fe9717707af98f607a75c9
BLAKE2b-256 da6d87d00107820baf381d48d825b37ad7c5015a94e101c9e45f972cf1e222de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f3a6d225aa5130e20d23f8823136a4ddaf5a116e6c2f24ef51a701ec90d50ac6
MD5 97ff9003bc076ad91294fa8997117577
BLAKE2b-256 ac442d0ee1e09b10b0d49d9f1ae3486d2f6db7d45280f7e0a79473e60b4a93d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.13.1-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.1-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.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 48e2d1e0103b425d444af0b932f0d791cb7b6aed67d768f30775a0721ca2633d
MD5 475a2a520399457b7018014a31a04849
BLAKE2b-256 881066e9e3a36b142e780faf16d46917e3bfcee2b755eaa584ec00c07d79c36c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.1-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 700c6a6254a0a9552483cc29fbbac6776edc261c62c963f13c330ae53a346172
MD5 375c5d166ed9ab7e6179dd4352180c40
BLAKE2b-256 41e6fe7dd93e9757ee0b4e338485576f1c610adced10f5e6f856b7226b83ee6c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c9cd9900728bba30d0f4ac98d486875ffc470b92b6cc5198f08608d5d0d8d48f
MD5 841a6f9d9957113b860d08a9f46d0187
BLAKE2b-256 a41a32d1ad51cdbc5fcc091ea6a294f06cf701dbb22d7eb61d8f95220de9fda2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.1-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 217c866287b896618a70f9b4d4c4d0961fddfca6bf92325020b3b96b99aca2db
MD5 e3b386a7e3ddc9222c551df258ea36d6
BLAKE2b-256 2c906a525b8fa4cd06704faf4cdc766b24814cb154a04c1c6b99f896359d6518

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c3104d51c26e684b411856ccb7d980f9e31c1d3bd4874cb6ecaff12729ecc36b
MD5 d6f6dd97d529a831bc623b9bf6fc9889
BLAKE2b-256 5f203aa5c2baf2cf70944185dd07fe4681da9d6df3b5d2cf65a9ed0ca56aed22

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.1-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 2c72fecdcb4ea987d68c6699cb4d67e0256eca8b279069acf5fe3ad5d6c1f2cb
MD5 64bbd1758180241af99f6860a3155451
BLAKE2b-256 999eb05a145a1f0b54b73f83a067e98db976ac27cbc47fe3824aefbe41e12bd9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 69306782cada4a58e583ae23c4097ba15acd3dda6dd4c2c9ee0586da8e960506
MD5 847da55335ba25fb549f1003154a9985
BLAKE2b-256 f160d5dc691b8258ffb3c741abab0e96154143ed0b38e5392f9af98c33b571c2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 16934da9aab647a08276b34bc18e46f6d1d206655db480097257ca94b39d7560
MD5 b0c577d87194f154fbdc55735e93c207
BLAKE2b-256 ec70d97f944986e082d15b6e156aeab4aa22d5e26fb57ba71f6527779b3294a0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5e5b2d3acf9411a8adc3c45bb370d6f05e847a665cf33c834cbdeb7336e7a807
MD5 46814beb695ff935f8b72a0a44c5e8d6
BLAKE2b-256 0e0c03386f5a17d43031364a55dee7c4ed7f4e490b87d5b4e90dcc8545d92aea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.1-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7f83e98753866690a70eb9de5d26de1d1419a0719f5b300f004e119bb6f6002c
MD5 229c9abb9d97b73848912b7ad2bea3ba
BLAKE2b-256 f653cf860f2c9dd56a98a46ee24a3c0b107331af33d9e7ae1e987f282db2120d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.1-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 78bbf8b325d145cd5280141f7fa9eb98dd222e40955fe53232650fbfaa093e83
MD5 5407bd99ad63b310e50529472ec8336e
BLAKE2b-256 ca2af92e7da3b07ff4b3c6f0a0d9bf41120a89ceb126965d23c5f7b7dcd44551

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 20c5adc8aa2f7a9e090c3e6c971c41fb24490385542110e7c20805db0ba50906
MD5 11e0d8518b550c25c356528bcbf5bb6a
BLAKE2b-256 c63505ca39e3b1045316f13735501fb2b6e1edb19c1ab94859cb2c0a909c1a82

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.13.1-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.1-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.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ef0cb419d34c4dbc86a6cc7caec972048f30a054081eb4f16177cf2c3968a404
MD5 073804d9480bc38bbbc45b95b8030f12
BLAKE2b-256 052a8fab093ebe92418fa8674516438d4454b041d2ce1b8b63041f49b4fbb941

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.1-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 812f2ce953c92956ae5d04baf2f8019f3089373c04cb63e31a267b852ff4ff8e
MD5 3897850500504ee94580fb1edc88ccb6
BLAKE2b-256 60f7c78b501bbf729dd13fba56a74e60eee01a4baaea46e2ded5f04bd3bdb736

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ec274e9e7ac3b1fd06c45ca3c36b16b4e46123b386f683c1aec9ea43d88d75f1
MD5 c0c0d7ec58527aa1c353b12f126cbf60
BLAKE2b-256 55cb5cd572ec089309ff0baf59b06323a5dc4307d03d621eb14f8f3472235c0f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.1-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 90d93b341899e64499cec5ed27ecc8b0c0c0002fd262406dde20a534ce6df691
MD5 b493fda11a00e9e64ed9d1d80760c881
BLAKE2b-256 52c6e04c706b84b62d19860c7c32574a8e07af4dca29ae66778d3b08a24fb653

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 911a1006384b21a38944cdb4d46e88da02f6bba55c11194f9b7f948416188e3a
MD5 2b519d9e173f6b35d39ca37dca6eec3f
BLAKE2b-256 09aa72f793d7618a342da3c0080a1cb1bc4dc611ae5e62659deac2899cee5043

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 9c299b2d7351cabd7a609144bf90412ec68900a96be02e00067a337c3ad0934b
MD5 03c645826bcdfe8b00c555e7a33c7faa
BLAKE2b-256 0f6992f02effee3bc32ce0557f46a2a9564b180c9c9da65d8e694bc374a58cb1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.1-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 649e6e8f2279f214ee0d54b272a4728385b1d0ae74db8882c63c44d286c71634
MD5 820029ce448c00d796fc2010ec335fe3
BLAKE2b-256 d84dc71ddfa3afafb9d59d5a1e742de3f2ffbf3c39afc3d30f367cf6843f0e02

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.1-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 3ab665f14aefe3b04824a7ca6345acf44e8a921e4e028f1ae90c39d5ec1268d6
MD5 651b1594f0ad98291e2eaccb6f561280
BLAKE2b-256 3a9ea487c96c8f46a823167ea5c36aeb1bf8135042003a2b1c1f1cd494b15466

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 24cb97654ad087bd96855b5cdabb352d393c2457e52ea2bae2c362b3d9e195f8
MD5 4f94cbf1dd29fcd27071c30cf3989f4e
BLAKE2b-256 cefe83496c712360936f343756e9388d768681e85da1ecb812564ac46f049dc5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.1-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8dcdf156c10a8bcacf5eb4bb44d8fe2180a9ddde6763af582a01fcec69413921
MD5 e47b5643e84342d42178cfce18ea7f25
BLAKE2b-256 94d655499ff85ab08728aa419676baafa9a1fac4df6a036a0e88b163dc57aca5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.1-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e3e333133f3262d5d717027a25510b68ccea50b3b18901a3f711ebfba97e052b
MD5 165ab6b9875a7eb061b7730ab3b3deb0
BLAKE2b-256 22c675d3d1c4d4510e696b43afd31eaf29f0b5ef1a819015b76394c3fc9166c2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 965f3980f2a3a17b047ee85804d7b029310965c09c0258ce74a49613de6cd961
MD5 499c42ee7e36f37fde53e477b3b7d9c9
BLAKE2b-256 7ce70a2ae9018d5b848610fe026047dca4fd889c75d83cfa92b1a2a5bc1a37a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.13.1-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.1-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.1-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a69055e717686940de4d5da47a2dde216da28db269a062d5908b6d068e1dd8a5
MD5 94f2f3b8d61d74c25b9bfa5edc8b7fe0
BLAKE2b-256 11578ad14ae856f042ff6ab8fa1f6577b76c24bcb3eccbfdc97c548b1ea31510

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.1-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 d8e79206da8ebfd629530b7f9849c27ed82662027769b1ef430ea3d82abe5309
MD5 63539cbef7d4eaf486f98e089b526e42
BLAKE2b-256 92c83ba2c84e6f0e07bee2d4228558d75616b66261914505a82ca8d4f3a8609b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.1-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 61247c1bebbe165149f1de09f4a87826358ebc96b4cceebb9eb16e450f749d87
MD5 0e0d785cea16208885c33360c7aaffa7
BLAKE2b-256 f8e8273e4b1ec59327a7bcb7eb37a5af5c0724e6310402bb5added55df095995

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.1-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 16d322f4377a99e1eeff8aca3d4f4d0bfe2eae745af3805db9620050017fd606
MD5 9bc3c3146fcc7faffe5e5e9ddf0f8761
BLAKE2b-256 a2fdf5f730eb001ee1e46f87fd685c97c2f6fda448e7dab269497788e89e48be

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.1-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9676afd480e511990138f34573792eb205482f69f4462a307a31a2986944c124
MD5 9d90d38617b291152bd2d81b165114d1
BLAKE2b-256 a0319fc666a8c281ab36094f6f4b80558fe23f7c1c8269b43acca987035c5f76

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.1-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a72426b98d2e8e074d1e9ff1ffcf09db0d4c291332e85f198a965fe2a86433b2
MD5 2f1d405149d31aa1e165015dcb3ddbe8
BLAKE2b-256 687ec62fc7fc5e13417991305fd030bec7499d2a8ed75040d49d955d45d4b468

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 12a95e6db7fc6f9968c97c67c57659226836492b2bb42e1220196bb829ddedd1
MD5 03faceb76cc750855ecefd4baa3c168b
BLAKE2b-256 9b5c71f221f29229cf7c7e0f86403761619f7698f52f7257c64ff0ad931e8110

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 aabb8d1b0d4a5fc5fd78e9f820793de03eb34dd0d2ecf37f0d0473425477bbbc
MD5 29a76b3f602392ecd1c7c63b2c19b4a9
BLAKE2b-256 08a818b7277f395a51fe5be00961a3dba0848a5d51b2a6480cd0cd2303123f78

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c4027c8c82b91338af922b45a80dc98c31b50177ec3b785a67b9a6eef6fd9716
MD5 253655b8aac5d75c2c3521ed2e625578
BLAKE2b-256 210c65d25ed66133a0aa0c7041bddb3966a0d6da07cc5632527a33bccc614817

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a6e05e39e267b04f02e58aea9e71498ab0f4858140534163dad1419c31338602
MD5 d6fe24d2e7fc6a33115fdca34a224e7b
BLAKE2b-256 6f27c3c5b2de11990fa9525935acb4090bb7df020b56fe1e52b44fa575ea3736

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ada96f2f639252a7ca537dced30f4e75c6b0708992c40d6539497016d6196523
MD5 b401f79cd56467d58086c62c181e5ada
BLAKE2b-256 2bc653ca43d41edf839f058b3ee8e4ce11e6d7ded02b6ab817f2458187347b0e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ddb115e20e063631d55be3afd5f6a7c423dd6cb03e87894e16be1d1867cd0c8c
MD5 33ddb1dc27a3fbbef12d3c52e80cd905
BLAKE2b-256 40509d7e25ef850e415db906d1faebb92b3802d2358727e9f2e01112e16528f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.13.1-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.1-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.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0a09c3546c23fca7e17b36bed7548650bd34b0c1136ab5c473dfdd226c11953e
MD5 ca3dda2526303def2617493bf9040432
BLAKE2b-256 793495ee400e4099452e44dd3fb9effad6a0cfd3cfab7c8f3b316f5782c1c831

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.1-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 504bcc259d08c8dd47d85a28912316f61f50044a7b056b3e8fc94a559de3dedf
MD5 4a5d9e0bf2565c54c2da001cfd96f9b7
BLAKE2b-256 dcb0ba1e8e7c28ddbe8d424ad3b067803993f78d94d73754289da77a0fb33378

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0c94707ed28cf8478c6d4983202ed95f464be73c6e243982f38b60568fb78e0e
MD5 d855a41811df55be3cef170c5b4e32f3
BLAKE2b-256 b4575ce56d2ca44480aeeb0f604b82f29315c7e0f222e173f37548f0c35f0f7c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.1-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 832d1785f0338d0d27fbb1a787399b54d9755b6281c0c2d1eea320097297c3cf
MD5 0f0f1fb7173fb3349d7563c4ded34d2e
BLAKE2b-256 5491f1b8254405b470bb8cae6ac1b1fbf396ba8a301fcd43e8708605a7060160

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fc43c1cf6b0f45d841a05a13538f74ec95014fbc2e8d7f98939a5dc80c2f58e6
MD5 5e297e41fb7e35a62c97d3d409048b52
BLAKE2b-256 d8b767130dad79055805ac54ca66b93f3069ab59261e00bfd64a164adb62c96b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 442476bc2ee9a4aa73d1f0f08c398e67ec68f991789deaa59f05bcc8c0bed9d7
MD5 515387688ab23dd33596c937906c3428
BLAKE2b-256 7be645c049acff03763db2a3b74bd175d2d4d09a07e1e2d3918bdf7dc36e1c98

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 817d212ae3ec0f301b1f3a18da023c40bdda17f19b55860ad7a4e7fb22049196
MD5 e52b935daec25ca81ebc577d114b2886
BLAKE2b-256 7871fcf793679fd37aabd9e7d1744038126f881a6c66f84f02be7ac46ea86bc0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 ae24e9c94923670234ef4298e54b845136cbcfaf2969405ec9f2c935132172dc
MD5 c39daed90f8e3919fbc51c159f4113b4
BLAKE2b-256 8c07649b3eef405f077c26f0f5c1f26be98b1ae44651d8c65adde7b697c43f0b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4b9bcb6fe92b0eb888888383a89ffc1bd61d3336affbbbf326bd850bd7a394da
MD5 f23be20eca3d439f52c0970781d4a31f
BLAKE2b-256 b1572cfdfcb2c6ca1733f165756904867560aee929d7f11b9a3d286c322b7009

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 46bcd7b67dc4a8f4a46ea37d365047d429e414c4fa180fad7be96eea85c8d0ea
MD5 9bb36d2b3834cfa2b121f5ba2a9c415e
BLAKE2b-256 9385921f227e89f1e644f014c82fe41d1d585293a5742e0353c83a5b34da1c32

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 430627e65ac483f2d1d1f3747a960a259ac54a4e5bb9d279344ab03d47c43fa9
MD5 55ba1703a3750d4b84613d86722cbcae
BLAKE2b-256 ddab6b847de825d126277453d632f2fbee6948d1f27a14d77647cadb55e8413d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 25733f376c78fb0e4176212d699d4daeb224096087b17af99af7347a6c3e9460
MD5 4dd0d8baa8ee7ff43b625375dcbdd5a4
BLAKE2b-256 4405caa3f0fc7cfe58f2c96065912f35bbd23af433571bd09c60799e5d256cc4

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.13.1-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.1-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.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b61d18648f1ed930d53df8c8c449c5d7e176b9d8cd150dd5116816818acfd67b
MD5 3330a4d16228d1600aa7e531cd0c9c60
BLAKE2b-256 7c7077d2a786575ecaf7275c78e1fb2d354cb2e4d87e8003410ff6cee80225e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.1-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 e7d0910511ca60584644824c1732bf42c7f72175f59c709c1a1f2613390a8b14
MD5 a18ad9b9c8d168529eaf87cdb1ddfa2a
BLAKE2b-256 88cec2e1d3aefc7b2827a181816ec52a8d7951eaeb6db5b8380c74b8025ee01e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4a403b525707335204b84d11e156859f7583fd253cda2fa7540cd0714e4a9975
MD5 8c24ef336673104bad3dcb3fc0440ac0
BLAKE2b-256 66d34246b90878037a3a595591dfc01754da97ba156f07b66c160369854e0e4e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.1-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 b42713ac506d167903ad80bc5f7d434e1ec2c45c4b80f4d63dae6226bfb59f39
MD5 d2bff603aae01d39947614b9d967fe2a
BLAKE2b-256 2d36ae606ffc8f851191b47b024ee1cf0f91fe6ec20ef9529690000313a33415

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4a79e89e524980050e787a615b37677fdeb2be277b076ff6dfcce3e75f2c785b
MD5 db93c15e580b7d32f8a1a90b97676068
BLAKE2b-256 1c9f133c3e9636a80ea9df79a26fa3582f946d41afe26ea411f3610016b895ff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d28eff792bfee61a408ab97407a693f43b12abeb0d4f6660126de3ae4a357392
MD5 bd8466033ea2794a401cec359e898325
BLAKE2b-256 a7bf907060f03953acb2a0d96fb05d9f73ae9ac1e38ac419c8ae527fade90323

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 61f6bb79293e915043b00e1ea0f6ee717bf9b57a0c5fc600c2443b3303f0676a
MD5 ff1cb48c3fe0b16725b265fbd96a9aa7
BLAKE2b-256 6be846236a3aa09004fd2322c45dd4b4fd0ed6d22a51bcec4422b98ba84d88b2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 b4391cde1df4f93d54a471800c411b094ee3931d0b6737920321ac23a1ad6e5a
MD5 025e3dd80790a03ccfa7208e3793afc6
BLAKE2b-256 7ae93f6c576afa49080385f6e6353c5744079b79658ee014bca51fc463c793ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 db6ce4c8cd4e9cbf60873c96756ef1647ac5c814f434485e8f9b431511dd256f
MD5 354707ef518e64bbe1330fb73914dbf1
BLAKE2b-256 74e5d76740b2830159c97776b3718e26f51f850471fcdccf9b08b215ff2648ac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 dc992994df0f2f81d503e967b45f51a5e445a922120b894e52a665f97442caf7
MD5 a3dc7bf4a08dd05630843376670ceb52
BLAKE2b-256 445a0749ee6c9e09bcafeb330cd3b0d98f079b406bbb0a6f12ea40eeb3e8d6d5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 140bb3b1ec805f5909d2b4cbbd938c56a76ab3c9cd16cc75a5b166c5c97df30b
MD5 15add33af42b0f3d828971b27f63a1c4
BLAKE2b-256 a9e378e8dc77ffe1c6f828a033d364d5ddf595b620e26fe00c82a519016aab32

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fef43ab2f401ca004252fbe1c42433b20dcda83e4f321e241411b6d0309b1c1d
MD5 c0024ae2dfb7064e85fd1eecc5f42180
BLAKE2b-256 80df5fd97410a9ba824feb460be81a48bc05ef9154c5ea531673702e7fea47dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.13.1-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.1-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.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1d666ae6499773ded33ebb2dea55d66182e0485e356dfd13e443549635a724b8
MD5 5f41ceaed06531c806d2c6af59958dd9
BLAKE2b-256 3cdd229642e24f82ce674bd05cbc07b1ddfb02508fb765c011f943d841545e3d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.1-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 e43bda336d4f89b092b74e396f4b948ec3920d514c618dc9f38ce47689eb792d
MD5 eb698c573102341190e4a0d51194adcb
BLAKE2b-256 4100db2252d7ba9aff7391c3e96e77495c7805b8b5f3e9736fb2ca6eb508ae20

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 74c826ae927e914c1d04db815508b8edaead6dbb3aae715ed48be3bf563d9be9
MD5 ad37a38c0499ee1488228fbcfbc675fc
BLAKE2b-256 fdcd5f72cebb5887abb538722b4c1a0ffc43fa9ff451146cd90cac03c00b14f6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.1-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 05c6b2a6846dcde62dd07998b551a0acf17cc204279586c6799ebb6da06b8624
MD5 6eab2ba77de39f34e6eae0af5c1be91d
BLAKE2b-256 fd8e44591ed31a00ff91a5c0980953d05e6822106187a84cb235e32524adef47

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 abea48352e005b6ed575938c6c7fe429b99f78b9e9969f633f1faaa440fe163f
MD5 68878c8282d904ac0a6da97199409b25
BLAKE2b-256 2eeba51ff96edff61088ccecc355808a5977072f016902160ad404c2745d0052

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.13.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ca35fd5005b4c09c7ce21c825c4e8e5725121963b562cd555909413896e93ee3
MD5 10218fcd41d0217aeb4d0ac0ecf5cc55
BLAKE2b-256 3202bd77a354313686b8d674761e7ed663a6058660f98ec1804148a15fd007bf

See more details on using hashes here.

Provenance

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