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

Uploaded Source

Built Distributions

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

aioesphomeapi-45.0.2-cp314-cp314t-win_amd64.whl (627.6 kB view details)

Uploaded CPython 3.14tWindows x86-64

aioesphomeapi-45.0.2-cp314-cp314t-win32.whl (551.4 kB view details)

Uploaded CPython 3.14tWindows x86

aioesphomeapi-45.0.2-cp314-cp314t-musllinux_1_2_x86_64.whl (680.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

aioesphomeapi-45.0.2-cp314-cp314t-musllinux_1_2_i686.whl (699.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

aioesphomeapi-45.0.2-cp314-cp314t-musllinux_1_2_armv7l.whl (626.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.0.2-cp314-cp314t-musllinux_1_2_aarch64.whl (668.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

aioesphomeapi-45.0.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (671.9 kB view details)

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

aioesphomeapi-45.0.2-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (609.6 kB view details)

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

aioesphomeapi-45.0.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (660.1 kB view details)

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

aioesphomeapi-45.0.2-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (688.2 kB view details)

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

aioesphomeapi-45.0.2-cp314-cp314t-macosx_11_0_arm64.whl (591.2 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

aioesphomeapi-45.0.2-cp314-cp314t-macosx_10_15_x86_64.whl (597.1 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

aioesphomeapi-45.0.2-cp314-cp314-win_amd64.whl (535.2 kB view details)

Uploaded CPython 3.14Windows x86-64

aioesphomeapi-45.0.2-cp314-cp314-win32.whl (477.0 kB view details)

Uploaded CPython 3.14Windows x86

aioesphomeapi-45.0.2-cp314-cp314-musllinux_1_2_x86_64.whl (667.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

aioesphomeapi-45.0.2-cp314-cp314-musllinux_1_2_i686.whl (691.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

aioesphomeapi-45.0.2-cp314-cp314-musllinux_1_2_armv7l.whl (608.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.0.2-cp314-cp314-musllinux_1_2_aarch64.whl (645.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

aioesphomeapi-45.0.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (660.4 kB view details)

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

aioesphomeapi-45.0.2-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (605.4 kB view details)

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

aioesphomeapi-45.0.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (638.5 kB view details)

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

aioesphomeapi-45.0.2-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (681.1 kB view details)

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

aioesphomeapi-45.0.2-cp314-cp314-macosx_11_0_arm64.whl (549.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

aioesphomeapi-45.0.2-cp314-cp314-macosx_10_15_x86_64.whl (562.9 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

aioesphomeapi-45.0.2-cp313-cp313t-win_amd64.whl (595.4 kB view details)

Uploaded CPython 3.13tWindows x86-64

aioesphomeapi-45.0.2-cp313-cp313t-win32.whl (529.9 kB view details)

Uploaded CPython 3.13tWindows x86

aioesphomeapi-45.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl (676.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

aioesphomeapi-45.0.2-cp313-cp313t-musllinux_1_2_i686.whl (698.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

aioesphomeapi-45.0.2-cp313-cp313t-musllinux_1_2_armv7l.whl (624.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl (664.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

aioesphomeapi-45.0.2-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (669.2 kB view details)

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

aioesphomeapi-45.0.2-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (608.0 kB view details)

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

aioesphomeapi-45.0.2-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (657.6 kB view details)

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

aioesphomeapi-45.0.2-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (686.0 kB view details)

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

aioesphomeapi-45.0.2-cp313-cp313t-macosx_11_0_arm64.whl (589.3 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

aioesphomeapi-45.0.2-cp313-cp313t-macosx_10_13_x86_64.whl (595.1 kB view details)

Uploaded CPython 3.13tmacOS 10.13+ x86-64

aioesphomeapi-45.0.2-cp313-cp313-win_amd64.whl (525.5 kB view details)

Uploaded CPython 3.13Windows x86-64

aioesphomeapi-45.0.2-cp313-cp313-win32.whl (468.7 kB view details)

Uploaded CPython 3.13Windows x86

aioesphomeapi-45.0.2-cp313-cp313-musllinux_1_2_x86_64.whl (663.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

aioesphomeapi-45.0.2-cp313-cp313-musllinux_1_2_i686.whl (689.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

aioesphomeapi-45.0.2-cp313-cp313-musllinux_1_2_armv7l.whl (615.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.0.2-cp313-cp313-musllinux_1_2_aarch64.whl (636.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aioesphomeapi-45.0.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (657.4 kB view details)

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

aioesphomeapi-45.0.2-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (611.5 kB view details)

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

aioesphomeapi-45.0.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (629.4 kB view details)

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

aioesphomeapi-45.0.2-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (680.6 kB view details)

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

aioesphomeapi-45.0.2-cp313-cp313-macosx_11_0_arm64.whl (544.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aioesphomeapi-45.0.2-cp313-cp313-macosx_10_13_x86_64.whl (560.4 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aioesphomeapi-45.0.2-cp312-cp312-win_amd64.whl (528.4 kB view details)

Uploaded CPython 3.12Windows x86-64

aioesphomeapi-45.0.2-cp312-cp312-win32.whl (469.7 kB view details)

Uploaded CPython 3.12Windows x86

aioesphomeapi-45.0.2-cp312-cp312-musllinux_1_2_x86_64.whl (668.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

aioesphomeapi-45.0.2-cp312-cp312-musllinux_1_2_i686.whl (695.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

aioesphomeapi-45.0.2-cp312-cp312-musllinux_1_2_armv7l.whl (619.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.0.2-cp312-cp312-musllinux_1_2_aarch64.whl (642.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aioesphomeapi-45.0.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (662.9 kB view details)

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

aioesphomeapi-45.0.2-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (617.0 kB view details)

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

aioesphomeapi-45.0.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (636.0 kB view details)

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

aioesphomeapi-45.0.2-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (687.1 kB view details)

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

aioesphomeapi-45.0.2-cp312-cp312-macosx_11_0_arm64.whl (549.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aioesphomeapi-45.0.2-cp312-cp312-macosx_10_13_x86_64.whl (566.6 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aioesphomeapi-45.0.2-cp311-cp311-win_amd64.whl (529.1 kB view details)

Uploaded CPython 3.11Windows x86-64

aioesphomeapi-45.0.2-cp311-cp311-win32.whl (477.8 kB view details)

Uploaded CPython 3.11Windows x86

aioesphomeapi-45.0.2-cp311-cp311-musllinux_1_2_x86_64.whl (683.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

aioesphomeapi-45.0.2-cp311-cp311-musllinux_1_2_i686.whl (717.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

aioesphomeapi-45.0.2-cp311-cp311-musllinux_1_2_armv7l.whl (630.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.0.2-cp311-cp311-musllinux_1_2_aarch64.whl (660.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aioesphomeapi-45.0.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (677.1 kB view details)

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

aioesphomeapi-45.0.2-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (628.0 kB view details)

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

aioesphomeapi-45.0.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (653.9 kB view details)

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

aioesphomeapi-45.0.2-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (706.5 kB view details)

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

aioesphomeapi-45.0.2-cp311-cp311-macosx_11_0_arm64.whl (549.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aioesphomeapi-45.0.2-cp311-cp311-macosx_10_9_x86_64.whl (565.1 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: aioesphomeapi-45.0.2.tar.gz
  • Upload date:
  • Size: 196.8 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.2.tar.gz
Algorithm Hash digest
SHA256 a69a6a4aa1fd119b9fca8bb99cd3f8b645dd6d039bc33d61351465c241862905
MD5 04aafaabfa04899275132155546856f7
BLAKE2b-256 beaaf915e1f5d933da901e17ff7abeaa098a2847ec9301bcc929d5d39c33f4a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 fe21bc2b8ce6a85657f31180d0b2c405bda0983c21f3c9d8f6c4ad173dfb7e6a
MD5 4024dc0602439eb355d5bbe0e2eb75a7
BLAKE2b-256 bc498e469976c2e91c4585f5859432e4471895abc88a85e8795aaec43b066329

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.2-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 7c484d641efa64773f6047b74ca7592dfbf994bf58a6a40925fe0044c811e91c
MD5 aa58fe8341cfaefcef0b6ac705bb0043
BLAKE2b-256 85468a9a95f070b51f43eeb6671fc21e47944fba411d8a294c032e8bd85f3027

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e1d58969de0c41f7ad8eb09e0d5dd3beb19bf38d71000f0b33b5832d9bcd2254
MD5 4ddf8a3c5bf514eabc43d3b9853ae13e
BLAKE2b-256 0e57a2d8555c2a37db0d083138a3eba062e4330364010d99bd636098fa1856c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.2-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7b05d52fbc9bcaef0396e027ab7b248fae823f3e722b175f1cdbd3e4110d5202
MD5 98923f094511d8324c46e30508193456
BLAKE2b-256 3b261aeb2e36f468e8f2d201a4afb20ca27dbb7fb426d26ad59af027317a4fb8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.2-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 319412ec5d4f25f77ece528d96d4064455f5aa4de4734047fd054b5311f1f5a6
MD5 3c19e39a4c17fe8ce1b31b096d477c61
BLAKE2b-256 42100de7fb4f4b19e40b086c0a5569c47f05b3f640b13a6f9a88cbbec2309271

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 db7ba8a5ceb2c4a1bcee1d2c55e003161a60d3ac09fa17368ec093712605dde1
MD5 872dbff06e87cc4ffe9ddf7e261bbd2f
BLAKE2b-256 9f1ce8df260cfe05abce9a66f656f5afb20c00f75927c205a97717a4525e1686

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.0.2-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.2-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.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7239e915e2123b76eed82e39895bb60fe8fdf7346a90f8b5312ffdffe623e49f
MD5 833b9d755a6f9d546b21e6317e32bab5
BLAKE2b-256 2600c788433f7060c0c29f49988f6663f8b8d648d3694ec1fc878d064d373ab1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.2-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 9a0fbf8241a9d0058d19def2b073a122f6555989249439498933a036214d4dcd
MD5 ccbc87868709682379d5b0166416e824
BLAKE2b-256 1e4711e7ce46338acf0735369e721f0fdc3e60faf9251fdb51651a33a667742c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 39831c00a0ae0bde2597462b14ef87e3bd9401af1ef816cbb004588411e9646c
MD5 37c21e295156e817f0f5f58aa8dcc88c
BLAKE2b-256 0a872655f09ed50b96539172c510b0ec0e8bcc8a1f027b44dddd4d34b539cd1e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.2-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 f05532d219ca39c02ee8d6b4f1fe428562d3ebda8b93df16d7860a53e190b37a
MD5 27f1b32c1880f44db7c0c521fa1de177
BLAKE2b-256 5661255e799e496409b55142391f1bb9c66b9a1aaa55e2d8e6e383e462336f7c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 84916f6d1dd8ea9a838af36731b5676893d20ab1b1542704080e102f7d93e280
MD5 53e42214ed0b7f3f8096182f94791521
BLAKE2b-256 6003a368a0cc625d6f28a85fe658a5d323d5d17257ca5ab18cb4fd4ec606d73e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.2-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 31dbee85231b8b1115001a348facb4c5ef0a84a4f0e7b6a89da1376c5ae1b813
MD5 778003ff2c4c58c741862567e48996c1
BLAKE2b-256 bf5d580e9865d8ed099822f365b53e4541c165690ac9d913c2e4ab21051835e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 3a18b1cc6ceb34de437a65afca78232419bcce2316e132c58bc76843f0a84b76
MD5 c00382a1fcca1f7920c0f7ede1b91fc9
BLAKE2b-256 063a1cc53813f262d4f6e81085f3333e2b6c93653d1da97d63a56eedf93b5bfa

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aioesphomeapi-45.0.2-cp314-cp314-win32.whl
  • Upload date:
  • Size: 477.0 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.2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 bc677ec2af5e72f7c1da3947b6d4aeb2b1641bcf04175320991231dc61368019
MD5 e453c90b8ecd343e1ca2d025e2be7254
BLAKE2b-256 210d7d654b258daa342334fb47210c9d29b0038f818eb81ff15351da37747f33

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 972d054c13ba844714e7a5fbd6bd8972f5120631f0c2c92a0379faab6034e4ba
MD5 b633ee7503474e1da6b518c990780c87
BLAKE2b-256 f3adfbb5c8a3ae9de2b4a09a6e15aef06862d918d7b948522a31789e76d592d2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.2-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d646b2e6297eeb16d21aabb0179baa129eb360baaa7291876619b8228fc85cdf
MD5 7a78fdb2a86b2adc67ad24fc7d809b40
BLAKE2b-256 ecd6fd6cbbf4d83b618b4cb91e584e76d0fcdb583b57d5adba13a54841fe0e8c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.2-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 18ecfefdde1e304997d8f7baf721cb92dec9b3f3c6ff84d4ac4d43c0f92e7db2
MD5 bde8dec27f3a5a44ef39d226ba4b14d5
BLAKE2b-256 cfa3dff59560260e1a989c4068c4b22b4e7dcb47ddf48e66d43032514f06ac18

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 650695c6aa44e4a60c36c9bebc5ff2e1cf9442d000b355e40195251afcab869c
MD5 812fb56f16b4480870e1bea0e08d3f0e
BLAKE2b-256 bf9707602e41c52b12a0b2601d93006cf796d5f366a0fd980ac4b6c2eb3e1cb4

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.0.2-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.2-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.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6ac42ee2e585192a3e183a292804f718554f708d1666557c7af019d0b6a0f2c0
MD5 6ef1a0bcddf92af151e30a0b241fec4d
BLAKE2b-256 be2785c56d83fce79bce0661f1d3c1636b14b7fa2f4c67d04106f60903870716

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.2-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 40105b2a687607b759c7e4c27acdfc182a8c452eda1ce3833e3de64f4f25434e
MD5 a00a38822fcef72fb12fd52194a0a135
BLAKE2b-256 46e8e0c73e204b53e574732b75dbce4329568ee1f67f162f4004d405d6292249

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3f003962c67423f69d7eb623429f08158d4a07d50133e6a9ce7474c4c8aee8fd
MD5 1915bda82809f7f766ae0cf15d7c62fa
BLAKE2b-256 8c6746e20326946181c9fce6fff7feb07c314b570c471fa795cbd830666bdd03

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.2-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 f4e78cecc27a690b666d272f2fa55c5cc816b42680f8ec7773d7aee258f78a68
MD5 0e0f1d0b3e805bb48bbdc2148f0ccef2
BLAKE2b-256 b6c8af22ba99497444ce1a3c970387916f5cce1a74b38684c23f6e8fca3ea676

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 17f15e661eb6667a778b5fd2a42ce9594389d48d82f3fd62cc28686b8e402b5c
MD5 bb1f3e1ece47aba17d6968b6d4a51e22
BLAKE2b-256 7d6d3fa5857a5e340347733ce989197b9ae919c0fdbfcc2d02bc7bb83e3d9cf5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.2-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 c73f49eb0bf7107242ee53215008e0295a2401d353cf28d08aa7f07468585844
MD5 85f08457ebf7582e44cb7c6889006960
BLAKE2b-256 ca2933b5b87447a7dc3dd883b7fdc252d1849f305ce6016b813776a5f5afac52

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.2-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 38c8a79392ffc6a420993c42d596aeb56afb32d42094e49d4f946223eebb912a
MD5 78aaa2e00c570416abfcbb6f18a7dced
BLAKE2b-256 d4eef27f5c8d58a48819b4144730c71169c020daf2204877a163799ea2cc3090

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.2-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 4d48a28d4c0e790cb30436c99477d36141922cd3201b9f6bb28d8a09095873d0
MD5 2ba8a45e0919fda555da1565aca12c29
BLAKE2b-256 6c85109cb001cb5265b43223387d71eb0ea85b27dd694ac2e8452dc089cf0f3d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c5738673dea11755cdcf2047014dc482f68b504ad28a3cca133a998327f05c9c
MD5 2e12630467424d6e480e52ffd2ca2066
BLAKE2b-256 4a8ae0842bbdbafc6028a89f9c38a4db8aadaa513d4a292c5ce6c5b77b17d821

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.2-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7b24af785fd2b61dca9a88c7c63d493f636102f8299421825e02d8418750328b
MD5 f7bc4cef335652bcd0be01c6d7c59fe2
BLAKE2b-256 8471447a3fa56185bf7036ccaed0b0a038f8b0a2d205b3cb142ce10e3dc89efa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.2-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 82a674783b1701ce03e6f65139e876057d48622cb7354644345f4d0cce9c1cc2
MD5 e5ceebf70b61a800be92cd6c1162c41a
BLAKE2b-256 f03948188550291aeb79851cb8bcd1f9ba2b179fc4401974ece4b8183e270217

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f0aefa82bf6c16d2be57a1dc5dcf8d88720a395bac36f32e7d7de3a2f60035e1
MD5 48cb819d0e640324d71f87aca441ec3e
BLAKE2b-256 55d3a42ebfef0747e17bbd7845f78730c21d318c56b4fa79480ea3fa08ffc376

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.0.2-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.2-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.2-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 33275659a695be4a6739fbe6ab340b7c41e251067cb86e7ec281c819f7b2b3b9
MD5 67da825175b892724fd252c4cb588e5b
BLAKE2b-256 94e8e36b6d004c6f2f0c34e9f7c5f5d97e877aeeb009898c5ec1241e7ccdb075

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.2-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 98a3d59f8427306479118ec25271edd965e822435017536c55eb7e6896193924
MD5 27984fe7eef99675e85b05eacebfdbf2
BLAKE2b-256 e844d4cb5dff085b1d598ce6176871c90d518135661bdc864da05c6c28cfe185

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.2-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 201c36cd770e30f741c86d59cf3417bdcdff539f6d11d1b9a794c494c37d63f5
MD5 af4c33dc849d3a706dcd3e6b1ebfdd6f
BLAKE2b-256 36a7305bb168b126947039ea8be2a20a24393d72fc1e569b7be203b833b22dea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.2-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 5b71d7f73e260b695b39c2af32727ced9a3648a5e62732343def55f4649d4cbb
MD5 34fae9cf2f6529c02ae7a202a256774c
BLAKE2b-256 157ac2550cd709be72bdb6cd8118d67993c9413e0ed82e09396463b1d9b1b989

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.2-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c89c2975ee6313b95243181e38bf6e666a58fd27cec5a1a1d41adf05e0c552d1
MD5 443c14000f0a3fbfccbb816700866771
BLAKE2b-256 4dce9ff16ceb4059980981c0afa652672173663888c86527a4bfb877a97d352a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.2-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9e38f853c45b410fd1091a9a0be9ef3f29944065f422d6fd202e49474d54c019
MD5 f0a8ebc8949f069f45fa97f9db879518
BLAKE2b-256 08927544d88a0d625809f200119ffbbf9771dd2fbe3a5884574c05c532a5974e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 fb19f8601f15ba3525b50fb34358041a0dad5f8ded12bbd1017bb16fe6891146
MD5 d9c48975f9f1b0fed546ce454e192edd
BLAKE2b-256 48f3fb76a40439627b6b3df8e87280e132c535f9dea2be4480e8d91305882808

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aioesphomeapi-45.0.2-cp313-cp313-win32.whl
  • Upload date:
  • Size: 468.7 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.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 c7b8e8bdc076edfad13b5465160d03b5e3a2404d04cdd6ca4b195db2cb0afe01
MD5 b35a0a2d2010c7a7f8cbbfff99d08474
BLAKE2b-256 032cb235aa9cbbda0fa60b86297d10b3f8fb1e8594f0d239b441aef4727b284d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 deef35680d5de6e82692eb04e5cbfd7ddf9630cc073a075d75746e4fcdf7f66b
MD5 50ec123f15859160b8bc6a7c104b46da
BLAKE2b-256 9e72b7bba5e2473d6b4a761c1ebc8cee4ee2dceca2eea3d57bf3b1db91e2e283

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1af15748e06b9c11bf3ab56be52e760f9dbe05f5b56516d6a58ffa31afa629ac
MD5 1ed6fae83b86ec507286d7b7331a3924
BLAKE2b-256 4565cfae462ffd9e6b6fece72ca8fc7fd5715ebc64296cac78f8ea41964fd30e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.2-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9ef909ea77b5af4b422f09b2ace75e13f2cbbacd341cfc09222307486cb4d187
MD5 726719d07523fd5518c80eff7a37d49d
BLAKE2b-256 4887eb5731a6848300033be8a3959092061dd0f9279392076c4586977d8ecd93

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ec90c29811af5e28735ce0916e8b7492a9ad132c174e1c520664b0f1a6a2d889
MD5 418a9f23542d7b9709f9a49f70866be6
BLAKE2b-256 f6849120e14a597c1c065b3462bd35376dddd51a98e154c363fa54f574f0bdf7

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.0.2-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.2-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.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 10dbe78f69b42a538c6c5057865faf7563adb0495596e06e56773679f90fcbdc
MD5 80f5b715ffeee0100e591da5fd43ddcf
BLAKE2b-256 2383ac1b7856b4a021d9740585d237e6205606267164b1327cbb280e48ad2f28

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.2-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 58fc9cd761c1a4471c6b93f9f983659c859fad67a74442ec0ffbac3c4a4feec9
MD5 67948f18d743ecc8b2fbe72b9cff52c0
BLAKE2b-256 416763dad2cdf91c984767486407b78028f9ac005b68fc09af16b142bd5b3a70

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6b2dee56370aed3d243c65d626e508cc87936330621f96a66c278cd868a06b13
MD5 f924e64c4bd2697490f0cafe30a52c50
BLAKE2b-256 2e4e067da0bb4d4cc54d5b3f0c094955b2b822c0407478e4957e013a749af846

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.2-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 2d04a35758ea936a07bcd5d44a16e9ded0adc61e94193c6256c3015436eb0ede
MD5 9429b14fb1a120ff9ccc6273c4100a32
BLAKE2b-256 f73e39d0782b1e75fa548e23ac3a7f9581cfa3c3376c2a59989b55dd1012881c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 006ea3502e0fe31cb35b0acbd2c6a2ff734177b8ff741fd0031994a3d7e917ae
MD5 381537540730b5ef071ec9cd14fab0bf
BLAKE2b-256 1592963c11c8527e403ee317e9837cb1398619bf67fa7ee8f8ab79a8dfe9fa11

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 1d9fe108d9ff95abde9ac039ef739602a5144b1c25af7451edf6b6fdf01b37be
MD5 ca01e840a2d19771ae01037c1b5cf1b9
BLAKE2b-256 d511c744a521053634bde740fb7ae9ce9aab66fab32496bbc49927b606d32bc0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 dacb4d42bdc550c597d3019f69478db5752b4ded4e290fee9ea573d0989ef6f2
MD5 b023f0a6a8db808dde76837863089c38
BLAKE2b-256 620a377bcfe0af304bc55ceb06e733831ef4553b8c493ab9d5677e2d074969b1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aioesphomeapi-45.0.2-cp312-cp312-win32.whl
  • Upload date:
  • Size: 469.7 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.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 3a59645592c9885b4adbbc8bd9c227a4aa4aa719041efcb64fce3d77bd7966cf
MD5 2b31aee295e7491e16f9ab2de71c431e
BLAKE2b-256 f2323a7eee99bb32110221b7a0559a19bac249ae8f08e60650d41d5daae7edf0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 952c214d845b0d720ceb152c6dbd2ec56e03543db151901b9ac21f26646ec8a5
MD5 3743d42a91b83992e7881650e541cd33
BLAKE2b-256 0de62e68f0536b35427c1cd07249ef2ff547c94150dd5815677f556a6dd1ef66

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0f97dc9f709c04b52fcc5625837a5da43f6cab858c2df27ee1d0ab18b137f190
MD5 6e252f73a51b832f87ce3cb38ca232b4
BLAKE2b-256 1f74479d60adb6efff4071e92056b5ca48910f249a40f9072f777336e0e35fdd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 90f2af34668f252ec6b3db1e4b7ce8b294e92bdf61872a719263e51f4f34e9c5
MD5 6c16231572200983a0b8710e7a5b4b42
BLAKE2b-256 413502e1e88f1493162c3c804e322302847a1be80f4a060316613606a55f18fb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 315b822a34d228888d51bf2558453af8dc4c72254f1e9a85bf1a0cd571b65105
MD5 cfb7cdae8574908e6f8faae3ca257395
BLAKE2b-256 613e75bc85b04d2f7f964139c84efddd754ef98471f59941d80c4a931bd5c816

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.0.2-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.2-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.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 05f4f74b5afa3a2ccd9122675a9b8a37844813918d3ad206b5dde27d7f20bc02
MD5 fab9ea42839006782cbd48898f0b26fd
BLAKE2b-256 f96694a2cf00520c81a2ec1a891f0f08d65dff07c2073fa4f48cdc89dacdf1fa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.2-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 27c644dbd6d367ec12ccea86a70f73a6cc99a9862f271e55d2c45269c0b47103
MD5 09269fc8fc0a874ba6ac239b3b4f8ec6
BLAKE2b-256 77224c15b1dfa59b8f8c7b3e18145b190aec16763e1ffa2f8067c8e874275c41

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2bf410a1ba1fd589367d9d73ff385888123cab954d0581baf68d3e569fc8900a
MD5 6a7f9a257774839bf599f8c08cfbb3d7
BLAKE2b-256 df5df77ad395d69a71e879b565f3607e2a9d0e5b0e38d32ece753b59311587fd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.2-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 12e584e86e2c65f7cd4b07c256bec6f1ba351ed1d265ebfcd4b236c020af83b8
MD5 db51279782da7dca0e249bbd63e0a28a
BLAKE2b-256 b019f546fb16518e2f08c65d4d418df847ad249c368cee3b160fe498f71640b2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3aca18729fe2b895b06f23dd60a0a4fa514a42b44240a8d6bb27a9e4f7fc38f3
MD5 1b3ae28edba2ef5298eb24eab7bd7777
BLAKE2b-256 381849b0d26be86e45d3de2d3d9a276858e5ddbe992e085d8afeeb21d406bdf8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 83ee8cee1d8e6abbcd371c27b6432c8c7faf6d80834d8ef0bc3e80aa974ea9ad
MD5 01a480b5ce4a131ba397e21fd2ecef0a
BLAKE2b-256 299a275380c5f239fd6ac7caed7d90d4f68c868fc6f571c88cfd7b52c45a4f12

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 92b4ecb131607a0e3baa7515623272a2c2f37a3a77a484bd191bf4d3ca1ca092
MD5 86aa90d5847c67bad0f5ebe5235fb439
BLAKE2b-256 821f64fab4d2b396c0b4b8d8f0b415387fa7a9d5ac2fc6b7d371c6141fe68bcc

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aioesphomeapi-45.0.2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 477.8 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.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 f08f23d1733f54c3a945c619cefca4556cc4229e1a6a7355d09acca44033e99b
MD5 32f436a911dad2961860a8c8c5cc3802
BLAKE2b-256 32ca91d1984fa260b8497e3a3ec8ee8c05b4d9605ac2de1814531927617f5c96

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d9b19f859c0d220a91e4dc9957e53d77ee41f063fcadabeb588cd88509b6ee41
MD5 3711a961306064ead56eca6ee5389bdb
BLAKE2b-256 9a6b8e4fe051b67522597b96aa5c770ab48b4f1c2cbb9250931fec9e96bb9401

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ebc1e01b03e87ee1e236e478366a582966ebb260c6fa34c4aef68c9033543681
MD5 c8f39613fa7734da2039cce09501509c
BLAKE2b-256 5dced1f3f6ba9a63b75cf2775f825f94f2652613cce81b4d4152272789f9073d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d6da0933d65a60d252cb4745ee18f18b983158acf907791100b2a6b736a1ac59
MD5 fe1a2f4c3516d90cff5f67ed91107a16
BLAKE2b-256 280e4033940a0c70304c8364d453646f585b81a96839e80fa4c9020b5d478f09

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1433ee3c55fb4c3bcf5abdbca9932889e5b6f89b3ce57b1f7e63bea0bfac70ce
MD5 4053a7dd4317a0ee473d0a558fbb0d06
BLAKE2b-256 8138f5c1323d213e89012de98d246f8fbeac38e15a476328bf0b74e2c408e1ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.0.2-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.2-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.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 58a33aac8452bfe6a063cd89dde69c13f56398954c7bd5d4f0435acb2a6c65c8
MD5 104e48ff841c05fd97f1087dabe91a9c
BLAKE2b-256 4d931723a59bc6070ca6e093bf434884f1eedd908aab5334a8d896983b201450

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.2-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 435c4d8a1cc4f76f6eb735b4c14d6eed7a8016d57d9a4f6e068fee9b7f283a80
MD5 ff4c5c11e490198dceb2cfd5d3f0f793
BLAKE2b-256 56bb028f85c5c27ddbfc7f2ab45ae882404aa6d34b16c46adb30eaceab8764c8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 16a1add01d2e880800b0d0f31a640f63faf511b1f4338eb4196905b1c35da709
MD5 f4693302434f6a52d44f4d2b9c7a3b87
BLAKE2b-256 59c0fc5281ec9a4f692a597d4c25df4bae8b916786eddf8121900d3c81a44633

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.2-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 e7c2a5090f36fe8e3893c03e7cade233055ce22162a47eebc77fe890baec3fd9
MD5 0d483275fbb2396e292939c0db801cc2
BLAKE2b-256 53f20a74e9c1d260213b0c86da18947a61132d5f37a0b2e90c2c38e9b9ec5004

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 727a7377c1f2851ccf8a48d2bd4e2170494f57557a5af576968699976ac62c4f
MD5 3f3a26549f693bd313d37a521a97a9ae
BLAKE2b-256 4b7f9ed3c2bdaae97ec4d44f43316ad7de95f0f6f13742d608b1d3a09b0975f4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d44e6f87d7bb1f3b5c4eb150c5037f959818539364d2249119359ae77f744e4d
MD5 7c3cd818f4e775c89799424b0cf3ac0f
BLAKE2b-256 326da218093dd7f2ff41b158a8838c16521fe6f393a37f0145fa1919b6888e2e

See more details on using hashes here.

Provenance

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