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.18.0.tar.gz (187.2 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.18.0-cp314-cp314t-win_amd64.whl (609.7 kB view details)

Uploaded CPython 3.14tWindows x86-64

aioesphomeapi-44.18.0-cp314-cp314t-win32.whl (536.1 kB view details)

Uploaded CPython 3.14tWindows x86

aioesphomeapi-44.18.0-cp314-cp314t-musllinux_1_2_x86_64.whl (659.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

aioesphomeapi-44.18.0-cp314-cp314t-musllinux_1_2_i686.whl (677.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

aioesphomeapi-44.18.0-cp314-cp314t-musllinux_1_2_armv7l.whl (606.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.18.0-cp314-cp314t-musllinux_1_2_aarch64.whl (646.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

aioesphomeapi-44.18.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (650.3 kB view details)

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

aioesphomeapi-44.18.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (590.5 kB view details)

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

aioesphomeapi-44.18.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (639.4 kB view details)

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

aioesphomeapi-44.18.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (666.2 kB view details)

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

aioesphomeapi-44.18.0-cp314-cp314t-macosx_11_0_arm64.whl (571.4 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

aioesphomeapi-44.18.0-cp314-cp314t-macosx_10_15_x86_64.whl (576.1 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

aioesphomeapi-44.18.0-cp314-cp314-win_amd64.whl (519.8 kB view details)

Uploaded CPython 3.14Windows x86-64

aioesphomeapi-44.18.0-cp314-cp314-win32.whl (463.2 kB view details)

Uploaded CPython 3.14Windows x86

aioesphomeapi-44.18.0-cp314-cp314-musllinux_1_2_x86_64.whl (644.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

aioesphomeapi-44.18.0-cp314-cp314-musllinux_1_2_i686.whl (667.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

aioesphomeapi-44.18.0-cp314-cp314-musllinux_1_2_armv7l.whl (590.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.18.0-cp314-cp314-musllinux_1_2_aarch64.whl (623.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

aioesphomeapi-44.18.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (637.4 kB view details)

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

aioesphomeapi-44.18.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (585.4 kB view details)

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

aioesphomeapi-44.18.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (617.4 kB view details)

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

aioesphomeapi-44.18.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (658.8 kB view details)

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

aioesphomeapi-44.18.0-cp314-cp314-macosx_11_0_arm64.whl (531.2 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

aioesphomeapi-44.18.0-cp314-cp314-macosx_10_15_x86_64.whl (543.4 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

aioesphomeapi-44.18.0-cp313-cp313t-win_amd64.whl (578.4 kB view details)

Uploaded CPython 3.13tWindows x86-64

aioesphomeapi-44.18.0-cp313-cp313t-win32.whl (515.1 kB view details)

Uploaded CPython 3.13tWindows x86

aioesphomeapi-44.18.0-cp313-cp313t-musllinux_1_2_x86_64.whl (657.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

aioesphomeapi-44.18.0-cp313-cp313t-musllinux_1_2_i686.whl (675.6 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

aioesphomeapi-44.18.0-cp313-cp313t-musllinux_1_2_armv7l.whl (605.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.18.0-cp313-cp313t-musllinux_1_2_aarch64.whl (645.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

aioesphomeapi-44.18.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (648.4 kB view details)

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

aioesphomeapi-44.18.0-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (588.5 kB view details)

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

aioesphomeapi-44.18.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (638.1 kB view details)

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

aioesphomeapi-44.18.0-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (663.7 kB view details)

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

aioesphomeapi-44.18.0-cp313-cp313t-macosx_11_0_arm64.whl (569.7 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

aioesphomeapi-44.18.0-cp313-cp313t-macosx_10_13_x86_64.whl (574.4 kB view details)

Uploaded CPython 3.13tmacOS 10.13+ x86-64

aioesphomeapi-44.18.0-cp313-cp313-win_amd64.whl (510.4 kB view details)

Uploaded CPython 3.13Windows x86-64

aioesphomeapi-44.18.0-cp313-cp313-win32.whl (454.7 kB view details)

Uploaded CPython 3.13Windows x86

aioesphomeapi-44.18.0-cp313-cp313-musllinux_1_2_x86_64.whl (640.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

aioesphomeapi-44.18.0-cp313-cp313-musllinux_1_2_i686.whl (666.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

aioesphomeapi-44.18.0-cp313-cp313-musllinux_1_2_armv7l.whl (596.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.18.0-cp313-cp313-musllinux_1_2_aarch64.whl (616.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aioesphomeapi-44.18.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (634.3 kB view details)

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

aioesphomeapi-44.18.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (591.2 kB view details)

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

aioesphomeapi-44.18.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (609.8 kB view details)

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

aioesphomeapi-44.18.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (657.2 kB view details)

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

aioesphomeapi-44.18.0-cp313-cp313-macosx_11_0_arm64.whl (526.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aioesphomeapi-44.18.0-cp313-cp313-macosx_10_13_x86_64.whl (540.5 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aioesphomeapi-44.18.0-cp312-cp312-win_amd64.whl (513.0 kB view details)

Uploaded CPython 3.12Windows x86-64

aioesphomeapi-44.18.0-cp312-cp312-win32.whl (455.6 kB view details)

Uploaded CPython 3.12Windows x86

aioesphomeapi-44.18.0-cp312-cp312-musllinux_1_2_x86_64.whl (645.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

aioesphomeapi-44.18.0-cp312-cp312-musllinux_1_2_i686.whl (670.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

aioesphomeapi-44.18.0-cp312-cp312-musllinux_1_2_armv7l.whl (601.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.18.0-cp312-cp312-musllinux_1_2_aarch64.whl (621.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aioesphomeapi-44.18.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (640.0 kB view details)

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

aioesphomeapi-44.18.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (597.2 kB view details)

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

aioesphomeapi-44.18.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (615.5 kB view details)

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

aioesphomeapi-44.18.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (663.3 kB view details)

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

aioesphomeapi-44.18.0-cp312-cp312-macosx_11_0_arm64.whl (531.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aioesphomeapi-44.18.0-cp312-cp312-macosx_10_13_x86_64.whl (546.4 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aioesphomeapi-44.18.0-cp311-cp311-win_amd64.whl (514.2 kB view details)

Uploaded CPython 3.11Windows x86-64

aioesphomeapi-44.18.0-cp311-cp311-win32.whl (464.1 kB view details)

Uploaded CPython 3.11Windows x86

aioesphomeapi-44.18.0-cp311-cp311-musllinux_1_2_x86_64.whl (659.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

aioesphomeapi-44.18.0-cp311-cp311-musllinux_1_2_i686.whl (691.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

aioesphomeapi-44.18.0-cp311-cp311-musllinux_1_2_armv7l.whl (607.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.18.0-cp311-cp311-musllinux_1_2_aarch64.whl (638.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aioesphomeapi-44.18.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (652.3 kB view details)

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

aioesphomeapi-44.18.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (606.4 kB view details)

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

aioesphomeapi-44.18.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (632.9 kB view details)

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

aioesphomeapi-44.18.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (680.9 kB view details)

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

aioesphomeapi-44.18.0-cp311-cp311-macosx_11_0_arm64.whl (531.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aioesphomeapi-44.18.0-cp311-cp311-macosx_10_9_x86_64.whl (545.0 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for aioesphomeapi-44.18.0.tar.gz
Algorithm Hash digest
SHA256 eae5f62b49dbfe8f09dcb5f4ee60b764347bef05d90d4aaec4974e8368d4833a
MD5 570677fb35c2ebfe2bd68ed0c30a3fa8
BLAKE2b-256 5038d0aaccc38305f0b50249e3d842aa027cca713c89d7287fff6b4c372acdc3

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.18.0.tar.gz:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.18.0-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.18.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 b46e6c64a74909ed503161487aa922f76b02b06b94fdf13aeb73e60a00442380
MD5 a6a4b9e4729e469fc32ee04a8d49877d
BLAKE2b-256 59ed308d9d4f8cd3bf6a7051b65c637b1704dfa922743f9c0d8e6ceb04e65fa7

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.18.0-cp314-cp314t-win_amd64.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.18.0-cp314-cp314t-win32.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.18.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 11a6e161865deff72376f1d57e16d207977f6eb946b453fa1678c8282024aa1f
MD5 861f6bd37f21bb195043f5eaa59034b8
BLAKE2b-256 7eed91f9b5ad5cfab8d27dfc8723488089ac44a01aa9021fb0b5555c9a28b812

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.18.0-cp314-cp314t-win32.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.18.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.18.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 56c6a6e61aa68a5224106a8fc2fa4f283e8b19c5d3831149c97c5f4ab703f37b
MD5 55dad512d6403a93482d520b2f4e3f71
BLAKE2b-256 30818f7f534327ca466cacabcc09f5e7c9d09c6315c4b7daa722de66cfd193a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.18.0-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.18.0-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.18.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 de9022c5eb1067708dc2deba8479c37b33ef2c9f7cc9e058b1cf3fa3cb94f5d1
MD5 6531a963273abf54807edb075bedd1e1
BLAKE2b-256 5249e9a0ef28c0fff01807282a39d417ac2efd7d614b4788f5437a4804f9e186

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.18.0-cp314-cp314t-musllinux_1_2_i686.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.18.0-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.18.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ab90d78d634c0c17737e7639a5ed3a6edd3ea38e2f7f3052f18865b4c85e6007
MD5 1e8de5656d9599cbf787a975870d4f79
BLAKE2b-256 af4302c6d984ad5479dd0b382b27141e2fbb38676a6d804018c7f9c5f39bf68a

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.18.0-cp314-cp314t-musllinux_1_2_armv7l.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.18.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.18.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c1d963f6141f71004627263060f6d38ae8017f58f877e5507355620197d0d630
MD5 512bac01e56bb85108717a35d332bceb
BLAKE2b-256 cb3120918b37a8c9a05d860c3dcc383604b50ba451af999364113eaee50e9ea0

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.18.0-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.18.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.18.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c89157d4d52f8480b86f58797c560a376bdeb8a1b7a7b9a6e545d322b6cc1c4f
MD5 b0043f17ff9cb38007f87b67621296d3
BLAKE2b-256 6a10ece30f6cbc47d6c9d1c10250bef05d0b908af9a4b90ad4a3c56a401c3209

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.18.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.18.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.18.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 84eb5e69633c2e6a0a909e95f45a60bc4487241a3d4ca16e5eb4db9cba859e76
MD5 f4b4329643ba9edc1008fd5935a615e9
BLAKE2b-256 0324de8e887a650d04b9c2da804f292716b43db5cae2c3675cf0b502fd918609

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.18.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.18.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.18.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c237cb02d72f55d1de36da75f1aff658f21bad253cd09ec82eaf18aa998fdda6
MD5 512007291043450099b318dcd7c24cf3
BLAKE2b-256 ba60743fc8d1e44d00f3f618fe64bd02e14a2fdef3f50a9b3cee90649a4dd1af

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.18.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.18.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.18.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 224427043b9cdc920a312aa98a0b660cbc9a1ebaf1c63a406e24e61cdd15365a
MD5 9ea4eb8135ad792e050ab9df684bcb59
BLAKE2b-256 779f8aadf1c398402421ff671bdda466ff7b027c3f8ed12f5cab8ffb1b153519

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.18.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.18.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.18.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0b579743b15405303d39d8ab14ff1ff1ef60fe167204bc798e529e7949c666b5
MD5 abab2921a23270750eed4e52014031b7
BLAKE2b-256 1e75e7e6202570def07c1e19bc44455020d70bd822cc7c57f0ac25cbd9c0bab3

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.18.0-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.18.0-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.18.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 aa121cb9f242efecea0ba50f36c73d0a177db7c45c0abe98f4e4c56c36832043
MD5 cb13020eb77820126ec4e4c7fe59f09c
BLAKE2b-256 518836ede1bf2c39f977bcd831453b33f167fbf738f073b9b19cfa76044ed8bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.18.0-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.18.0-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.18.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 001353561ccfc39fb4f710105fc33e6341a234e58bdac154fb1bc305f6006183
MD5 1e4350354aff2e768287888770c2cb8f
BLAKE2b-256 4ab53798da3344b916a5a2306d614dc4742688ac516ddeac2b22328f69add384

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.18.0-cp314-cp314-win_amd64.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.18.0-cp314-cp314-win32.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.18.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 416a594eba88e3a6bdcd74939d8d313907c0852640a2c69d9d28d5b9790fccd1
MD5 5d76d45b789d7491d40e7bc79559dd12
BLAKE2b-256 a74a67dad417de6f3200a42190cc5dd31b205269bc4768b77582196d7eb6bc15

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.18.0-cp314-cp314-win32.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.18.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.18.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a1d1783c64c2dc9e3e1f035d264f3a9fef72598733673767ecea4e97cdffc147
MD5 64beadcbfdbbf1dac6e138d1949a05ab
BLAKE2b-256 3def6873e87d3194e74ce41cd42b3bca0d18c43bc5a411eca93c1594d4e776c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.18.0-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.18.0-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.18.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 eca4a9721dbc1719baece550a7ef8ad454fa69eee1fac425d910d88f72e690fa
MD5 fe2c5fea22f357a0084283d0bc598ec8
BLAKE2b-256 e885f45a18e9d3ea4f8e337f2a516972431951b6a14bb7fba5797124654ea61e

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.18.0-cp314-cp314-musllinux_1_2_i686.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.18.0-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.18.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 41c61bec86a81fb49a857fdcf0058ca0814d95ef044e083044e81684d6568750
MD5 019f96b1b729cf428623f1af43d45a38
BLAKE2b-256 c7ad5d769907b8cde600418ac9b1c9c53bdcadda7f309eecb4c66b9a5f325466

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.18.0-cp314-cp314-musllinux_1_2_armv7l.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.18.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.18.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f7d30129d6fc00efb44aa8c8a4c3b3e7414ba30ca05fee2c15b57ae9d6dd0fbb
MD5 065c65874f2d646ed3238b5b8ec1bc5c
BLAKE2b-256 0dd17e6d3b61474c57344b2b4adc4e52e11336063a61dfc7c27f6e1ee3e92ad8

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.18.0-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.18.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.18.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fe63b2effa0299eb41c31a8fb9a1540c4e3d6345b44159c0c682fbcaeb3cb66f
MD5 a7f3cb00fb4cc1487f877c8eeac7d991
BLAKE2b-256 62c36cd5782da474583e0143b2505bc4a4748c0aaba7ddb14a100b406564de1e

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.18.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.18.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.18.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 71a17a04ce9402ed5cfc97cadd1496acb8be0dfc84ddbf612a9a9a8bd47b35e2
MD5 a044ecdf08fb958295e93eaef51bf756
BLAKE2b-256 ffb3a73aed3d150a826960d7dfe9092c721fa29fa5dd8b68b1f1ef575256457b

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.18.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.18.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.18.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8c4437dee366fd3e3e72e14659d6d3f3747e1dc1d66b7d09948ce200ded429ff
MD5 c580af31d1555529529263c004fad818
BLAKE2b-256 fa7e56a4188497d1d67452ebed1e0a8fb6d0f68519e10fd6c7d09fa3cb6896c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.18.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.18.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.18.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 70dbd5518596e3c9621e3cec664753220ac6bf2377f2ad2bf9a407546a72927a
MD5 afc0849843ac7542c93d8463be12487d
BLAKE2b-256 d369a4285553cb8aa2bd98c8eb5f127721223600b3b3532ab5202a3d4f0a4f92

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.18.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.18.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.18.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0f9f69e2102c5c92f65d505c79c095e0d3e5f657de3f84d8d92d992896b70e4f
MD5 6401ec9fd2dab4828a60615d65bd01cc
BLAKE2b-256 2dd449c91a353a09e4c5b75b70a2a9fdde2aa4e8062c33f869cc9068c7c50c09

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.18.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.18.0-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.18.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 0338ffe9b05d33a5bb877e1f2cd7c76ec58c18bc882aeee3c999308434fa663d
MD5 2ba0a445b6646f52bfec7700c91867c4
BLAKE2b-256 9fc6b6385c3fd2177b0690e4240b98552f7f0a431eafc931de1327128ad9e7aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.18.0-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.18.0-cp313-cp313t-win_amd64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.18.0-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 ff10c2e1faca4630365f63606c3d9a3bccbb816f10f0c03bc4e8b4af756b28a8
MD5 4fd17461c4b93401e08b81f806c147bc
BLAKE2b-256 4e58fedf504658b466690ef29369a9f48de3e6f96f6432468929733cc1025286

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.18.0-cp313-cp313t-win_amd64.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.18.0-cp313-cp313t-win32.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.18.0-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 7635d9b1ba1403e1c9a919c521b591e5b6e8833afa2cc95906331d80dbcf363d
MD5 6249b9d1dbb8b29f2ce0de853a92982c
BLAKE2b-256 8c6a3524c95c0f9549a28d7a450ec8800d3dacf59e416cfa8a793bb1d99315b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.18.0-cp313-cp313t-win32.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.18.0-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.18.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4820559a7fab3ba2f5cd773a62d731805bd33f73ba8c9bf645a12649388374ec
MD5 99dbc04e716fe16a54fb7929b75f3a38
BLAKE2b-256 081c507c3227f8d7b8f60e36c4a31cffbdb305a2fcacb9a60ce0f364d98926d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.18.0-cp313-cp313t-musllinux_1_2_x86_64.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.18.0-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.18.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bc5116e6697b7e7c90ce19e2cb3dd0c5355ebd63b5a267e1512e6b2e504cd35a
MD5 aba4307cce981f5d331eee86eaab03be
BLAKE2b-256 7799c37f5dbdbcf583ebac6906f8cb7cc3c3bebbac968bd51b710f316fa4912e

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.18.0-cp313-cp313t-musllinux_1_2_i686.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.18.0-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.18.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 693143f63f892f89d71887fae93c886106812c8d1f9accfcd3173b125846b92d
MD5 4a28d371887fbcb6590f76f2244d4c2e
BLAKE2b-256 634ae449aa857fd797ff61753f228cfd42177b90ef271dd17cd2dd5dda82ce19

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.18.0-cp313-cp313t-musllinux_1_2_armv7l.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.18.0-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.18.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ff99686cf2570b461c51429342b9040fd5b2dea95bc78814281eec53f27cac3b
MD5 fa7800c18be1186552a00e75abd5bcf4
BLAKE2b-256 661152782df0f41ce5f910af5c2ec3d5b851d3f47944996751ef0a40deefb94a

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.18.0-cp313-cp313t-musllinux_1_2_aarch64.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.18.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.18.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 81340d8c510c92031e46c18a06e899dcea33da3173584570ad138830b8053f18
MD5 5bcf291019d2396fc3bab44406532231
BLAKE2b-256 9a635d05658175babe1e2cf66ef1100b202a8b81f3fbed0dec6d6c566fefe844

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.18.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.18.0-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.18.0-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 94ebdba4d1e122d9df87b6abb35adc1ee47011282e621b0f942c7f2c12dc5d94
MD5 6e388144974cabe69f91bc7c82bccd7a
BLAKE2b-256 47572747fe9476e79544d26243c154ae4cd108d888ea6c2693fb8b8b4eaf4d52

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.18.0-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.18.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.18.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 46ff086b4a580ef64411bc765541d0ff308f02d37ef37f71fb64fadc7ff14a09
MD5 9ed856ab18463affda6e2bc366d120e9
BLAKE2b-256 5572e74982f05009fc40abcb790532e8fcb0f104c66250d7dcffddde41acbf09

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.18.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.18.0-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.18.0-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 5e9220f6708fa34379cb73250e362cfae79a3a45d0ff69039c42623273bfb2a4
MD5 361309612b65b8c84d48efc9fb2c66e8
BLAKE2b-256 7c49132139a1dcfb9d686d2e5c2b2d8002332f9ff657a8f39c572f15c66182f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.18.0-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.18.0-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.18.0-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 21e1fe6dee364791e88b324469c875577b988dab822957fae44b8b4e976f881f
MD5 fdd556e8e989cac4f503c4f3a4bf4c74
BLAKE2b-256 c43cd9d52a1099647f9395d56aa436c3624ed5e6cad439d07b3d3acad019003d

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.18.0-cp313-cp313t-macosx_11_0_arm64.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.18.0-cp313-cp313t-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.18.0-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 fb710f52206afd3b8b5b469c8bcbd6cfbc817ec6d75eb0de4d44d0fc106ff17a
MD5 f3cc95edc890c2b1ae46c840dc813e38
BLAKE2b-256 b961f04293b8c261706159790b823553d6f51330f92c49b6f99807b685b5c979

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.18.0-cp313-cp313t-macosx_10_13_x86_64.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.18.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.18.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a567db4c220addeaea0c84619f6e9d4178d92a9ed5d89e98a9ea7c96399bd3aa
MD5 a4b7a3e00becd8dcedf32bf77de21426
BLAKE2b-256 cc1dc88dc8fe5ca83cfbe82ba2e8120a3282c0691b001c3d4ee6cce0dd6307f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.18.0-cp313-cp313-win_amd64.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.18.0-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.18.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 69ef700d3745663c29867853945b8d4022db2bb8be54458301b32449b2b59fdf
MD5 8bc6d21a83909d2a758fcfbe8e9f50af
BLAKE2b-256 9168b8afdbc84be9eed4743b296ae799dea214adac40ebb8e27d4dec0855d9c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.18.0-cp313-cp313-win32.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.18.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.18.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f28273296991d4ad57fb432bf168774728f308f3d37ab45c0a1769ab6d7df0dc
MD5 2a7478423eb676f21c9799d3b86c158c
BLAKE2b-256 7a285523620b59bd96fb3ec46cd97e58b9b996cfc90a6557ae089c733e746f29

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.18.0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.18.0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.18.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 30c0fdf9b53664bf6f1f85b42762c6002276a12951afd2c1c9fff3f33cd3f3f1
MD5 22044d3ff2ad0f2399c51a3384557260
BLAKE2b-256 91fa7b78db5d3ef728414aed811470c2a005e6825d60ad3ba93b95c53a54cb13

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.18.0-cp313-cp313-musllinux_1_2_i686.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.18.0-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.18.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c7bea6d51f0ba7cc0908794e74bde6a860fa43f8297935c4d9ad6112f20479da
MD5 fa326ddcff1c4a6bd5f0042318cfc394
BLAKE2b-256 1cbf6dcf669cf89544950ecc3700bd2817283514f9d7b47bcefb8f36b3c8b372

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.18.0-cp313-cp313-musllinux_1_2_armv7l.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.18.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.18.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 41004efad37ff48b8645c6d9781d5312228bf217de25e1f4dae1ea77f2a0ab1d
MD5 195ecf8bbc324cb1796453073234c96b
BLAKE2b-256 113261612f43bd07ca105651c1a38b64e99727e1e16f2b8fab60e7d2756e2131

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.18.0-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.18.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.18.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fe12c3430d40c6ff81800d50d165ae3c5b56fd508cec92319f914b24cd638477
MD5 94c19daedeca30facdaae9c303a0ec47
BLAKE2b-256 ffff54725498dc664b3ba6fd185d29c9e2533b6f91a243b1350c28e97ba42f03

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.18.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.18.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.18.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 61735e80d9c1829f09bf0ad0fa7754e116a4e580f1c548e5efc9e229a059381c
MD5 0b4624d43842247481821ab1f33ab849
BLAKE2b-256 83415184ea1181a2430f283b2595accf506f1d88b86bac2596f47b4a2562dd37

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.18.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.18.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.18.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 751987fd6bfed5d7c20954d86130a280e5cb77e14b9f8d591ddbaa44be9adaa2
MD5 bbebea4ece29345a65b20e7ec5d94dab
BLAKE2b-256 b0e8a4a421a4845b9241a29af5c6dc12ec5329e297f87a815ac2e677411cc801

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.18.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.18.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.18.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 849a3e81f4f5ca4fb72e52179e679f2ed74ace59f3e7a81435908f621a99c4e9
MD5 94fb6bd5c996ac03b3882174bcb6df86
BLAKE2b-256 aea2bde0ac87d5be09ffbd854626775709cc1881e4038e61de91d19a1da2ae5c

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.18.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.18.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.18.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d04d41a1aeb5342ec951a17a80196f336c7e55b5a6d335a0bf8bc1c4492cc56c
MD5 d6bbde7d3c535b10d9c4dd1845db5732
BLAKE2b-256 2c928195492defa9ce8229c2648859b9e716b6c423b6261b2649b56ea4de936c

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.18.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.18.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.18.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c3522817d07675ded5b76c9c7bee44c69769b6114c07cc3a09c2ab7502f5f24a
MD5 37dfd2dc4485bc08e41b18ce3a477f17
BLAKE2b-256 5b375b62f588a825dcc4a6155ed16f833948ee1c5e4f4aa0fb18a44794eac941

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.18.0-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.18.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.18.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c7b5a1b6b91a333c329fec88f55dddc64fe479f9a845fd9648f3a1d2b828f0b2
MD5 dc5901f7efb5d57c9f3460880e5e2c03
BLAKE2b-256 62212e06b8ca7687b68c8fb97891a8c9089e5510b242c2461e369734367c2b86

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.18.0-cp312-cp312-win_amd64.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.18.0-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.18.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 0cfae202d354bf37712a7fff21d2c2d86517efc891111bfe0de5363662e563bc
MD5 5235bc5986cf5997115598dc3dcecb0a
BLAKE2b-256 8545149d28f26c0c4a1cfd922ee29a2ee813974742366be623a36c83cdec12c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.18.0-cp312-cp312-win32.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.18.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.18.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 31ead2982d02532ed4754d4fc1f4ad460997bd21a68414abe6cbd16efdca7c4a
MD5 8763a5fc90dc1db34ae89778aeffe592
BLAKE2b-256 30d7e1055f10e93210fca3eb2392f1818118eda710700ec5f38d8921235ff086

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.18.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.18.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.18.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 07a976969589679c1290f05e8e9ff4d8d43482170bd57edf871be0f014a5e3b5
MD5 b4e7748abeae22f24cfeb44685152027
BLAKE2b-256 67d5102dc1abc29e556bb0de46bac88cccd5be2dc76ac71a67f8d816a36701d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.18.0-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.18.0-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.18.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0a688c65797950bd968fed5c0cd48f58fa996c2ed32e016b30536d09d6f79bd9
MD5 deb1114c16351fa2d057eee1149dd51d
BLAKE2b-256 dd9338d137d88f58c7b69f3f14559644563e5773cd7baa829eb45e2745001e74

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.18.0-cp312-cp312-musllinux_1_2_armv7l.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.18.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.18.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bca17219975e9bd2967e1119f45378c45d8ccf31466f489d512db9bfe90e3dba
MD5 251870684872fe3e1b55dc267c9f5070
BLAKE2b-256 0ff56553179706d62abe007a11e4a3925524082a1e86285d63a18e3c39194ec8

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.18.0-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.18.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.18.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 71038afc7c428472584dc78fd8ec45fe868de5a9cd5c0bf7a8b8129485039be8
MD5 cdaa8a55c2260c4b533302bc98161ad8
BLAKE2b-256 dd5a78e2ae5b95d62d19225d94b9229107e7b095b83dbe4f9a0e84f138867dab

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.18.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.18.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.18.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 212d11043a346a6189eb69b128b576a1703eab68c69cc263dad379a4c8b2ad88
MD5 5169777da88052e5c3bf0b5fee5e315e
BLAKE2b-256 10bdfe6ea5faf701d1093b7affaa26c8dc44e0b0851bd121bc73d39653abee4f

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.18.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.18.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.18.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f09d82692d84804eb42df0ab0c530a9257b35189fe3bdb08d8ce82d289cd7803
MD5 83362174d22e088b9ec24c922a2fef29
BLAKE2b-256 051f211377a51d10c318a7665ed95c134866267c57098e37f84acbc48262b7af

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.18.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.18.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.18.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 d95c60f62aeccb25406a1b8301ab1026b422db10e8e3984a8a2c8e504596abf4
MD5 e84c6253502994d4fc2419405c189344
BLAKE2b-256 d17d1c5ad2d5316159f98ef56ccbed4138350baebd77f678eb6dcc4c4a51c821

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.18.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.18.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.18.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 57b4cd94c7f3a021f5eabf633f07c06d2b2a1dfdd753ad655e3ca6fdde1b9653
MD5 def39902936e7617a991ab8c328cb79d
BLAKE2b-256 0b2e6ab834d5809c36d862281eae7a677c2aba3ea35b9375b583cfa71ca71f70

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.18.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.18.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.18.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 361ee0c26c34917a9925b3f2b829a49ad0377b2781a4f68c7727ddf84d34a8ff
MD5 b56221068d36389a47dcec9f0cbe8b4a
BLAKE2b-256 d75d08d2c8094d9d2d68ac8a896884fda718a44161e19b1f9411b58f272914ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.18.0-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.18.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.18.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8324999084adb7d2c979e1df7a11b429beb71910e1da775c9694698a692ee160
MD5 e120f131742646c3b4a90067d9700bcb
BLAKE2b-256 fdc2dc9754096096fc348fc77668be380dc7c84aa13821416877dbc2a30e1fe7

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.18.0-cp311-cp311-win_amd64.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.18.0-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.18.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 d64d74021adf6aa7a30334597adb378742a6f76a774e7e6b59c24d8bc23c65eb
MD5 6b60e55d2b12dd69121b4291e2395c34
BLAKE2b-256 e7d69e7aaf2891326e2a89ac8d30af7fc739850b6c8d469cb98b198f9a14bc29

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.18.0-cp311-cp311-win32.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.18.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.18.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3149c520f412c5c5e3c5045f5d427324541aea060df3867350fc3760d9e8125c
MD5 c59947f4fb04b4e95d084ed2c899c5e8
BLAKE2b-256 6e4324f9e962ed7d63ba8847958d7e8e46d2a2abe079c02ead56f843966dd8e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.18.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.18.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.18.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d983b8cb4c7f4aa5a96eeaba189e9e6744ccda81c81b240f2db6fcee63bac7f3
MD5 a74ea3e685c199457318353cf9bebbd7
BLAKE2b-256 588da25bbb0f228841149e8873cf89d79a1718331f2ae6b6a1c9bb58fa4e981c

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.18.0-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.18.0-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.18.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9519f9957a1ff584575b115c866b2f58d39265b9a49735a98aa3e219946874ec
MD5 25a958f3b17e33e46438ef8f8b531f5b
BLAKE2b-256 ceaa17e4377f9092fb9dacf15cbd42682a67bc406f413f04efa7df35a8555d5d

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.18.0-cp311-cp311-musllinux_1_2_armv7l.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.18.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.18.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f79b19d83d29bf7537756acad4c54bb7a76939652d1e299980912fce8d1a28a5
MD5 93deb08b464fc2f2949b2e717e70a90e
BLAKE2b-256 05da43b913450c85d67b4e6128a3d202d3d79badefba98ce24becf299fdf18b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.18.0-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.18.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.18.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 62a9e1a65d23124fb8cf26305611ffd53f1df076b2ee4004bf16cdc9005b0509
MD5 f65ad76fc4c1226b6be28f509f83021e
BLAKE2b-256 aea0236beecb21b437b023bf6c61cff65b10e5b43adc96110b5f98543629b447

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.18.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.18.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.18.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 0ca77a44aa77992edb7bc2941b8a3c14ef25c29958e9b00ad5462c266d590a8f
MD5 403247889edc9234ccdef66b707b3e57
BLAKE2b-256 6884f2066c4b878e9535575c6a40cf964c3119299dbbe2ce646261001d473369

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.18.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.18.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.18.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2f2866b2622b59813192909ee0f96ce7610d6ea17c7e97bde9710ec0f16b8269
MD5 499fc598f38147b24eae2f7629a0fd3f
BLAKE2b-256 fdb83d8f75cd22d9254d99b5a06f3b141b3467851a0dffce79ccf838be9b79b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.18.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.18.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.18.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 5621031b319f666eb10dfd7c3324ee395e451dfa0aa0615267f8baefbe4dd185
MD5 f277cc1fed8d6619f70978b39cc53882
BLAKE2b-256 4bf1c03ebf50b6b3329d931927721ef6f405a18e38c389b082e30a8e261baf9c

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.18.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.18.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.18.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b768f66977731983fa98b24354e8f48ff3d82e5bc0c23921b9ba650a257d6a53
MD5 5a3f064ac11f7f5895583da2ffa708d5
BLAKE2b-256 ce6c809630179c1f6dee01245ce827582ff493a735aa390889c9acdab19b962f

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.18.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioesphomeapi-44.18.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.18.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b5b8f5e4c2ead8d691334d82599adbf4f0edd28e9f06ab3974f422b0ec88a13f
MD5 eaa5027eb37842b8cafa3240540c0ae2
BLAKE2b-256 0cc7409d8222ac30c6cd9263b68ab6e24e704937f61fd18a39d090b083dd4d25

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.18.0-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: release.yml on esphome/aioesphomeapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page