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

Uploaded Source

Built Distributions

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

aioesphomeapi-45.6.0-cp314-cp314t-win_amd64.whl (602.9 kB view details)

Uploaded CPython 3.14tWindows x86-64

aioesphomeapi-45.6.0-cp314-cp314t-win32.whl (546.8 kB view details)

Uploaded CPython 3.14tWindows x86

aioesphomeapi-45.6.0-cp314-cp314t-musllinux_1_2_x86_64.whl (724.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

aioesphomeapi-45.6.0-cp314-cp314t-musllinux_1_2_i686.whl (747.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

aioesphomeapi-45.6.0-cp314-cp314t-musllinux_1_2_armv7l.whl (666.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.6.0-cp314-cp314t-musllinux_1_2_aarch64.whl (712.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

aioesphomeapi-45.6.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (715.8 kB view details)

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

aioesphomeapi-45.6.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (648.5 kB view details)

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

aioesphomeapi-45.6.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (705.6 kB view details)

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

aioesphomeapi-45.6.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (734.7 kB view details)

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

aioesphomeapi-45.6.0-cp314-cp314t-macosx_11_0_arm64.whl (636.1 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

aioesphomeapi-45.6.0-cp314-cp314t-macosx_10_15_x86_64.whl (642.8 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

aioesphomeapi-45.6.0-cp314-cp314-win_amd64.whl (564.1 kB view details)

Uploaded CPython 3.14Windows x86-64

aioesphomeapi-45.6.0-cp314-cp314-win32.whl (506.1 kB view details)

Uploaded CPython 3.14Windows x86

aioesphomeapi-45.6.0-cp314-cp314-musllinux_1_2_x86_64.whl (715.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

aioesphomeapi-45.6.0-cp314-cp314-musllinux_1_2_i686.whl (740.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

aioesphomeapi-45.6.0-cp314-cp314-musllinux_1_2_armv7l.whl (652.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.6.0-cp314-cp314-musllinux_1_2_aarch64.whl (692.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

aioesphomeapi-45.6.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (708.2 kB view details)

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

aioesphomeapi-45.6.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (649.6 kB view details)

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

aioesphomeapi-45.6.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (685.7 kB view details)

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

aioesphomeapi-45.6.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (729.3 kB view details)

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

aioesphomeapi-45.6.0-cp314-cp314-macosx_11_0_arm64.whl (590.8 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

aioesphomeapi-45.6.0-cp314-cp314-macosx_10_15_x86_64.whl (603.8 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

aioesphomeapi-45.6.0-cp313-cp313-win_amd64.whl (551.7 kB view details)

Uploaded CPython 3.13Windows x86-64

aioesphomeapi-45.6.0-cp313-cp313-win32.whl (498.0 kB view details)

Uploaded CPython 3.13Windows x86

aioesphomeapi-45.6.0-cp313-cp313-musllinux_1_2_x86_64.whl (711.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

aioesphomeapi-45.6.0-cp313-cp313-musllinux_1_2_i686.whl (739.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

aioesphomeapi-45.6.0-cp313-cp313-musllinux_1_2_armv7l.whl (661.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.6.0-cp313-cp313-musllinux_1_2_aarch64.whl (683.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aioesphomeapi-45.6.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (704.4 kB view details)

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

aioesphomeapi-45.6.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (656.5 kB view details)

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

aioesphomeapi-45.6.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (676.4 kB view details)

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

aioesphomeapi-45.6.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (727.8 kB view details)

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

aioesphomeapi-45.6.0-cp313-cp313-macosx_11_0_arm64.whl (585.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aioesphomeapi-45.6.0-cp313-cp313-macosx_10_13_x86_64.whl (600.5 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aioesphomeapi-45.6.0-cp312-cp312-win_amd64.whl (555.9 kB view details)

Uploaded CPython 3.12Windows x86-64

aioesphomeapi-45.6.0-cp312-cp312-win32.whl (500.1 kB view details)

Uploaded CPython 3.12Windows x86

aioesphomeapi-45.6.0-cp312-cp312-musllinux_1_2_x86_64.whl (715.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

aioesphomeapi-45.6.0-cp312-cp312-musllinux_1_2_i686.whl (744.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

aioesphomeapi-45.6.0-cp312-cp312-musllinux_1_2_armv7l.whl (664.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.6.0-cp312-cp312-musllinux_1_2_aarch64.whl (687.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aioesphomeapi-45.6.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (709.2 kB view details)

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

aioesphomeapi-45.6.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (660.1 kB view details)

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

aioesphomeapi-45.6.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (681.7 kB view details)

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

aioesphomeapi-45.6.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (734.7 kB view details)

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

aioesphomeapi-45.6.0-cp312-cp312-macosx_11_0_arm64.whl (592.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aioesphomeapi-45.6.0-cp312-cp312-macosx_10_13_x86_64.whl (607.2 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aioesphomeapi-45.6.0-cp311-cp311-win_amd64.whl (563.9 kB view details)

Uploaded CPython 3.11Windows x86-64

aioesphomeapi-45.6.0-cp311-cp311-win32.whl (507.7 kB view details)

Uploaded CPython 3.11Windows x86

aioesphomeapi-45.6.0-cp311-cp311-musllinux_1_2_x86_64.whl (730.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

aioesphomeapi-45.6.0-cp311-cp311-musllinux_1_2_i686.whl (766.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

aioesphomeapi-45.6.0-cp311-cp311-musllinux_1_2_armv7l.whl (672.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.6.0-cp311-cp311-musllinux_1_2_aarch64.whl (706.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aioesphomeapi-45.6.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (722.4 kB view details)

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

aioesphomeapi-45.6.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (671.6 kB view details)

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

aioesphomeapi-45.6.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (700.6 kB view details)

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

aioesphomeapi-45.6.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (755.7 kB view details)

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

aioesphomeapi-45.6.0-cp311-cp311-macosx_11_0_arm64.whl (592.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aioesphomeapi-45.6.0-cp311-cp311-macosx_10_9_x86_64.whl (605.1 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for aioesphomeapi-45.6.0.tar.gz
Algorithm Hash digest
SHA256 a2db88693a69ac0b1504fd75cf951984ba2ab360c3c63f92fc72e820ef816a3b
MD5 06fb1257c7d4908922fc4c85affa15c8
BLAKE2b-256 57af7f83d725c98d69e21eb0da98bea4f2bb40d110dacbf2ab931278fe2c593e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 7a65f1232fcb5bece53960fc34afc72b835f873803c8108703d9db541e4450fb
MD5 d6433f5007eb704c8f3aedc8d2e36795
BLAKE2b-256 b39af3803623b50ac96c623853b6b6f16c13991884fef74037c22575ace926e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 f533114cab437e574611e706e2e38bd553a4e7b1c34e891ab409da79b05ff35a
MD5 5a7e7ee6e8352cc2609b360ebd01c53b
BLAKE2b-256 bc3f0dbf04bcdda4af8dbb0f1b0e6e2c4a487b4230800ba697c23f1c277fe082

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6a1f795ffa2434bb2f5f9d776470985d1871eb670cf3403e3d51bd89e16be2cd
MD5 b1965577eba17f4192918cd409114263
BLAKE2b-256 9a3c90815a30001df118beaf7c42730a3b6b5cee4c761f1eeecd28e8b4187451

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9f780bba14e1ff867b52d7b6a2de94990ae8529e1154911a41a6358cf4ca3d95
MD5 9d82664d38f0047d7e61976abf3bc57c
BLAKE2b-256 bd9292d4d8829300f6c0a854a5d615626e95d5b33e371307af78fd6011107fe4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7b65f2da4c6effe60f22f5c45d276093f9d77db2b70072b647072b213a2d6d04
MD5 9755efc35d135fb17cc640d98e39f619
BLAKE2b-256 a7c9366457a486853e3d1c667a0e5a2513867981ff95b4b5f266cc90ab143098

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 328a9a6e55f113c95a0f7516787963c11896601a49da00dee7b6c81467011045
MD5 639764d265138be01fb07aacc3350053
BLAKE2b-256 dbb7776817f05a6c25ea6e1eebf07c7561c85f583472f52c12c07a26bb0eb14e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2d4b4d068bd366c45117988eb80f48a5bc3a00e7f31bf676337f3731bb9661ab
MD5 720b81f5ab3182a3983172f1d20515a0
BLAKE2b-256 df04fe2df599deae59ab789db0908d1c4af105d30147fe9e718e54f8c0c264fe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 348e4bc86beb987b74be85cb8279edc4a549c2dd9392269a9a36337016d8743b
MD5 3eb47e125c9ebb5178fc5bd352160c4d
BLAKE2b-256 a8925ed96e2f931daf023102165e866e497464f122ee78210a586dd3a761096a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 76092b65a33e99cd3c01ae0473a0f9bef7f7c57ee3b54135900896c6fbaa6b49
MD5 25d962902e84d0eb040c1165130bec8f
BLAKE2b-256 3f814d5762e65d14a67c220fe0c0c0d2bca4be50649437a922e29f8e6fe4af32

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 5fbca21bfc6128849a662c54090fd7d324e2f87ff4b799355e49eba5efa19bbf
MD5 efb3532a4883c809ecf34b866072f971
BLAKE2b-256 8410ec0a2c5b33dacdb4e61ded23b4e2b91f45f6a6f7ef253d1593981e3b7edc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2de55d6d4390769976a7567a6e1c81b258767bef46f0a4297c5e763d19223491
MD5 b420b39a29f83ba44fc34ef323471ce2
BLAKE2b-256 c03cc699f212ab5d9f0891647d5bfb17559323f79fa51b994f950909e113f595

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 b92d1d1b2a4fb3140aee947d6a06ad1063897a51955542144eba14ef6577b84b
MD5 8c31c75b8920780efa36a3579e103dbf
BLAKE2b-256 ac5b3320dc1c1d0fd0d5723380690cdbd0027cbd5ce4edffb1822322fdad152b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 03568afbd04b08de67061291d2d6853d8910fb52b1b2d452a86a1984cb3c6917
MD5 9164b9ded1d63df53c5027364813149b
BLAKE2b-256 82c99bcdc161915f84f5b9dcf61b1d05730143abd60b28ca503b699f2b0ae15a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aioesphomeapi-45.6.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 506.1 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.6.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 c38ee4abde162de9de3dbc20ab91ec0ab9d440d6dd828ec1dd64003e4c2cf2d7
MD5 222e27ae3433a586b79eedce5f3108db
BLAKE2b-256 11f4bed394c2ac60eefb088740dfa2c666bfa47b9fd91f6138929c40494d1d2b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b36e187b2b9cd460f1c6997e75accc686be2984abd8fe48bff118d4ab77c2190
MD5 530577840c400490c10623c22d325955
BLAKE2b-256 8c5c81c65ef6281464ac4049af7201c2791f05eb8b7ed6a61e3a7cdf807e44e4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7e667cb6e5dbf93490ed3e916db5c6a835ecd7a525756b80d6a4ca6f5cacfec8
MD5 a60e1368a471d9d7d6b014bb7085089e
BLAKE2b-256 80ad24e530a679bf3c40758eef0bc499b10ed6fd4a92001d30916e3a12b2fb28

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f9622c2ea052cb63d236391a6ef0fc3446338bc19171e80f0b53a58f98a088ff
MD5 9dcf59610fa177a34e41ce3c1040d66d
BLAKE2b-256 82d674d3bcff54e5cc26fc5f93a7dc0f7582632ad6b9c717aadf95e1035eca9c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2b73a9000d95cca0c473185c55a3e88a9761f333527b009014e58d932fa3422a
MD5 4c56e0597170dbfd8dc7e0c4b04172b1
BLAKE2b-256 90ee5e12cdfef7d491f6bced4320fa666ae6475053d2e454936361603f799b8d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4e3662757c1b6577a73f453b4a2c1bdd1c4aaaef6ee0f371d4fb276ca0644563
MD5 6d805fc0eed80f91ba1eea456703aff0
BLAKE2b-256 ac6778ddf6abbd229cf2706823f554a355afb8632231efc2496c202cfe83e994

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 c00d088fcb0b53346d713779975ef1678a6e47fcb26529968e8be4e6a7452c5b
MD5 9352259356ead95fbc0ea82adf4d9d88
BLAKE2b-256 f2de774d685ed77da0c70e9db99730f78c3312d14908ef2621b9193f4d23bb53

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 12932b40f18f17cc9a84012547c9329566dc5df0f50d25ab1fc6082e921dc061
MD5 a15913770d90147e4155254ddf7832fb
BLAKE2b-256 55ec54bd9acb63bbb9edf9e99a78ec158e64226d767335ba5d512403fbdfdc12

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 10cf5b424699a251577d0aec8767b496cd43b4bad6a21c093b0cf06d0e135d3e
MD5 d6490b8af6a11add0117edfbffa1d83d
BLAKE2b-256 b68624b1f5600446c3cc9e6de3e5e6dd15ea119adaa6a00f08b217d63ee7bf30

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 959b22c0a3fa66ffaf4bf246e427aad7a1481c336cf7b5539ef91ff03160d809
MD5 0ad94d96ddc72bea2eccbadef8b60ffc
BLAKE2b-256 2e498a18dcaae29aa4557871b40a0e35457f857c95407eca0e08b40e3288a325

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 9cb687ff94785dd897a263535e55d20b8ec89ffb35bcbd41bd55ba7ed3bb6bf6
MD5 e7e891d0c1e4922de8e8e1f6054574eb
BLAKE2b-256 d096ddf20899c84d08a8b5bb49a7fed97f0e755718a3459261b99df4012bb312

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 cdbb6e41d117c18f14d7152a153aceb0586c2255ff62d5797f7372ed4222a2e9
MD5 9511c1acbf80e38b5426a2b590426322
BLAKE2b-256 422f7129897810983c0a1432bd1ea9bb05a0ad2c0c9ac9a3dee060c3b426fd20

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aioesphomeapi-45.6.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 498.0 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.6.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 52c4d494c726471c06039df730c926fbab95a2cea78992f48f11d2a6a25af320
MD5 3eb6d4308f9199d58b725ab2f3497930
BLAKE2b-256 b7aa8966722241732704e4ed6424107807509a870fd2ef919fea1634d39e0681

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 77492e04619161e054721268c033409233621d6cc74ce4d169d83fc36dc432fe
MD5 25718cdac760dcf44145f1f5770e4f8f
BLAKE2b-256 c7eef4efb060cf73cce4f510b2799eecf15cb3979587f05f6e10634447a54bfd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4cec569a1e47f03afbe4b5330783995c5b84833e8534c095f1f0f6787d4d4a76
MD5 a429f3076f3429637a69f11eeb2833c1
BLAKE2b-256 cdbc5f38716edf7a620f9989a756f16ceb938797d695e62cf6c76e66e32db470

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 484c013451414edf65ffaf6d51162272fd473c95a3c2d9b3eb186725f9438e5f
MD5 75bbcaa8e219e80844322a8d7237e171
BLAKE2b-256 6c5d157404724c31b15c8fc24e64d201ec1a8b23a4049d4daaaae1b2f85fc0ed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4b55c025b51059d4ecdbdb32f205c383bfa0c20df3e908ca07d42fe2bed950d7
MD5 b504d9d93f6621f5ac0ea842e1861dd5
BLAKE2b-256 95b93d3ebcb18ac23768bfa6430daca27fa636ef1585ff38b62230863038860f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6e81901328f3e7479d5d5f87baf7528f38aedff2c9ac1bfb3635ac6e69e5db3c
MD5 9d7ca904280929a95c8409b106fe3e1c
BLAKE2b-256 d79ee69fd665faa121553fa922e6f900895953e58ab5847ab331b940b76e4bce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 3113eb3313e6b0437e0e2a2625bf275568256ea438ea9f1f14d10883ac1aab0b
MD5 c3ed69bd0943cfe8dfc719524a193b64
BLAKE2b-256 493091f66f758e15f01e6bc9fe57b9933d04612173712e1afc5f916ed9ef24f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 44860cf7f6353bcd207ac5684df4325ec953499efc8f8e17308c27bf0deedd16
MD5 426c17f4e615ca41df217af80fd8960b
BLAKE2b-256 fe0d5a723c4115a7503a51a85cc0f8c6ed17c9e9907280a81edd22dc0a810b5a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 36bf9444f2c0d4d28afaefd19dadd69c6f6e877034625d7e9aeab28556fb7416
MD5 9a48948d80c7e2e879f5fca81a69a242
BLAKE2b-256 a652727d269f165ed7a490fb03b7209bf3b803a90932780ce5b90be83f98aedb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 edafb04e800794d184c677960f9f34cdca7ed5b79066004d917d4883ac5dc03e
MD5 7511ef1c40dfcd88e21f066896b3269b
BLAKE2b-256 fe0b7b5a9d67c68ad256c88ae62d8c9dc58e6347b072bebb73506a120a48be05

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f2faa9ccdbe312ccf4bcbe06eb97e5c4027c37a2a42a32e56309b11b79c5e441
MD5 d42e23f3fd8d2f6d2bbe4bf5c7001cb2
BLAKE2b-256 c73e57e0038caf1f38fac00f6aa3eba9f86f32158c450d6885bf05d0549eb3ae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 17bbc3a15c909145a622e1818a63bf994b9e388a7059d5e98ad526551db89d06
MD5 5f53067da1e45243d0759b93c5315fc7
BLAKE2b-256 e1b0e3ae21c3d17e244d9bde2cb5204173be69a356e71333cfc4285e6cfcc585

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aioesphomeapi-45.6.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 500.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.6.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 4c7c967ddecb3eac7f1ed898e6d0a223cb8d9613da671e5c8d15a67b6bc3ae85
MD5 27be132209c6aec42816c21d7e5e5ed8
BLAKE2b-256 47ad51846b21f0d6427acdf861f8af83c29b3015ff73d3b9b15f892325c2789a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a94edf3f7c5c810de8ad2552609c8502145faee49aa0e531b63c8280e772e5e2
MD5 4e387c071c83ffc05aa6e8ea344b2b03
BLAKE2b-256 5cef39cea716939cf594e129cbe09681fedbf3bef7c6feb5fa6734d56e94291c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1443fe95a946a99d8f99a368e6885ad9bf48bd38758f1c6b485d76b5f3c19aea
MD5 9b7d7355b9562bf3c374ce7de0a60cde
BLAKE2b-256 aedaf20508cb852a4faece527f853a755de3a661fa5f7368c4a257f235343547

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9c936bbeb22dca4cf63e0ec5f217432cdb4595d42a2705679588805226912069
MD5 f46bda3729776d4298dfb8a3e4c000a7
BLAKE2b-256 f0c074768d49d42764717644c1abd1fdb82310f25ceffadd3999e3fcfbe3a274

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5ed79e9c68e4e2cd9fe4a0eff80b4b638a9de9c1ab04c7668c18ed7dcb2d66e6
MD5 3c59ad6477dfc77fca6cad7bf4c982ec
BLAKE2b-256 1e5b19e785289ab438f9bcf643e89d966f0d166219af508b818b876b18f35e6b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 eeb5e449f4101e5f728f8d1c9bf28d338592b39c843af9ec2277e773b06d2b3f
MD5 e2e4c0d2f1d5e56f27ee25e0d2776522
BLAKE2b-256 fd11a7d8c9f6384a2c6555fad2ec05d6b0c33a16bb97995bb33e611690aab6ec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 048e887a3d5832dedd5cd1a0e088610edbe47988fef023b79a278dc6b6b5e0ca
MD5 12b5781ec41a9ae1a5bd10bcb6802e58
BLAKE2b-256 c0e2e018b0b0b0db7936966d1f9574fe464e94da5d879a230f96f652f111ce05

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 11efdcf877a6a1acab80950947a5744d100360ad1509c239b947b501ae372e05
MD5 ee0394e49b98ec63a2b736465dd0cc60
BLAKE2b-256 abe66aed84f565c7bce70c2523ecd7c70f62e9ef745ce177b8618d68e899fe81

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 e8d7d0738ffad241d8639c09a10b934ea42bc99303b036a41789db23c567a13a
MD5 61fb952ccc7bf236114bad48f5bf776a
BLAKE2b-256 254e3bfd343f8a6eb58dcd335b3ab1fc8d9c4055631dc5352fe64f969b96bb8f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1120a00968a6de180a3c7fcae7c6495269a6556481da1ee3d8edb042aa9554d6
MD5 1c1ae8da4fddc62b90f242f30699eef6
BLAKE2b-256 f63a0d07769a2c409237a312aaefc2072c0a7a685c2a663577b9ff5f3ddf7d7a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c850f3064a87444f4374b6a8daf6986bae8fa16e5566e9341f179d2c22cd6258
MD5 3b504b92334e766f19318b7182076bf4
BLAKE2b-256 f5882bc501547cea0d4aa05879262384207a8fa3dd6a2688515de2c46974b6fd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8de5277221fef30833f15c1239e44a1021c94c16477973a6372cb74304567cb3
MD5 f56afe3767b0860a5fe286ffc6bf79db
BLAKE2b-256 cd4fee45eb6884560999621b35c624aa57fec8c068c0d61b7adaf418efe694e8

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aioesphomeapi-45.6.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 507.7 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.6.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 937c219fb28e5b2a6973c1846cff55472d59e13f37d1747426a1193f54ef26f6
MD5 ba9291059a06683a07e46befd25c6410
BLAKE2b-256 6c2c6822748cb4b58a8e56ff024fe25f2a6f79a9309c79e44286edce318bedcb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f7d20962138de8d1d50504d142872e08a03d3fb6cf837e7af618ca736c24ed15
MD5 5ea52901de0d0406529279589d53604e
BLAKE2b-256 be5c0862b3d57705e8ae72724a9f09a8f25b4ee6154ff6f67bf49d945c83d54f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1b72168cd2c15026e16af0d3e306912e62767422af1bd4b4661c2a57016fcef7
MD5 450b06f2e7dbb3d53228015696af0624
BLAKE2b-256 9bac59a0ece9cad288144368c9320f1e1cc30651df1268cb4eaf5eb63b3bd686

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8367394f0c1ad0522478d202df8c55fe6c0ab1cb40056168ff95d405d9a58526
MD5 66b0620112f6c639c16ef5ebd090139f
BLAKE2b-256 96969f446a8079806c82cc7eaf26fdf918df8e1ac744741266aab7001fde7e75

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0db6d0ff0fc0e1c43d89947f7b10856196b3282c8789b70808bd8df446ebf881
MD5 5a38f6242cc7a9c395e408415f5db9bd
BLAKE2b-256 f9c76fb20bc8862d6331c631ab6b469d0ae3706cdf63481d9b9a862e84ebab16

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7a7c8823fd107849e26d385aac73b34260089f029b6c0641ba814e182a0e63a7
MD5 fc6d725c5f1aaf2da33ee3041524790c
BLAKE2b-256 465ead57fa1fff6de56c5d447543e38066cd332df60b5f171d7c10ad116846ff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 ec20b0c87f89fc831b5ce4d06bd259bfbf6130709ff8ac929bfd7a029a45e560
MD5 293ecfffa2a75794b0c84c2e5d733766
BLAKE2b-256 3debe01f24e632dad509bcd94af1ff4d4b4b7c99227ecd5df0552d7d5875848a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 11ff8c0a37b36a69e4071e89560f1fa6183a14845e68a129406617660f3153ea
MD5 dfede1006ee7b006cc0369c04c1e3e9e
BLAKE2b-256 34c9d566c874ec875e920cbee06e9fe11706bd682e2be02810640781fc264c5d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 8d386495f2f8387848b25989efc1670f2933e9957a2db961b1fae5038f1b8df6
MD5 cd9c395c69bb0ba226db57e3957f03b4
BLAKE2b-256 3aa47e39740eb1779fed477dd485bb920144826be2fa21a8380b099af300c47d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cfaa52d8813ca09a128ae3ff9540f97442bdb344b0ae6be9940b180b01bf11b2
MD5 eafa54d5bc3302a8df2c1f1e7ac5525e
BLAKE2b-256 f4a07fe76bac46b9dc297b6b6f93aa7307ed3f1fa8ca8f3dace499c95c16d34a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.6.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0c8b2a85ba2d25b9fe92e89283a1ae7eb7d49a9b7f0cb4097a5097fcab39f226
MD5 7e7b81b240b784921e7ff87a6f80d363
BLAKE2b-256 589c64bcc5409fd729372ef9d32ee1feaf6efb4915cd544567c30d39aa68b482

See more details on using hashes here.

Provenance

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