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

Uploaded Source

Built Distributions

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

aioesphomeapi-45.5.1-cp314-cp314t-win_amd64.whl (598.0 kB view details)

Uploaded CPython 3.14tWindows x86-64

aioesphomeapi-45.5.1-cp314-cp314t-win32.whl (542.2 kB view details)

Uploaded CPython 3.14tWindows x86

aioesphomeapi-45.5.1-cp314-cp314t-musllinux_1_2_x86_64.whl (719.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

aioesphomeapi-45.5.1-cp314-cp314t-musllinux_1_2_i686.whl (740.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

aioesphomeapi-45.5.1-cp314-cp314t-musllinux_1_2_armv7l.whl (662.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.5.1-cp314-cp314t-musllinux_1_2_aarch64.whl (707.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

aioesphomeapi-45.5.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (709.9 kB view details)

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

aioesphomeapi-45.5.1-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (643.4 kB view details)

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

aioesphomeapi-45.5.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (701.2 kB view details)

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

aioesphomeapi-45.5.1-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (727.0 kB view details)

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

aioesphomeapi-45.5.1-cp314-cp314t-macosx_11_0_arm64.whl (629.7 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

aioesphomeapi-45.5.1-cp314-cp314t-macosx_10_15_x86_64.whl (637.1 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

aioesphomeapi-45.5.1-cp314-cp314-win_amd64.whl (559.3 kB view details)

Uploaded CPython 3.14Windows x86-64

aioesphomeapi-45.5.1-cp314-cp314-win32.whl (502.2 kB view details)

Uploaded CPython 3.14Windows x86

aioesphomeapi-45.5.1-cp314-cp314-musllinux_1_2_x86_64.whl (708.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

aioesphomeapi-45.5.1-cp314-cp314-musllinux_1_2_i686.whl (733.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

aioesphomeapi-45.5.1-cp314-cp314-musllinux_1_2_armv7l.whl (645.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.5.1-cp314-cp314-musllinux_1_2_aarch64.whl (686.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

aioesphomeapi-45.5.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (700.9 kB view details)

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

aioesphomeapi-45.5.1-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (643.7 kB view details)

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

aioesphomeapi-45.5.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (679.6 kB view details)

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

aioesphomeapi-45.5.1-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (722.2 kB view details)

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

aioesphomeapi-45.5.1-cp314-cp314-macosx_11_0_arm64.whl (586.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

aioesphomeapi-45.5.1-cp314-cp314-macosx_10_15_x86_64.whl (599.5 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

aioesphomeapi-45.5.1-cp313-cp313-win_amd64.whl (546.8 kB view details)

Uploaded CPython 3.13Windows x86-64

aioesphomeapi-45.5.1-cp313-cp313-win32.whl (494.1 kB view details)

Uploaded CPython 3.13Windows x86

aioesphomeapi-45.5.1-cp313-cp313-musllinux_1_2_x86_64.whl (705.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

aioesphomeapi-45.5.1-cp313-cp313-musllinux_1_2_i686.whl (731.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

aioesphomeapi-45.5.1-cp313-cp313-musllinux_1_2_armv7l.whl (652.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.5.1-cp313-cp313-musllinux_1_2_aarch64.whl (676.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aioesphomeapi-45.5.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (697.8 kB view details)

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

aioesphomeapi-45.5.1-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (649.5 kB view details)

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

aioesphomeapi-45.5.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (670.1 kB view details)

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

aioesphomeapi-45.5.1-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (720.5 kB view details)

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

aioesphomeapi-45.5.1-cp313-cp313-macosx_11_0_arm64.whl (581.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aioesphomeapi-45.5.1-cp313-cp313-macosx_10_13_x86_64.whl (596.0 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aioesphomeapi-45.5.1-cp312-cp312-win_amd64.whl (550.8 kB view details)

Uploaded CPython 3.12Windows x86-64

aioesphomeapi-45.5.1-cp312-cp312-win32.whl (496.1 kB view details)

Uploaded CPython 3.12Windows x86

aioesphomeapi-45.5.1-cp312-cp312-musllinux_1_2_x86_64.whl (709.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

aioesphomeapi-45.5.1-cp312-cp312-musllinux_1_2_i686.whl (736.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

aioesphomeapi-45.5.1-cp312-cp312-musllinux_1_2_armv7l.whl (656.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.5.1-cp312-cp312-musllinux_1_2_aarch64.whl (681.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aioesphomeapi-45.5.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (702.4 kB view details)

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

aioesphomeapi-45.5.1-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (654.0 kB view details)

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

aioesphomeapi-45.5.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (675.5 kB view details)

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

aioesphomeapi-45.5.1-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (727.0 kB view details)

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

aioesphomeapi-45.5.1-cp312-cp312-macosx_11_0_arm64.whl (587.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aioesphomeapi-45.5.1-cp312-cp312-macosx_10_13_x86_64.whl (602.5 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aioesphomeapi-45.5.1-cp311-cp311-win_amd64.whl (558.0 kB view details)

Uploaded CPython 3.11Windows x86-64

aioesphomeapi-45.5.1-cp311-cp311-win32.whl (503.4 kB view details)

Uploaded CPython 3.11Windows x86

aioesphomeapi-45.5.1-cp311-cp311-musllinux_1_2_x86_64.whl (725.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

aioesphomeapi-45.5.1-cp311-cp311-musllinux_1_2_i686.whl (761.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

aioesphomeapi-45.5.1-cp311-cp311-musllinux_1_2_armv7l.whl (667.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.5.1-cp311-cp311-musllinux_1_2_aarch64.whl (701.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aioesphomeapi-45.5.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (717.0 kB view details)

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

aioesphomeapi-45.5.1-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (665.1 kB view details)

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

aioesphomeapi-45.5.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (695.5 kB view details)

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

aioesphomeapi-45.5.1-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (750.9 kB view details)

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

aioesphomeapi-45.5.1-cp311-cp311-macosx_11_0_arm64.whl (588.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aioesphomeapi-45.5.1-cp311-cp311-macosx_10_9_x86_64.whl (601.2 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for aioesphomeapi-45.5.1.tar.gz
Algorithm Hash digest
SHA256 0fc31a75313c37affdcd6249de3607e0c6a6bf7d9433183ec78a780105854ffe
MD5 433101b54c55b21a66969273f06c072d
BLAKE2b-256 5f8c762d9a533e299fb83bb6db0dc6e49de20cb9217190594c4a1b0d18934c50

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.5.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 c099093cdb51ea1118980c5a2ab3f0be017b145fd4ad764e9127a875599323c3
MD5 094360c13e80a1e84d60ff36a7c2dc1b
BLAKE2b-256 d65822b0440e09d84a63ccbcaedd23cfef2cdb79838e45b8b163418abdf68619

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.5.1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 15b50a64b1e216ad710814eb1179b07aeb8480a52fdc0614d107d7bb3b0e0a23
MD5 1962b9e7b7b99b2e9ea5c2dfc66da5ae
BLAKE2b-256 88c607a3d13ef15f48864aedd711ef21b255cba6debff8677ac04f43f067bc55

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.5.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c84c7ccf8cfc54e670813cbd276a5c0bafbcca67f7dee2b50a1cffa376195e50
MD5 2e2c5983d4c0c61fbe9889431a87b309
BLAKE2b-256 5b313aa7f282d68c0e655e2339ca21332bc0a1b189bc9719ddd296fd3dbbf9c4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.5.1-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 086b7d321c45ebecd60aafd7bc31a6c8cb81df311f1a9514ab1e24795d80e0d0
MD5 3f7543df80bc05b92f17c15d690462d4
BLAKE2b-256 81a043fabbc6729d366904e55329c9240ab3de24f7451f1c8af6ba2d3d1d04cc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.5.1-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 69f1500b521e85356aefe72aa6356ebdc496e3a6a22ca9f3a9efeb7b38d3e778
MD5 d80e6fbd828815f5f7a2b6c2380f7c75
BLAKE2b-256 52d22add5fc40a28fc02ca2b7447e2fc0a7c740b35858fefbcc1c494106cd5a2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.5.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e7a0a8aa6724b5251c2f9e103440cbe0cfebf23b12bbee554efd88d285e8b5c4
MD5 a676f3a53fa4bae59a63f240822a10a1
BLAKE2b-256 e0d7fa35c5cd58a5a9795c6d41cc7041e3019ae44f408f795628a25b9cec4fa8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.5.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ea6aaf37e4a210d1309d4bfd1d1fcc3ffaae40bd6515e28e0a213f0813f8d571
MD5 07d558ae669e19bb6218afb2e298daae
BLAKE2b-256 3c36e3ade6405e3f3d5ad761bd33350ed1fb08d463aae66d6fd89f8319185c5e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.5.1-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 9fabeb966fe3ecb4a65f64262c3020e8a353ee226510258fbe721c44cc7a1873
MD5 e89d1897c19e0aa209f74b54ffb0cadb
BLAKE2b-256 b8949e767626fe56c306d018e7f61dffa6646278f5d89f70da3fbd2cdd4ae4de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.5.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a69a8c3843b87b95d7ad58d8406ee979ff4a13364bdecc86c862c81ef8c3a032
MD5 fc8e64be9b7fd5c2379cfa36c4a75a0f
BLAKE2b-256 5fe172bd8d0893f60ae8c7d1580496eb6ae149946df23cec132c9594fa6873cc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.5.1-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 7a85b893d939d18140235d9f628ea99007cae72840b9bee4654c4dde3f05260a
MD5 1de74652b1fac958b7d772419f4de1da
BLAKE2b-256 97bc61229384f362ae6d67f63d9a594a703c79e3a35c3323a6f5e037031be777

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.5.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 771ea8f0e82afe86c3ec53506058523708e8504ac7f008ce02e4f6753fccfebe
MD5 05f94a41a211c3208c4e4f2831bb14f9
BLAKE2b-256 2c4430de1291f194436c35efddff77a06ee6e70f4d46a58bba6b7ff2b212c039

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.5.1-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 fb2dcd806443fbaa791cb70de41c75aca459e2f43a28bfa8dd66aab97262bb7e
MD5 12252a9e59510967b722526b2584e81c
BLAKE2b-256 1b17b54e645a9d57c19e37dddcba84f68397913fc54764d38bc2fa4df078c308

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.5.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 215387dedbdd842b9ca18d9c83d478c1f1536b7e38d68f5d1f25d4b99bf9e117
MD5 be3a8e676d5d186f8e7f90fd90b7e0b2
BLAKE2b-256 756c51e889cab841761e0da84c3ce7ff7772b544b4fc7aa0bcb052a49b999d52

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aioesphomeapi-45.5.1-cp314-cp314-win32.whl
  • Upload date:
  • Size: 502.2 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for aioesphomeapi-45.5.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 4127204666e0b259430491f1fdfbec9a50253ded88bf674efcbb8b26622cc45a
MD5 65355dee5ab9c5644f4e6ca8deeccf25
BLAKE2b-256 a6591ed3f280fde1b99a896da2c8da695b4a92c966a4a4fcd8117d2fe6322432

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.5.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3a0aab55a8e1a9f8e950dcaa13d16fc0885df71f380790182d3bb66df7e4f266
MD5 7e983edd06db4bd7e428f3116e65b86d
BLAKE2b-256 56dd5067c37f68dccb89afd605b5efa990ac9765173ca729d0cece4bdc73b829

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.5.1-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f0e14809b8b30ba338cfc7f4e5269544173a216aabed35c350aa4c80884a5a5d
MD5 cbc46ddabc6b05a923d2471689447e7f
BLAKE2b-256 0b57fd8d466c3ecdcafa9aa266a4adc7fffb927781308f649bad0d42abb355d3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.5.1-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7cabd4608c42a980d2eb7d45f0a70f8f2053847691444c65be5e221a86106587
MD5 b84c4211bab1544a7fe639fb4a648f72
BLAKE2b-256 c1b47239eecec29c3e0581b412e8c8dd6e1f40478567a188297b52d6ef4f229e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.5.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a41f6b97fb24296d9db20add4894fd8097e5e980e5483d119a3ed2a4b393dbb4
MD5 a0f298ce1b266adc161db670c60bb7ab
BLAKE2b-256 d66650cdf92b957e2e08992c4af46b68c40fb3a15fe94bc2e9c02c96d204d0b4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.5.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3e3724e88ed1f9f70c738ed5e5bcaf508a95cbdcf7ecf20b29a59fc583881648
MD5 75c558c541ece11a28ec3e31b5d57cba
BLAKE2b-256 cc31dac5dacbbbb44848b7be7e851a4291129673521a44c2e7808b540e84633f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.5.1-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 76ba040897839ee76fb06661a476a5481bdbe03e72f5a7329a180c46520ded6d
MD5 a70294a6c9ddcd22e05de2c553c6eb66
BLAKE2b-256 a7758b2b4b9bda07c3c8463b06f3290b82bf457c946da8a8b8f45e601caa01c4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.5.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 eefad77a1f9ec1ba8bd2b051eb309c1bba3799178e8ae752065cc889f59a6875
MD5 ca22ff0c2bd0544e66441809996be7fd
BLAKE2b-256 92e7f96fc7dc8df919b6e9f041fffcf362d1047ce5a3655a4459b2b2070165f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.5.1-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 47df80c91849da8dcbe5305b4dc8492d932998274ea06cc20d6a0856b6b183e8
MD5 51281ed1bd5e5d73e9f24180f16d86ea
BLAKE2b-256 33fe83b15edeb940e5be57a110390ee65f174f871b874499416d698e8b667d1f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.5.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7fce74693f76a89bff01bb6bf6fe6314fdcbfd9f2991df256e54d52586fd4d39
MD5 83ec95148863bf63d0aea9388ce0bdc9
BLAKE2b-256 d5842e6eabd51370ee87cf3b46398c8216de47d1803da91485f3572015a34f1b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.5.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 1728b03f34c1acd850494797642b97e2499d8aff6274c7f31b95f97c04a36864
MD5 e718f06ea145ebce53e19d5d61c03685
BLAKE2b-256 7a8d137dbc17b88a1133a9353e6fb03a5c8a9293790ceb8cfce6886707eed8b5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.5.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 00c19a829d86849aad3abffa0553be3d1043b7fb352a3a09e6f7fdfc237a03b4
MD5 f752ccc535bcf3be38c650ad1fabca3d
BLAKE2b-256 4c953b5dfd8e937d56fbe2fc8194513d8385e4cc2a18150faf9cc70333fc83da

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aioesphomeapi-45.5.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 494.1 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for aioesphomeapi-45.5.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 9d5d624fad06db3eb3f2e37b134aed6bcae0a81f452d668643dde3899317111c
MD5 677aa72a65daf125c27d57ea58e4fd4e
BLAKE2b-256 c52fb7bc3e42f5bbe1748cb4d6b81d51c56e999e0a282687294fc36272c08110

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.5.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 20c210fb4757a6c234a9cecc8acd43b6bcfad55f276623a65013c0bb7abe16dd
MD5 a56ada7b80474f3e7047457016910486
BLAKE2b-256 578401df6eb7c6463babb3a61549a4c1e85bd5638b884a46ccb6129f3d92e797

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.5.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d216721b116999746359dc2982a0d11b6fe893c6abcc62fe6ecb687b85367c0f
MD5 1cc3530204894319932385c00ecfc46e
BLAKE2b-256 b1101616720ce06a3b109fe6684b9fbf59f799da3ec2f3bb3babf094e56b30f8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.5.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1c995e585504c069f86746bca4d3b748f1742a6623aadf4e78f67eba395c07cd
MD5 790973e346f37446f16e43dcc2845157
BLAKE2b-256 aa2bc12838e3c1330082a4efe89f090e013837d9fff8677966959b4083e22479

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.5.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a6ee01856320f9b007108180a60b022a59c33734b3bb130a169dacba54f426de
MD5 05b2a4aab4ded88f039ed46823f03948
BLAKE2b-256 4edc7fc28e4f564ce8bccfd0b21e09ef8ed98ee31b7a6adbc82096f424048242

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.5.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 140d558c5ad8ca15641f263c215d1ee87592920bc7a262dbfd2382a0a26799a6
MD5 66d21a3fcc620e58a83b78fa1d9f351a
BLAKE2b-256 2f21ab3b20ae9a32b8e3312fadfb8cf29b7288af79b40d544593c0bafb2f43c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.5.1-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 1559e9876117293ba18251185424e2436c66ef9c51e023feead41059b3be27c8
MD5 c3154e8ccf35fbff92527b5e6ed6b64d
BLAKE2b-256 28df9256364ee02c090428ed20074d07aed03980fe8e03744e47231f83db4fc1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.5.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7bccc0209e72ad595ac080c362a576fa761d518177e679f604d06a5247aa1b99
MD5 adce72b381a2b95e1fb2cc4f98685803
BLAKE2b-256 3c70e0db3c448a14a2643e3edbd72696b7ab92e9d8bfdd7500135ffa82b4224a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.5.1-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 c593982c13fb6e9d6b5257d0a64ea286610527e5c73dacd02b1c6d31d9d45cdf
MD5 5e4ee19e471635de616caf7e4a015780
BLAKE2b-256 799f51027b7dfa5b658651e1b5c7472830256cfa7572c6f67d1c817db8e7b504

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.5.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8fb05f22c0824a12ac75ab4675bbf7bc00e32e0972aa5d82215803255effc1e8
MD5 9fdc8715ea76705b61aa6bde55194355
BLAKE2b-256 1a2ac98023bb254191066c26ddab21b463ef8fdd175d203a5b7aaf2c2936335a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.5.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 98dee7742ffa64a3db45da40cffe665c26d56745c49e8ee87e01374b35b83a56
MD5 a5a4332c1dc25e485ff1c1eebf159e6e
BLAKE2b-256 7997dd9c2f857cbb1bcc24d53c2f76d9ba181ea7fa86f4203d55ac658b47c15e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.5.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d33f5ec24601f53ade94700ae49a501ca36abf3d9877c1607413e7f127618344
MD5 5dbded717739580263524b7c8f12bc3b
BLAKE2b-256 b33dd1db3088e4f5771aa47f486dea3fa23b6eeb2817475a0fab35d0767919c4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aioesphomeapi-45.5.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 496.1 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for aioesphomeapi-45.5.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 9090f171dd7792283c9974ec26cc6aea803b9463102b8950f9e3a9d49cf20464
MD5 9d067e00fe5691a623897fb1d9e929e6
BLAKE2b-256 fd565590193c4e3429c711d65a34293ecc3a38083900f7485f44568df43a0dce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.5.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a23a331bfb7c9b2d39f1961bf00185e632b81df4e1ef4b5e6374d1a92ffd13a7
MD5 1bedae695cfc5f125c11d1869e2b618d
BLAKE2b-256 a3112b5f496f976b7f7afa16bc7be544eb5b1f809cc5be6b52316139f8a6e7f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.5.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 39d50ffa4bc0db55268589886f68d4722af10e9a646202cb4bb4d2f4432462fd
MD5 84fb0b5576e07e9bce72f0578f0fbbd1
BLAKE2b-256 6f96b5f5c2dc04e7c42200622b5d7b75474dcb16042c4288f87b758fe43447b7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.5.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 77c179b694006833654c08e713e778c1e59d6626c700b09ff49fe9ac6bd22884
MD5 2b5000491050d9d106deb64a7795d8fc
BLAKE2b-256 b396302982f9d6044f2f86ca3f8b24bad87aa38c3b135e3e72dc0874df3e774a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.5.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 546e6610bc3ad41c0f3ae67c5b64fd642117d0c1ce67dba34192b51af6679390
MD5 fa0b97521b97a94e53dfd7ad27eef9ad
BLAKE2b-256 e04caad2b5008a105ce5b8e74339bc7c853ec3c89febcffbf949f240273c58ea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.5.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2d742b1a06a9d6c73dfce3d74a94703706bc969d6a57a47a3a4196b6126ca73c
MD5 3191b28762de1b735f72e1518390dde6
BLAKE2b-256 3709dab9f409a155ed67a35bf3d9f78d474517c3d149acbd68da7b8118856ac6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.5.1-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 bfea1d89195d67eaff56dbe5e661837ffd6918a2d007485b650917c9c7798e39
MD5 51ad7b0dc5f40ee699cf8add5642cba7
BLAKE2b-256 b8951b604c0d871c30d6e45e9d5061cf2d421a9340a994f3a48f97f6abdfbd1c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.5.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2154a23ab7ab58bd4f14e1044bb84aa01e764d0d38b5fc81086e6a4f23fb4eef
MD5 186f2f32da7a01c210dd1c67e73e11c5
BLAKE2b-256 d505523b713f7da2a1f67ccb4e272129c69973b8b6d99cc6d1b1466b7f08737f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.5.1-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 711fa4d0d6610c0b7bdd164959301993ad65293569e0c7901bf93a00ca278b55
MD5 415c2a37dbcee33667f73af2fee4b60a
BLAKE2b-256 9eb677bb8a5ad260e504f2a0afc1474afe2f2b1d6655294fd761ae2576cb16f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.5.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0762cad70d425277f60c875d290dbc0174397992f17f2a554de5a9eb74d65d71
MD5 94c6bfd483f064256d7fe6aeab0fb385
BLAKE2b-256 8cda2538fab10791262f2d82c7a33ea6aa7800d4830048de774985117380b4c2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.5.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 38f43392b951909fc2061339e798bed2134e14d31e19728e3aec192ee02a7760
MD5 25642dc7080ebbab489b68880cb78a5f
BLAKE2b-256 2391c8cb850ddba2d9dc15c9b25b29ae78aa93ad31b88cd1f4464f28b5a66a23

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.5.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 272de8c81c1d47f4ab3d29302aa01624569bb0916761095700a34d258b30428d
MD5 d9741e5f795b08043d8d25264db5c30e
BLAKE2b-256 c5c16004ea99eef6c2a252c85493037756394bd6561732566235a9fbef7ef2a6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aioesphomeapi-45.5.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 503.4 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for aioesphomeapi-45.5.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 e952c3dd0aa724bb6c0552f8489c2838ac78ff2bb77d66ff56b926ad032c77e8
MD5 7f5e593ebe27fd540f3889a31b70a269
BLAKE2b-256 3a09858f54d70cc3f8c29c9a249e74a9690646d18af2d3ecd28e1568acbb87ae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.5.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3727ea271260705febd65be7029770edf5a531f70062641f03683d6d42692936
MD5 c650e6b1e2818493e7bf1083e551cce2
BLAKE2b-256 e8c2eed2fe5d708abc53302145fa49f6bcde7be8ba822ea69f17ada5990d58af

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.5.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2788d33ea0cf05fc61089c1bb4c7ed5972969c880f2a3ab1957f62966d4b187d
MD5 a13b3445694400c1389b2e8fd33140d1
BLAKE2b-256 d4852ee4b1f568bbdd73c89fd2420023c37ff55d91bce6c53dbf3d26b2e3835b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.5.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 51f4102da863301cd7b31c80766c27abe9f507ad3c75c52c9dd2ab2ebe4828fc
MD5 46506bab0772ce088ede917a7c1c1af5
BLAKE2b-256 285e914bd954b68885c9f01fc8f5e0f1b3a05102326d2460ccfa331e71031482

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.5.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 531f7e360a4fb2a48a338baa855f819e52dddc4c57b4b702cbf6f96d79204a77
MD5 3e94cc34a334700c03de79801e186d7a
BLAKE2b-256 dca689a62e3267a1d090a5442ee1d934536eac719b2f6389f523433941d03117

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.5.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2f4fb5b1bdd9628ab5884d4bfda72b7507eba5c0e97540ae3f77ac7844acb318
MD5 1a0d8eb67049bfdb91caea0b21a6f4af
BLAKE2b-256 4f0a5ad8c628a8c3ac7c9955539f1c2409e421ade43051a0f43ae134824a28fb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.5.1-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 60d1b9ef5103b7c2d024e3c758ef7835b5ed063ad09667514e79058354076db7
MD5 7492b3929bfdc03d27f1097eaa766bec
BLAKE2b-256 13ac666bbee8bde1155aa97624b20a0909dfe45bc11a96ca4fa3c1e8f24c42ea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.5.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e825915d3af4301dce0644a6754459eb8519b4aee350f96f026794d2087f48ad
MD5 4782e88372dd881b5aa5e78bb093ab27
BLAKE2b-256 9648eb3e7f80bf448afdc5a9fb44faab7599ffb4f74b0200342c5be91121ee19

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.5.1-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 24bb8294ed1155f6606a82cef4dd15229685809e03a32238876eb5bd601ce53e
MD5 580369014b07f2f8fc13d63264298a2c
BLAKE2b-256 e8ba279658339050b50847711a5201502c7792add25ff8a2726649d194bb5c7f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.5.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6681d9a1273b3a4dab0bcd0f0f6cf9b5b46aa4203a14ac449dd9fea681510dcc
MD5 f642cfdadc7a391926644e2dd509db91
BLAKE2b-256 0d0483b56c9d488f5f32d8966e5c2cd2d8e190fcd326a3d2c8011fcd0969fe3e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.5.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 dfc4cd7e8869be07250f4999085c8e5b2a9aa3544f449fa1a90426a464995b53
MD5 0dd89043542b8a7c2bae0e25fd76441c
BLAKE2b-256 c2b8bad706bbeb9ff0cd4bdb9d3f583cfe07aa08473c4d7b60eadef7268fabf4

See more details on using hashes here.

Provenance

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