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

Uploaded Source

Built Distributions

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

aioesphomeapi-45.0.0-cp314-cp314t-win_amd64.whl (612.7 kB view details)

Uploaded CPython 3.14tWindows x86-64

aioesphomeapi-45.0.0-cp314-cp314t-win32.whl (538.6 kB view details)

Uploaded CPython 3.14tWindows x86

aioesphomeapi-45.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl (661.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

aioesphomeapi-45.0.0-cp314-cp314t-musllinux_1_2_i686.whl (679.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

aioesphomeapi-45.0.0-cp314-cp314t-musllinux_1_2_armv7l.whl (609.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl (649.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

aioesphomeapi-45.0.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (653.2 kB view details)

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

aioesphomeapi-45.0.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (593.1 kB view details)

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

aioesphomeapi-45.0.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (642.2 kB view details)

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

aioesphomeapi-45.0.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (668.7 kB view details)

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

aioesphomeapi-45.0.0-cp314-cp314t-macosx_11_0_arm64.whl (574.1 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

aioesphomeapi-45.0.0-cp314-cp314t-macosx_10_15_x86_64.whl (578.8 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

aioesphomeapi-45.0.0-cp314-cp314-win_amd64.whl (522.3 kB view details)

Uploaded CPython 3.14Windows x86-64

aioesphomeapi-45.0.0-cp314-cp314-win32.whl (466.2 kB view details)

Uploaded CPython 3.14Windows x86

aioesphomeapi-45.0.0-cp314-cp314-musllinux_1_2_x86_64.whl (646.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

aioesphomeapi-45.0.0-cp314-cp314-musllinux_1_2_i686.whl (670.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

aioesphomeapi-45.0.0-cp314-cp314-musllinux_1_2_armv7l.whl (593.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.0.0-cp314-cp314-musllinux_1_2_aarch64.whl (626.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

aioesphomeapi-45.0.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (640.4 kB view details)

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

aioesphomeapi-45.0.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (588.4 kB view details)

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

aioesphomeapi-45.0.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (620.2 kB view details)

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

aioesphomeapi-45.0.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (661.6 kB view details)

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

aioesphomeapi-45.0.0-cp314-cp314-macosx_11_0_arm64.whl (533.8 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

aioesphomeapi-45.0.0-cp314-cp314-macosx_10_15_x86_64.whl (546.1 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

aioesphomeapi-45.0.0-cp313-cp313t-win_amd64.whl (581.0 kB view details)

Uploaded CPython 3.13tWindows x86-64

aioesphomeapi-45.0.0-cp313-cp313t-win32.whl (517.6 kB view details)

Uploaded CPython 3.13tWindows x86

aioesphomeapi-45.0.0-cp313-cp313t-musllinux_1_2_x86_64.whl (659.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

aioesphomeapi-45.0.0-cp313-cp313t-musllinux_1_2_i686.whl (678.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

aioesphomeapi-45.0.0-cp313-cp313t-musllinux_1_2_armv7l.whl (608.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.0.0-cp313-cp313t-musllinux_1_2_aarch64.whl (648.3 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

aioesphomeapi-45.0.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (651.4 kB view details)

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

aioesphomeapi-45.0.0-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (591.1 kB view details)

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

aioesphomeapi-45.0.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (641.1 kB view details)

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

aioesphomeapi-45.0.0-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (666.3 kB view details)

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

aioesphomeapi-45.0.0-cp313-cp313t-macosx_11_0_arm64.whl (572.3 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

aioesphomeapi-45.0.0-cp313-cp313t-macosx_10_13_x86_64.whl (577.1 kB view details)

Uploaded CPython 3.13tmacOS 10.13+ x86-64

aioesphomeapi-45.0.0-cp313-cp313-win_amd64.whl (512.8 kB view details)

Uploaded CPython 3.13Windows x86-64

aioesphomeapi-45.0.0-cp313-cp313-win32.whl (457.2 kB view details)

Uploaded CPython 3.13Windows x86

aioesphomeapi-45.0.0-cp313-cp313-musllinux_1_2_x86_64.whl (643.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

aioesphomeapi-45.0.0-cp313-cp313-musllinux_1_2_i686.whl (669.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

aioesphomeapi-45.0.0-cp313-cp313-musllinux_1_2_armv7l.whl (599.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.0.0-cp313-cp313-musllinux_1_2_aarch64.whl (619.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aioesphomeapi-45.0.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (637.2 kB view details)

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

aioesphomeapi-45.0.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (594.3 kB view details)

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

aioesphomeapi-45.0.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (612.5 kB view details)

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

aioesphomeapi-45.0.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (659.9 kB view details)

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

aioesphomeapi-45.0.0-cp313-cp313-macosx_11_0_arm64.whl (529.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aioesphomeapi-45.0.0-cp313-cp313-macosx_10_13_x86_64.whl (543.1 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aioesphomeapi-45.0.0-cp312-cp312-win_amd64.whl (515.5 kB view details)

Uploaded CPython 3.12Windows x86-64

aioesphomeapi-45.0.0-cp312-cp312-win32.whl (458.0 kB view details)

Uploaded CPython 3.12Windows x86

aioesphomeapi-45.0.0-cp312-cp312-musllinux_1_2_x86_64.whl (648.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

aioesphomeapi-45.0.0-cp312-cp312-musllinux_1_2_i686.whl (673.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

aioesphomeapi-45.0.0-cp312-cp312-musllinux_1_2_armv7l.whl (603.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.0.0-cp312-cp312-musllinux_1_2_aarch64.whl (624.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aioesphomeapi-45.0.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (642.6 kB view details)

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

aioesphomeapi-45.0.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (600.3 kB view details)

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

aioesphomeapi-45.0.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (618.4 kB view details)

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

aioesphomeapi-45.0.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (665.9 kB view details)

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

aioesphomeapi-45.0.0-cp312-cp312-macosx_11_0_arm64.whl (533.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aioesphomeapi-45.0.0-cp312-cp312-macosx_10_13_x86_64.whl (549.1 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aioesphomeapi-45.0.0-cp311-cp311-win_amd64.whl (516.5 kB view details)

Uploaded CPython 3.11Windows x86-64

aioesphomeapi-45.0.0-cp311-cp311-win32.whl (466.5 kB view details)

Uploaded CPython 3.11Windows x86

aioesphomeapi-45.0.0-cp311-cp311-musllinux_1_2_x86_64.whl (662.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

aioesphomeapi-45.0.0-cp311-cp311-musllinux_1_2_i686.whl (694.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

aioesphomeapi-45.0.0-cp311-cp311-musllinux_1_2_armv7l.whl (610.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.0.0-cp311-cp311-musllinux_1_2_aarch64.whl (640.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aioesphomeapi-45.0.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (654.9 kB view details)

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

aioesphomeapi-45.0.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (609.4 kB view details)

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

aioesphomeapi-45.0.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (635.7 kB view details)

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

aioesphomeapi-45.0.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (683.8 kB view details)

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

aioesphomeapi-45.0.0-cp311-cp311-macosx_11_0_arm64.whl (534.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aioesphomeapi-45.0.0-cp311-cp311-macosx_10_9_x86_64.whl (547.7 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for aioesphomeapi-45.0.0.tar.gz
Algorithm Hash digest
SHA256 9ffa9d86567a69f8b70c86a0455d7378d4066d78714314aea0b2a804395fb579
MD5 014fdc479ef3fd15531620a5bb708c98
BLAKE2b-256 37a490b6becec8f0293eeb650385fcc2b2ff700c4099d91a2c918a7093abb26c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 dbe41b2bffc34b00236f8b3293347a4ac0ab1c952f07886a168abf61354dd72c
MD5 86394f030c4824556b32369397ff343d
BLAKE2b-256 1a78e10a514760d7915d91f51b335af84ba11907af51989019ca9cd22d625b9f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 4266075901cf30e53605d330bf7af80045ed36b2301804b25c67d608bd020b0e
MD5 58301c96b35ee009b3ae40fbecdb9d09
BLAKE2b-256 7201bcefff920a7420058616d267aea6bf2ab66c0bfa3967433f4b62f35d1755

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3ba8ab819d6aee2e217c6dcd672ab5c55288457d80031011a346b46eba4d7498
MD5 9fce189cbd659d4540d08e966bfea4d8
BLAKE2b-256 9acad075e5c748e0636bbfdb11a132d50ca70bc3d810b5ec1af28823c1e1383c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ba28f504d39b2c2b29b0b8967cebaaf9c64d62bcb42f91190f0769452a93ab96
MD5 5073a1bb654f1d8b82d11698c0dab1ad
BLAKE2b-256 10977c498c2b4b61baa02230418c6444b8fc407c554723b182d5bded97a8e4d2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5896883144e7d7070ba447717713569dd6f2c1f6730da772aa5939a4b35cbf45
MD5 4a98acfa738fce412e9d7a586fea852e
BLAKE2b-256 a9fe89c6a72eafcc9449314d9a8e2cd9c7807ac63a2148a204bb601a8ca6a885

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8a9998d30c215a1c3f8076a368556bf64dddaab5160fbcae3765be7712808043
MD5 54d332a248fa2b7daa5a2bd16915de6f
BLAKE2b-256 35d5b5dd7e8639438f9f05961beff08b33291250e172b6f69ab15cf26fa671df

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.0.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.0.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.0.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 547885f74e328236113b8cad9c5e21e064f6a0cbdec8a720862c2c5f9fc80c22
MD5 18cb714355183dfeaf19e5fcc680b4d7
BLAKE2b-256 59f262ec40930e5784ab17670937506f12e79619d8a11b70d7921fc65c76daf7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 8cd484001a2c6fd705f0a726b3574dc3c0b953ec54a9b45826e22412a2b7db28
MD5 9f5e599a20a73f8b9815d36aed356056
BLAKE2b-256 ea465a83af12a16c786dd451d2a9b49354c72ddee2a62e6532ca87e1e3f710ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6f2ff5cf618b89fbfc257b406b092e122916ef6633c537fca7ea3959b70af935
MD5 bc0ad8d04009c7be5a4ff8b6b009c5d5
BLAKE2b-256 4e056a4f4e472a3ef745502718031c91d1d93aff3be31b2d5869c3c98b981a71

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 d1aa900b715445acad5488152ae4862495f19653e09a38a64bfd23f41ad58532
MD5 411712563a8dd56b94091ebcae9b6863
BLAKE2b-256 358e5cb8ddb40318235b102b26858171b90e8e2326b10b78f486d00ef1d059a8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 82e0540cfe4de6e772f90d1b832635d3aeddcb369300529f6b1a833491b87700
MD5 cf3baa021cfa6f43d86fe6fc4fd51307
BLAKE2b-256 b4a53e072a50d3059fa0757afa69e9163f4e643dd2b710e63ba1e5a32e84d9de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 54b91f10c4e768e1700321662efabc9514d6344a87bf319e616a113737789e92
MD5 a362af7405bc93e1ad5cb54a5351e311
BLAKE2b-256 5534c4f57e9d1064911953e57fb673bd53453ee87d5b13bac2ad2426781a8ea1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 0978555306923c8805e3858b8cbcc33f9a9564ccdaf094c7a0e2d4bc137a7e95
MD5 8b50058b31ff7a6d8da4fa636c915847
BLAKE2b-256 befc66b15a24a79c9a17c5bd5c89f02f0dc0c0a80df9e578ab35b9a79c7f48f0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aioesphomeapi-45.0.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 466.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.0.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 9d8e3477e3e8818280e73ea7609306bd2e65c0a5eacd92bb603466796015c7d0
MD5 2f9c178ac8581d2311dc8771ad9e5888
BLAKE2b-256 ca6f28843e4527372ac2fdfcd0a255b9d99622640e9b6b1c7ebc00ec17710744

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 547044041f5cdaa24e2cead12b06c0d8da2b71cbb5bf1ce7e75877924169336a
MD5 34f196227cec32ce38c07a616873ecfc
BLAKE2b-256 15104ace25a2953a3626c0f5ab13a014ff4adc8a027ccb95ba19cb594f845a99

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 db03e38a8a248c0a808e82b457d78ba522c061cb31b1094618ec9f544ad4ae40
MD5 cd0f5b3c1217ebb8a3268cbb5dd8a36b
BLAKE2b-256 c5a1184c3c12c7228d9d8e8a5b366c65b36d4423b403538e37ea0e8140d3879a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fc89db0dad98d4653163c8f38a99e382dea90c479011facea8ddea5ce91315bc
MD5 7e37191d155a87f34d1a16e6828bfedd
BLAKE2b-256 90d23e17d14ea377f3f303a3bac70a7b1f789d6eb56f4fea912e59a29ce138a7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 76a0284fce22e92d867281b93b28eef7954eb8ecdeb79fd122d24e13af0b59ef
MD5 e123fd766f19dbd80eadff9267948cff
BLAKE2b-256 16cd7b1611323ffc7290c5b304c46868b2f9f5762628c1e25ff882231c891534

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.0.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.0.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.0.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3f85a538d1be902c579c7b13c19bd9a37a27859a22cddc98ba41909902a497dc
MD5 b158a08231f98548705011e49f5f3492
BLAKE2b-256 4667ba669082e13a69fa7896b76c6b833d74f90e8eae8de9483d676331d8f92c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 6d10ec9a5e2610338448db4d203a1311ab2845870d9177f94e5120e058fd52c8
MD5 cbc4d59996ed4b340a3da93be5ec477e
BLAKE2b-256 86387306a0e0e13119c7c683931b33c4f995ad8f4b6dbcf6541da63748f67166

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 57886b61c1588395ee648f420244f104d9b0b25bace4eedec498b737d5335cba
MD5 8d7deb6df38d349ab851580dc752bde3
BLAKE2b-256 b43362ceafd2cd8bb054b59b8ef139a76f05a15f32a90910c144c8f4958381db

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 3cea5f8d56d75339ddbeac208161fc48a7033d1de3d442907e8d62988ca2be58
MD5 0d064800d2bc4a4ce5e90ac0ec282dfb
BLAKE2b-256 c6e7cd56291b7f188daa8bc10d7cb80381fcd8242d7342f6d5fadb7c982cc879

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9b94f6b23225ca87b7464da8929f5a38b49fb471630a80a51385f5527baa3e45
MD5 19db1d95a5eb4f3ec9566a0b4aa8fa24
BLAKE2b-256 963d0a3d3e6d4a09c6099aec3267f78d7d1a11d6210afd7b2c18c6c3e3e650ee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 f53c12ccd0b468e464c947cbb3a74df221199644e8ef37d67b8bd7d3c13e5e43
MD5 f478553499e33342ab51a31225d895c7
BLAKE2b-256 597092b9494e246eeff3cb6f9788d57554e44062652d81a45165590be5badfa9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.0-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 5b7c03e83562925454a7aebb1d5995e58f0d1729c4b13580347c22425e0d1e06
MD5 a21174905eb5ebadb930728a51f1d7bd
BLAKE2b-256 c4734a22221aa05bb6fb1f4f73cd9974423117a81b3dcb3f96a264ac20f5eb98

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.0-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 3f2c33915b95e78f0dfe4b82ac48016b2d3bd59869121585737a581be062941f
MD5 a7049b5ace9dbf9b5333c91aa1be847e
BLAKE2b-256 b918cfbb994f579cd8f2e5ab79239f43f13e60e0a6e81ef2a13fee2eb789dc40

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f0f042ebb5dc1f79ad0daaa9f3bd895213c9b837c320098853eb517fd12d41e4
MD5 8d6056a616902ac8c0db6e7d9183f18e
BLAKE2b-256 0611add8e4be5ae5ef64c25ecdecfbd442c39fe53c1d3f308f6bc334906cf81c

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0295fe7630b31ab679c470eede2de1901097c4c039698759c1b9865d822cfefb
MD5 ff4fe4d4b292823f988cba81dd8371ef
BLAKE2b-256 4c795c07ea657aa83fddef78fb297037887a35ca2c1d4f665063b7c946410182

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e93b249177752d1b2feaba9d7b4cf4df953802cc5baae75f24dc9bb41bcc30ba
MD5 053cf166025ecb3000ae308063f4d312
BLAKE2b-256 f37879ac3a5d3a47b40a6e9c523870de24a6ec00b22287391d48fa4987f8cdfd

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 474cc29e877904a1afb3f6115c6e1a3e1ba86098afe4c489162464a996d0d390
MD5 d25adf33fac6d491926ddc80b4c83e22
BLAKE2b-256 7a555a27943257e713e5f38bef03f67905eda81920c187265f59fd67c9602991

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a38b0a2dde7fa4628b435291cc8a6b54122f14a48f4f9ec528d8a54012272330
MD5 7521579c5fced3d77bfdc06106debf32
BLAKE2b-256 36eece6025e979e2ae0651df2ae0d0007c462055a05d99d75e991d5c013f0082

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.0-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 2525ca5ad60e5f5a22f6b04328d7e8ee09cd414b1dbf092b2e4713efe64be8e4
MD5 a53e150db3284c27abfb83f1c111cf12
BLAKE2b-256 e45a0fc1ce8520d15b0317b900c04df2b543d30a9d02df8992a902094c506ca9

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 31327ba26a2b40d8804612d91989ee5df559f221934915ca17a15d5e7e4f95e5
MD5 2f78f57e6523d59d9dbccecc19340af6
BLAKE2b-256 9fb977e5cd93ed81a60bfc02cf6f93dbb2f66f9431d0efd1a19d414fd048a1f3

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.0-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 8fa526dc63d7b836ea0ebeecb0c2f785ca5de890f2a1d632039b05e90385b9e7
MD5 4cba496439d92e7ab7d658c53233e7c5
BLAKE2b-256 a9af7782fbc4b60adc7516fbcdafaf67e47afddd73f2d2d8ff18b332e7ad143a

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.0-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e1320aad4d3cba270a34605fed27172a9e6f4085ad9d4e0baf6e2b31cb529348
MD5 f22ee74d721ca6be2afd3b081aa41b66
BLAKE2b-256 d3f30348665ca0de0f6c8f911ea50f6cb637dd77c37d0ba39bf471cc3761e191

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.0-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 afeca45d8a66b3d66586fd0b4dd47e00e7a1a57067366896a3f9274c5bdf308f
MD5 733371f3a01acfc955bc1f7d417e5909
BLAKE2b-256 11331e70dc8a08671d07bb5e97d96bbdb667e2c749b485e294e9ce5be4c9ed49

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 74709808697e3b0f493f68d8de782197212990b0423302df5a80baed501884c6
MD5 54bf4a41f6f2ac0c943c031e50202e68
BLAKE2b-256 c0c6905f57a48dcee03e004675bf0fea5f1c6e6e4bd8774148a3e4109f9783a7

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aioesphomeapi-45.0.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 457.2 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.0.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 5731f914dd8bebc60355db178de068df3c2aa803844d036938c1c65e392342fc
MD5 4664e3ca4d8f4f81205b3ede5dc270f4
BLAKE2b-256 dd30a8874dcc1a333244447a2349e74358196e5ba09726072bd03071c2fab899

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 71ab420bbed26ad2ff3bb86ce01ed51eae1cee5bd962bbfa930436012c5f2a01
MD5 c5f65608e284f2d1285258cf72c32666
BLAKE2b-256 ca83db2fb90ff62986ade39afe8c6d47d13e3462a27d872d3d2664fb2754e094

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0ef08319dddc4bf63b7a54cb4ec516e325d241d8b30ca72d043d44da2d8a47f1
MD5 b23018ede2ede86ef304d0d08983c29b
BLAKE2b-256 626f406350618ffd5faae854f58ea5a5652ca2b4cacae28cd84d7bb69c34809f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f087f6fc0d6470ec4078f0af3f150a13b7a0994a28d66ceb23ca6ce6253dc189
MD5 a04b2fc0feb5eefdc01ca302465ad3d7
BLAKE2b-256 c0f272be80c98f6e7b45875d6a1fd22831800f9b8ba71487db3d002b2c1feb3d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 56265857a8e11852a3607aa4f72c8edc4333fea826706e1899ac5a7bbd66aed1
MD5 36d665e781d68138ae01f2bd98b12f6a
BLAKE2b-256 b6b4c4454ae34c78afb980978a90eca9b09ede06f436f8e067a9fc96648a2be9

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.0.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.0.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.0.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2b7a0410d81959ee868883d2971440b7fc408ac439a6993d98afc0191e0b6152
MD5 b6495bae5a22de91040461213411f761
BLAKE2b-256 1a6df549d74f52081319a87de1d1391eecce94321e711eefac925ccc7109139f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 db8c496377ae11f9d1adeb13ec48e0d2bde99272ea940969d85fc2ae50bca225
MD5 67a3cec954419263a5e91c3342b9ae97
BLAKE2b-256 8f03b0e829bcc25048f2e4808332e70102b61724545356ce595decfd5b0a726e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 af680ecc9a75c0b6664c8f2476bef8efe771c463b96e88e7ab4640593989e60f
MD5 46db19a7a0e8736e5c6cf54f2d38e196
BLAKE2b-256 010a78461bf88872858c935d2defada75f34ce7fdaa80fee13648075ea2f1593

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 1dbecef55c9fc81e04bec6dde28913a07b4b18526bebe2300cc02f4bff3f237a
MD5 2a7658bb90ae682071599e96ebd4a63e
BLAKE2b-256 9123d45794da8b94a294a203e84711221900a48f541836d6d4cb7dd0351b6698

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e64cda31cfd8217694a9d96359d34e74791d192ab8afb909c1d66621f5d7d97d
MD5 fc046cb66862e2cbbe1722b5989b0561
BLAKE2b-256 dbc2618aa233e4101f76085ff7aed8709ae8d8661b7c7e215d95cf73852a765f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 1b59d3233317726c04b14b8b5c57e1aa4a59693291ceadbce1cfc9e59d496261
MD5 dd169fc357b58dc4d00e067959467b41
BLAKE2b-256 d71dd142103f655657dbd90489349eeb3232f4931d9f88fd3653ade8d5bd9ab1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b37bd8dc4a74bbe3dd9f8847c9f8f5f93297a80ba7936e895e47ef31bbe3250a
MD5 b20f523d44f2b2dbaf88c150cd74aba5
BLAKE2b-256 2f1ad8b2f4385e1fb282a377de9b73f6573f40930e997fe3675d74f66f4776cf

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aioesphomeapi-45.0.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 458.0 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.0.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 20707bee07de0388fce23ee9ca0de94efb88fce8a3aba2f92546cbbc153d0000
MD5 557cc6799c372e2694b1c4c1f960aec3
BLAKE2b-256 fc11e2acf24dc1a4f08dd1824d99a01874eede2111de327da68f5783dd3d3f15

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dff23e3f358a75c8a0a1cd1db6ed29f169e46f71296440ded05efd2836a5da87
MD5 ede634ed7798170b19d57371132807be
BLAKE2b-256 a8c9f5953a05c8c938ad34e1d7dfc3c19bbbb87668f1c5838ab44b00bbf39059

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1669ad9abf4d3373bd23c904e604940cd2d93bba7c3ce467e4c90ae609d0aff7
MD5 5e5344216b0bb099d43474154b815713
BLAKE2b-256 0c3e8b32da69ca333c674a5453e74421a6e49bec306730ab7cbbc0262dfa9315

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 caae05c51e9e9b07d0733449dda24bfaf34e073b9d504d708a2f5994b0448b1a
MD5 13dd3d8a62f395733db3d904ff419e78
BLAKE2b-256 3ebb4f0c195549669f89253303931301e5f65867faf53a7327269137085a2025

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fe5dfc296d35c2b75acfc83cc7dbca527b078eced11621efe367b23816903edd
MD5 42cac94c3ec5d3fdb80c42f416f1cbdc
BLAKE2b-256 3b98e7216722b5e761d24ed9f7af5da754a21571745efa3cd9a3ab7e9cd7c643

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.0.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.0.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.0.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 68485e1b9f80c3a5fcfa7288ba7607a7a013b872f4aa41fd3cebcc0ef6e7ca71
MD5 01ca30082c49b25a6497e977328beb3f
BLAKE2b-256 58164ce91322f61e9c3da086093a5cb4974a63c0c6998cff719d64af956d19bd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 7fc0d2a47a2607710504fb14539b7c25514e80c91fc38c053cfeb6d0f3be88f3
MD5 47a13880b667f16e515fe92271724316
BLAKE2b-256 e151f58f73e486205ec278b784579d22d40a495fd1ad981dd83d0955bbebe146

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2d6625484ffc24b5d22f886a62e47c0ddee9ff99dc7d29f6dd2501149ff94661
MD5 09ffcc24eeb2bd816d8ebc5b7d223f89
BLAKE2b-256 e760a71ec265e8aa5f4980b3b3067170102202b8e616889eddfcc9b7e3370104

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 c92f4ab78ed40a45d5391d6c83f009cbccb82126554e127717064ef59ab90a42
MD5 0a6a624e16c96e28f9687e7908d193bf
BLAKE2b-256 693f8a1288bdeb5259d66a9e065fb93974d3c139e547e43af76ace2cbdbf0e29

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 921b008453929df73288db2a2da40e03b22dd39487dd83208afc1b911f9d4d71
MD5 04e3a76e299770349a51602b29f26f8c
BLAKE2b-256 d5a6bf393ef6d77c6bf3e20b3cb5dc8c99ea3bcb28f3f04c28b83948a12bb676

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 75170054ba519261829ac93c1f4188946af8b9c27f8b2c9e58804b1b4e9d2a86
MD5 cf20f33afe3dc20e8b7585d5e3c7ea82
BLAKE2b-256 dbcc41e24403e9a009f734741e405744c7e12ea011da95fbc724ba69b0ea05b3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0892a58b128a8783c0840508fb0962f13f3df0e06a7f66ad173ed47ad7a98e38
MD5 f48dedd926e0e8231ebd6a74dc046519
BLAKE2b-256 b986b43a4d26942ce913e2e603d0f90b3685acd7933b852954319856bd0f2b29

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aioesphomeapi-45.0.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 466.5 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.0.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 9c8e1223f05d41a1fdbfc611add585667374a3329efb18dd275276d8cc6dec53
MD5 c741319b22d3662169f1024299a86201
BLAKE2b-256 86c27901e2e4893d70aa7aed88a8c3330ff205cb27b267a86db0cc13537ff105

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5543a8a0217600f62353ab243baf4e7c934e555a355c38a4ed7e02bd2644154f
MD5 d7eb1e045a6eed9e01a6f1efbe512c4f
BLAKE2b-256 ad6e1dbee7b3e04fbb6eb69544eeded9efc1c50b7f708c17817338e53fdf53e7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a8a34109e883ca1d9b1e8ba27862662af8639cf1cb813ed00c0e343bf6eb5b96
MD5 5a6e610ddee3cfb62205857cb053ce38
BLAKE2b-256 cc74d7f7aa5328bb5a433de76dcc7300c1bed7f78b14f254f6f4b65de1955104

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 efc326b9499508423960926a38e1b18db50ce495cb279f3afd84df403bc92401
MD5 3fb7f358f1c0b09e2ae17f47e72247b7
BLAKE2b-256 cf36c3e8ebe03a2bf6e69b005bd75da510af4c380dcaeac9981691f50be2caa7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1c1d2ab66dfc018634163738d9beb0364132c00a596efeca2ac897d1139a1d27
MD5 fbe9ee9ff3bbab4b9e969791ca2fb886
BLAKE2b-256 cec0f756ab2fb94ff617fb4d2670974d21d2437d80117795d982c76d79a4d2bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.0.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.0.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.0.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4dd8fc51fc8771e271bc404e61217b52b7fcc1ef4896b56afa3d415321fd910f
MD5 dbe8ae0a5f77819ca7097703b2c9b4b2
BLAKE2b-256 1af3f4661f563ef5fa03b5764d45e9ed1d5a879e64cdd2faa25026f7a2143f2e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 6ab75013b4090da72a01097348dc541a85d01a9352319d596f06d66513706246
MD5 61d2f43eb51595ef9576cdba0806e17f
BLAKE2b-256 3bf9100f98c56096e0ae08e5e1185bb4023890967a77fb2f09f2e0a93a46bdc2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5a90121df581633b70ee34597891383466fb1e1318aaa50e29f544337b022b37
MD5 87792ef7709445b94107a5c4757aeb71
BLAKE2b-256 ce2cb8fb0526916d269f47e4b4643a46f87393c743655f86a64cdceb9961a941

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 4dab9479120e40929cc914e62876f358f39094ce1f3dee56faa1a508ae9b2450
MD5 1410078a1058478ec9cd853433ffbf4c
BLAKE2b-256 28612ba849f4482aad88eb10af6943cb90ed0d60cdfc5504ad5ebf60cc564ce9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ff23659461ff61c146e1e5915ff25b9f9ecb94021743d814eb357a465763e1f4
MD5 8d085036f9763e6fc6c472033bc203d1
BLAKE2b-256 f9b551d519ee9c7093d17c69bdd22ce4ae98094d3b8a2a8f74a7b1929d138f0f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f56c9f4bd2cf7d88b6f991c09db71611bd5eb02ead33c9b274afcb386f5b563b
MD5 f67d527219b4ad4a37c9f0102a01cc41
BLAKE2b-256 fd5f5fe2583601cae17d93aadd52f14a424691e9364aa4003a8860d1ec7890ab

See more details on using hashes here.

Provenance

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