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

Uploaded Source

Built Distributions

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

aioesphomeapi-45.2.0-cp314-cp314t-win_amd64.whl (656.1 kB view details)

Uploaded CPython 3.14tWindows x86-64

aioesphomeapi-45.2.0-cp314-cp314t-win32.whl (579.8 kB view details)

Uploaded CPython 3.14tWindows x86

aioesphomeapi-45.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl (709.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

aioesphomeapi-45.2.0-cp314-cp314t-musllinux_1_2_i686.whl (730.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

aioesphomeapi-45.2.0-cp314-cp314t-musllinux_1_2_armv7l.whl (654.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl (696.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

aioesphomeapi-45.2.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (701.3 kB view details)

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

aioesphomeapi-45.2.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (637.9 kB view details)

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

aioesphomeapi-45.2.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (689.3 kB view details)

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

aioesphomeapi-45.2.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (718.5 kB view details)

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

aioesphomeapi-45.2.0-cp314-cp314t-macosx_11_0_arm64.whl (617.3 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

aioesphomeapi-45.2.0-cp314-cp314t-macosx_10_15_x86_64.whl (624.1 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

aioesphomeapi-45.2.0-cp314-cp314-win_amd64.whl (561.2 kB view details)

Uploaded CPython 3.14Windows x86-64

aioesphomeapi-45.2.0-cp314-cp314-win32.whl (502.4 kB view details)

Uploaded CPython 3.14Windows x86

aioesphomeapi-45.2.0-cp314-cp314-musllinux_1_2_x86_64.whl (696.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

aioesphomeapi-45.2.0-cp314-cp314-musllinux_1_2_i686.whl (719.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

aioesphomeapi-45.2.0-cp314-cp314-musllinux_1_2_armv7l.whl (634.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.2.0-cp314-cp314-musllinux_1_2_aarch64.whl (671.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

aioesphomeapi-45.2.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (689.3 kB view details)

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

aioesphomeapi-45.2.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (632.8 kB view details)

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

aioesphomeapi-45.2.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (666.7 kB view details)

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

aioesphomeapi-45.2.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (709.2 kB view details)

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

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

Uploaded CPython 3.14macOS 11.0+ ARM64

aioesphomeapi-45.2.0-cp314-cp314-macosx_10_15_x86_64.whl (587.7 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

aioesphomeapi-45.2.0-cp313-cp313t-win_amd64.whl (622.7 kB view details)

Uploaded CPython 3.13tWindows x86-64

aioesphomeapi-45.2.0-cp313-cp313t-win32.whl (556.9 kB view details)

Uploaded CPython 3.13tWindows x86

aioesphomeapi-45.2.0-cp313-cp313t-musllinux_1_2_x86_64.whl (705.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

aioesphomeapi-45.2.0-cp313-cp313t-musllinux_1_2_i686.whl (727.3 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

aioesphomeapi-45.2.0-cp313-cp313t-musllinux_1_2_armv7l.whl (652.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.2.0-cp313-cp313t-musllinux_1_2_aarch64.whl (694.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

aioesphomeapi-45.2.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (697.7 kB view details)

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

aioesphomeapi-45.2.0-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (636.3 kB view details)

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

aioesphomeapi-45.2.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (687.1 kB view details)

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

aioesphomeapi-45.2.0-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (715.2 kB view details)

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

aioesphomeapi-45.2.0-cp313-cp313t-macosx_11_0_arm64.whl (616.0 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

aioesphomeapi-45.2.0-cp313-cp313t-macosx_10_13_x86_64.whl (621.8 kB view details)

Uploaded CPython 3.13tmacOS 10.13+ x86-64

aioesphomeapi-45.2.0-cp313-cp313-win_amd64.whl (550.6 kB view details)

Uploaded CPython 3.13Windows x86-64

aioesphomeapi-45.2.0-cp313-cp313-win32.whl (493.3 kB view details)

Uploaded CPython 3.13Windows x86

aioesphomeapi-45.2.0-cp313-cp313-musllinux_1_2_x86_64.whl (693.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

aioesphomeapi-45.2.0-cp313-cp313-musllinux_1_2_i686.whl (718.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

aioesphomeapi-45.2.0-cp313-cp313-musllinux_1_2_armv7l.whl (641.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.2.0-cp313-cp313-musllinux_1_2_aarch64.whl (663.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aioesphomeapi-45.2.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (686.3 kB view details)

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

aioesphomeapi-45.2.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (638.8 kB view details)

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

aioesphomeapi-45.2.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (658.6 kB view details)

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

aioesphomeapi-45.2.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (708.9 kB view details)

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

aioesphomeapi-45.2.0-cp313-cp313-macosx_11_0_arm64.whl (569.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aioesphomeapi-45.2.0-cp313-cp313-macosx_10_13_x86_64.whl (585.0 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aioesphomeapi-45.2.0-cp312-cp312-win_amd64.whl (554.4 kB view details)

Uploaded CPython 3.12Windows x86-64

aioesphomeapi-45.2.0-cp312-cp312-win32.whl (495.0 kB view details)

Uploaded CPython 3.12Windows x86

aioesphomeapi-45.2.0-cp312-cp312-musllinux_1_2_x86_64.whl (698.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

aioesphomeapi-45.2.0-cp312-cp312-musllinux_1_2_i686.whl (723.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

aioesphomeapi-45.2.0-cp312-cp312-musllinux_1_2_armv7l.whl (644.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.2.0-cp312-cp312-musllinux_1_2_aarch64.whl (668.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aioesphomeapi-45.2.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (692.0 kB view details)

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

aioesphomeapi-45.2.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (642.4 kB view details)

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

aioesphomeapi-45.2.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (664.3 kB view details)

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

aioesphomeapi-45.2.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (715.1 kB view details)

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

aioesphomeapi-45.2.0-cp312-cp312-macosx_11_0_arm64.whl (574.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aioesphomeapi-45.2.0-cp312-cp312-macosx_10_13_x86_64.whl (591.3 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aioesphomeapi-45.2.0-cp311-cp311-win_amd64.whl (556.7 kB view details)

Uploaded CPython 3.11Windows x86-64

aioesphomeapi-45.2.0-cp311-cp311-win32.whl (503.6 kB view details)

Uploaded CPython 3.11Windows x86

aioesphomeapi-45.2.0-cp311-cp311-musllinux_1_2_x86_64.whl (712.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

aioesphomeapi-45.2.0-cp311-cp311-musllinux_1_2_i686.whl (747.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

aioesphomeapi-45.2.0-cp311-cp311-musllinux_1_2_armv7l.whl (656.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.2.0-cp311-cp311-musllinux_1_2_aarch64.whl (687.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aioesphomeapi-45.2.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (705.8 kB view details)

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

aioesphomeapi-45.2.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (652.8 kB view details)

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

aioesphomeapi-45.2.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (682.3 kB view details)

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

aioesphomeapi-45.2.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (737.2 kB view details)

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

aioesphomeapi-45.2.0-cp311-cp311-macosx_11_0_arm64.whl (574.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aioesphomeapi-45.2.0-cp311-cp311-macosx_10_9_x86_64.whl (590.2 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for aioesphomeapi-45.2.0.tar.gz
Algorithm Hash digest
SHA256 030f07313377f609e249a27490f58378de7b78ae144ba925bd63ec8af7a39c80
MD5 67c8afe06c60deb17bc094466d5bfd94
BLAKE2b-256 eddaa26b2a56b42345e28ffb81f9ff00f54858203688a21ab5a49e0034a4f80c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 9dae311e41c43af8cb48b9672aac6c559609b60ee3b2d4405014c5372cfaafd6
MD5 d28b63db756b2e3fd09a3d10cdca56ec
BLAKE2b-256 1e92853364db9af98da6145ca8e23c4deb0b48eaf5ca9963448c7694a9d6b138

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 2c1385e52359205dd5a16cb52aea2e097ad1527c16fff2f151596a9c1b1d91fe
MD5 0cb6da80f76488f36deab7dd1a6c7409
BLAKE2b-256 167641b904244c30b4cad475dceb45c4313dca2f6f4c51af6bc43702734978eb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2e32e0c1fa08c4e7afe9ea79892a448d855a5d05c62c04be3b5cedd9bff572ed
MD5 2b3faf833fba95e4bdab318032357333
BLAKE2b-256 efa69a9e29f6c8d385db96ba98126190a2e91ad3adab339dcd47c7ea163a4dc8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1688a0cd4726a7a6599eecca9c92f2919b7562bfcec5ff00e1b95fae91ba3590
MD5 74b52736ac2acab21be8d433dfd4aee2
BLAKE2b-256 f005036cac5eb7cc4d40a6ba1f7f3d45944c39f56bc42bb2c6884efa0201c74d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 78269b70f7120983f9ec73f1da7e967b68fc39213de0bd3f53b7e64a4361b0db
MD5 82e2886c440d8fbbd572bf8170ac15de
BLAKE2b-256 d724024c5c2ede47fcaefa8800f9edad76abddf0dba3b149338c5100deb9cfba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 217d5478dfe3b93c7a3cb8663aaeca2dc11213f6ad3e6e0eef3a5648cef1ce8d
MD5 319c2a10c7a637416dd81f3282daa10f
BLAKE2b-256 ca31e51391ea8557c90786e515f41a90d196b5cf5fa685d912898fe45b360fe9

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.2.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.2.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.2.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 38163389c5865df59507e418145dadd474c81b9466289e6065464208b45b81fb
MD5 3441b364bf622555c38357f8736a37a5
BLAKE2b-256 1fb2729a551a5e77dfaf4434e9f3901afae5198c48800abab7b4af6107a36634

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 f651cccb8c33fee39ca8eae1704ff54fbd1d1711664ad64a993ccc9be37d0b89
MD5 c53363cc5bafdb95a8d1e0b0cc9a267c
BLAKE2b-256 56a4a02916c15f04772c8536fcbff2c5e991c727bb44992376bc766434d1c37a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 48f04818b9ec6f29ee0a20ecc45b0ba5d8df3470016cbdbc18b9b7190d3676a1
MD5 f87190f2542a39144442491e7d8ff995
BLAKE2b-256 72cdaf75aa9ae4f45ebd7f86a9f07a0a23e4096183f62859c7b5cb506ed57fc3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 4a6913356ba886a51bf8eb2d6e701317d4f9c4401cefcd56f0953e9d23e4d4ac
MD5 fa165edba2c8b193006512bb39f41cd0
BLAKE2b-256 90040f7132e4c918020db6fd50d4ceda7e31658a801bb0ea67f634967d28907a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ae16edf507e1ef1187fcf5e4f0d893516cdffbd3a9380bf455c5fff486d259d2
MD5 a6594813e33f83d74cab377c28650393
BLAKE2b-256 11581f093003e4b564ff264e6f6d414ffe669f5855805ff7133e1542708a8ab5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 41019db82c31bda4113945487f90a60e83d28ba3baf6bc92decb11c615bca6e4
MD5 e7936e879d5b64e0d940d25910c59bdc
BLAKE2b-256 474d0c74b50523ca5bdf54cf151d7ba1b4d2ef6887407c9fb8d0a894e42d9d68

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 a6339d73113bc5be20dcebcf7e7c0756256d1c363edb72e17ec48cf481fe9e53
MD5 2efdc7117f88af523212aa8a6dd2b65d
BLAKE2b-256 7ebea68a1a9c015ca1ccb7031ec03d53db67e8d2583671a9cfcd1bbab78d5f91

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aioesphomeapi-45.2.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 502.4 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.2.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 487b6cc24e8f7dc2c735eaf358bb77c8ee50c7341f8d9d89ebbce3ba104929ad
MD5 88bd7f8f13a83d62a9916026dc4a2cde
BLAKE2b-256 5ea4fcd378bc0c871f8530f3c83fe2843d916e7cd87dc8cffbea5498c42889c2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ca7fcb323b6bf01053eaadd851f4a8cda923edccd33e16aab6c215d06914bb76
MD5 f220546a3f31fb540baa4b0a1f805398
BLAKE2b-256 52a0fe665a47498397e6a2060fafc7001530f6589790071ce5bec682b916dd24

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9f858cd2255d20abdf0e0eab263be5ff4d7f2d66785ae5fe1963b7ecbfcd6330
MD5 2bdd1ac64950ad4e73cce71ef660c0a2
BLAKE2b-256 f91c8dbbd784fd128caed412e26505601d4379edb8519c0bb4d41afd14528920

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3d144e06e1195183619b76e5afa440fe54bef19f3c1818202d746add85f72cb1
MD5 095d637af1502a957767ea97d8992a3d
BLAKE2b-256 ce51770f1855ed3a7bf9db50ed9126fde7e608f6cba15deb747386056f64d839

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5a807127cc69a466cf3ba588fafe0062d37d3f0d7880a950c545ba92c7217ef3
MD5 94c1adfe1788e7a864224f942b7c3226
BLAKE2b-256 475cb8f8f086e4f175126275684663508ebcb78643cd57a5d655529ed243763f

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.2.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.2.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.2.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2229c1131740ea73b477ce3b7452276e5899d9c6ace124125dfd7b90bb5182ef
MD5 63eb5ef8fd9e8f33a104f758c81ed681
BLAKE2b-256 239f68694f89f2a1f7dbe44733dc32f99e1eac14f00a5340362891a733800903

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 2bd6277c82acf9713e0aefda3ec9cb36317d2c3760b62076bf2cb53cb76b3fc4
MD5 fbad5a4f86d561f62dde8ae06fae0a64
BLAKE2b-256 e119f1561512190923281091f6ad6a4017c77b0e53157dd8555a4f1fe0bbe765

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 823c17ca2c7bf79f66eada6a947a0f0cede0342c360087ac908dc62b1b4201e1
MD5 8f09f316d06feeedfe2c3b09b8e52bad
BLAKE2b-256 76f4a93100ebec02c0574d635f6207595dd75f6ea1c07fabb00dff080a2a51e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 d1d7f41a356cb06f2c96ada50e28057929f70dfca65d19a29a2a449333f4bb45
MD5 2ecd254bc7feeb26d106de445627d2a5
BLAKE2b-256 754e1acc3a54e701dd32783ff518766f1454286aac1d19158971afcc0bc14379

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8ec3d69f96ff84c715bf2dac22f519168f9f34ef3b048796be9ef557fa5004bb
MD5 e09e7453479e6522b7e45adfb139c392
BLAKE2b-256 e37be2a8d4d9f056308d881a3db21d4e8f0249de5462459b88d946a38633bb32

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 dd0c0c08bea44762b9e7728795041231d0273a7a66069b26cdc1b9813cf00d28
MD5 89c4fb4f73375367d01e4d191ccb6464
BLAKE2b-256 ec42ee5d24e60239a14013221877e2caeeaf2651703ec024e47c52dc3fa1b759

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.0-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 25e0a69368813ea512d90f53d34f8309fc8e3e042a35ef2979b074ddf24df7ab
MD5 e16855bc8c166a837256057ad5819bfa
BLAKE2b-256 356d393d884326d7be4584b8730933c07ad0d10074dce00e5a1ba8e9ecbeb3e3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.0-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 827b7a97da2bdc50d7cd685589c23c67a11824f812e7ec7317c9e56fe1c50e85
MD5 bb628b6d7136c8c6a548e3cf76c4a159
BLAKE2b-256 dbf62cf66e3cb4ec792999c0ec878c479d5bb72b45ad39ff0a7e5e9b03340bcb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3bf51385deb8b55a815beab4c59786851e2acd20533717af06d4782dec51a1e7
MD5 de4b3000eb31eb1e837607d594685fd6
BLAKE2b-256 c8e1528ae761e0f2a73730fea2b8593c07d7ebf1bbce3a04fe0e466174aeae46

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 65194efbf477d92b98ce8c6eeb54313ea599ae74389b98068b28ae8ba5dd1912
MD5 39003ac677af25a0d4d886f80692861d
BLAKE2b-256 347d4fb6d630893848e600ab1a1a3392fdc88823bea5149568cb541ce05fbc5b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f59c14a7bab6987412f4b1a848110833a421f6fabf534ec7cb7a66a36e66bac4
MD5 8cf6c1d02641ba4de7c951290caa44fa
BLAKE2b-256 923f49b6f6d544fd3da1c8b17528420a5ce581a40fceef33b60c55add0102235

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5cbfec61c8d9e9a0b77781f1f3a3f93cb626a70dc246c1c0df2f5c61b53fe64c
MD5 9aaab2e7438d9766bb524616610d8fe0
BLAKE2b-256 980202b1df861cfab96df8beb91f2837317ab749ec4bd4d514f63317f15de875

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.2.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.2.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.2.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1312b96ec3abca24e8e254080514790a3454fe4c5e38510dc885741cf861be20
MD5 a4dcc6708fbaf1b031c4c3e8c70b14b2
BLAKE2b-256 bfa81cc29a1580319478d0049b2f0d7e86904b0a45ead53326e4b0974cb73010

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.0-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 95015cd5e6dba7792463dc863611c32291dd8611856e0cd94639e545e1a0075a
MD5 868555cb6112ca143e822525ec016b81
BLAKE2b-256 108849b8e00285038ac1379ee8e928c21b63aad4a7caa2c36cf2a8d4e75baa4e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bfe1dca2523b3263e812cad849a6e5e595dc2a07e700fce26ce9551470fdde19
MD5 5f26ddcaa0ea512288bdc01ecd0b0482
BLAKE2b-256 5442d75628da0c474b6f5049d750b1f6c0b0d93b81b901d0d553639835dbb079

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.0-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 be24e3cfa872b411075efa5d661ae251503f0b3102bc00b88a35f4c233eecf26
MD5 ed5f3410d8c2fc96606743f5f89671c2
BLAKE2b-256 173a365b3b746b01e7687d7781c80927a373a5a0107a67efd0cba2167dee80f9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.0-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0c16a9d214ae291c432c60c76d0dccc434ddecec67a14389e21b533d85b44847
MD5 13cce21943de5bbb696f53cffcf40989
BLAKE2b-256 b00ef33685192bf834556fa05d13052c40da9aa7bdfcec0a415c743601f5d271

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.0-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 e5e573c89198fbb6d985a4fcf464452f1d79d24efd35f56256038906b2c0ba63
MD5 c867556c5e597fcb1c8389d22e1278d6
BLAKE2b-256 12be9103f2efa7b94c639314e521eb786366de6b44590c9981a9ddb47edd38e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 958d98a56eccd1b5de8df968cc5225ba1e13ab8f1e1964050636884d931d631f
MD5 983e30607bdafc070d6f563dc703569f
BLAKE2b-256 5a6e86a0ad70804512a3aeacdd345519542a71c392d7df0ccbf45a7e426997a0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aioesphomeapi-45.2.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 493.3 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.2.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 01647d099c42633887a3f38b4b4de80ed6b826fee48db919ab9e870462ab1e47
MD5 d3a294dce4c3802af0536a2aaa77e155
BLAKE2b-256 7603ebb1e1da9a52229d9f3bdd872021b94c4f095a76d50db1be676ae8944340

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cb5efedc410bba8788e050868ee18dd11382aff81ccf61c34bdb8fdce7cdbd41
MD5 66066c9ff7f523c3e92776579b4c22c6
BLAKE2b-256 1604ec6127f9b833edd5b7110c6c211e9bc4f0e7abc15e8543538d02e0a14535

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 431e14c04229c4e91d8ddb6b6394ddee3e552fe368b557af385c6f31583594a4
MD5 caf8654341e6a5b4d913fb5974ee6675
BLAKE2b-256 a406033d07fe1619b2a48c82ee7c385eb1ffae164f67c2ed75568f22123a275a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a4bb83b86119b33a343494c4664fc14f2b65eb27e2b3496d040eb2fc9643ffa4
MD5 1059ae68f5974ab39ceae6edba7089e0
BLAKE2b-256 7979e67835e548c9e10f0b357c72efaa978d01ebf385aaeff82c4e7517cc4e6b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bb6b48e086dc9510e9086477508a35ba1f90e36eb475f4d4607d9d4ff849ed82
MD5 e80991a87a07586a3f90a1c55afd3be8
BLAKE2b-256 81abf240e2182ffa1bb8a4405485fac6472bb52430a17fb1882be82dc2b2f7f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.2.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.2.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.2.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 21d0cc455dd92c34bdd786aa3893b043d64f9205b6f000266a28122fa38cbf70
MD5 0c5b14fa10f985d22a42efb99b150276
BLAKE2b-256 74d059a19627a5d22e87638e341d07d775e4c502f8257a8bae788495e5b956d0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 afce3d924466b8f05c67a97218a3e3bcdcb926511e05fd48c0f2b3b5965f6536
MD5 05af5cafda20289e5d2afdd99cdbdbfe
BLAKE2b-256 dc2cd216b6c21a19ad235408e9c63bc03a3f7ba21967049059971cedf2b98a9a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 32ca02e19c82bf2c2fad79663130404a34a07094139ec3ad30e591eb719c7984
MD5 5c098a3705f96e743ca1062d3552af8f
BLAKE2b-256 c1b3d5dae300724d7fc7d07a96b6588007a990cc74f9f4e1b2011a8e1a9b892e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 3cc78f60f498eb41d67b9b24ac2ab7df35e237d2762bbc6b68722dfbcc3e1cd6
MD5 cfd63ba04f3fa27f0360180a783878a1
BLAKE2b-256 37d15e2efd58477510a9640b2846bd8de4b4ec957a677eb17b9010ad3a240e38

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 26aaba74918d770d2848777645e8fa044ba1f20ef11f41f312c9c30116dd7f99
MD5 be4d1ec2f744511d5e4e26459a794f94
BLAKE2b-256 6b07de759c96d903119dc4f5b86fcc3c3c9a291bde1844bb393c14bf0e3e3a02

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b94d82050efee82b0b47ea11cd624b22b8922e74a4b52ade1db15bc58feab561
MD5 1a0a59d2581aad5e8b1a0ebf5cdb27df
BLAKE2b-256 29f0995b64c8d5374f54182d51024c7f4cefdb79428b17c845ade5aeac6b6502

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ab1c19aacbfbcabff244629c0379b93db84d8053f04ea50d69f2a783b794827c
MD5 c07198fbb39575539e18fffbceb10c7c
BLAKE2b-256 19cc5896455b791eca04cdda2a902f439f5a92c4c1094067e4e156d706760f47

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aioesphomeapi-45.2.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 495.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.2.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 da7919eafe5898d0247a1fcf2e75e3c7f9def107eb194bffa0e5e79195c22f11
MD5 0b7cf970e278be191579b82b6ce7e3b4
BLAKE2b-256 31f8265827a05dfe5e56bf59a58b3377d679f14b74ba2c59e246579e03bd4467

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fb966acc018073c777f4a6d50fd8f1fe01f97cd2076364c353c91d2c5e023dc5
MD5 e2bde182b8db4d04bdc26cbcfe68d0d7
BLAKE2b-256 0625c3cf85ec207aa0329e5c590a45c6a4052b37d01b6ec3dc2588fa93941b84

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6ee3addf23fcafd943609cd70b096f94a7a3286976fc58798ec947f89baeee7d
MD5 c90afa29fb9f74b3f2998c35865c853e
BLAKE2b-256 d9e77bfc80e599ad84eacea9e941f7fe4069604085ec41b6cd843e5cdc3a4482

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c530af84b1a4ee801aa8e6b654b86c65c4a239748253c91bd9c182bd81c83b5e
MD5 4a66ec90080a905eb17805797623b72d
BLAKE2b-256 de9a07e43df6e505f96da15b0cd56e48784d8cd728fcf929c65077425d578804

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9cfe179f863fa924562f13861ec6ca506d98aafb4dc65ca1fe5e866872f75c72
MD5 8e19b66f69e49a81264e418739e97329
BLAKE2b-256 6ad923f824105a2ef4decf14bdebafd8c80dc73762f5e5de6c4bed4e481ccc2b

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.2.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.2.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.2.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 64496bbb51d220da3191aaf442ef2b174dd0345be7470c52739e09ed09267ea1
MD5 fe6ba1849793befe5ed1fec8b3a200c4
BLAKE2b-256 37814026f227a9356a5d3c36583a9592474a0b29d6399f8c71b2dc713d829fad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 c34baf6344418bccd6ea441ec7765a8867e23e57decfd325ed679d72782dff19
MD5 ad2d57807005d25f948e63516d84f329
BLAKE2b-256 d9aab46bf4d92d331f4cfc9e8b462c2ab1ab4d22d76ed148714f632a273706cd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 89bad3c72a857cd5a0159e674085db3d5049a1b1cd994d0a8d6b634cb76a2ec0
MD5 2bfd050d37b9dd8236c7332ae1f3af70
BLAKE2b-256 3c0915ab69deaecfba1a0d068141b67cadb32b506cb6a359e0639823036554e7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 7267bf3846df3bbbe96d5eee5d44b5667e874f87693720499b814874a1caccbb
MD5 cee0a423e55520330759d71efcf1c8c9
BLAKE2b-256 73a3788ea4309fa200b1c5fc7e3271222bfea6c4d2112518bf5c2b8fbd7403fa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3d45c4f982b2b1fb5c5ee8cc826d9a80ed0aeb29978eaae9e0a6b57b6157e7bb
MD5 d345258d078df13e457601cf4b733ff3
BLAKE2b-256 cf811b1bbd4183c37b4c670cd7b8b08011be1f313bd1492a15097b1177d87f71

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a6abca6c6d39c7720866850dae5ab124ed33d71ecdee54bb44a289e902a09243
MD5 17b7a74c85231ae12f7809ffcb361c01
BLAKE2b-256 0c98449582291c1dffa63056752ad5f8ecf08a594f46f1bd0af8b583a5ef8bd9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 01104af967a23412d5f0c9646ad45571c37108def7cadf23e8a0cfa758c7cd99
MD5 d5382604b6bcb0541ae3f809cdc69397
BLAKE2b-256 9bdd1baf92bb64e5e7e3bbd5334f6c054168f0504a92b16cf0a7713d7dca1afb

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aioesphomeapi-45.2.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 503.6 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.2.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 d5a9fe0aa6464715fe4ea7a75046665795510b16111331b718c96b6dfb78d8e9
MD5 1993c4e1ce3cfb8fd4a14f3844aed3b0
BLAKE2b-256 58064387529dac6eb2b77dfbec3e774bb2c3624e5e995cf44c110e33a846b4ed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1ab6869cc45c9377771e87da9ec19ef3fda34add0cfbf2f88962dbf453ef5ddf
MD5 037f747aa5f3214493e5b47216b13121
BLAKE2b-256 2d25670de8ac9af168a810b8d84f960d99c1cb812454d4a5008aa7128d0a9a74

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e5ffcc0577e542533652b8cf2fd3bedd777a647219a327f39a6246a95cc02e70
MD5 a119e363552c2db4d136b7ea79d4f7ba
BLAKE2b-256 388fd68135e8b8a09e29b54b6acf867183648ed8d98d5d0b79d1189dbb512f99

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d0dcd0b2032c3ebbf18765ce66bbd7e3715fcee0c3c5481652a1baf2628d7985
MD5 4c4b46bf94f06aab966dd35b3836bbf4
BLAKE2b-256 2f5095bc15dcc84c1c29d872160396b8ceaa75b40f47bd64d95de8e5f51fec0b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fdd1a3998ad9bab00a7352bf505ed8b9e77897f43d87c56030539d74e36a97f0
MD5 450b8ecda5618dab1dcaacf7984c855f
BLAKE2b-256 b105dd2d3ff273795bbd094533b2a4fcbe5984735b4df280c836dc97561f8581

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.2.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.2.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.2.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3020b3ed4fe7bcbe9da68db091e62aa681b3ce287d90ad7fefa97d15d661c22b
MD5 05241a05d2a206f8751205e9e424b220
BLAKE2b-256 06695195e5c52f48719b2b1cda8dbeda91dde624872b7cb50530521aec50c0c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 fb8d6db36842eab743c1975241e5e9d04176f373366bac7842009a4f23e76b4c
MD5 9f534fd41a005aee8ba5cf69df5acd02
BLAKE2b-256 b15c171ea53a80bedc69d852f000f61358607d636b7ca2a9bc67fe53bd310fba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3ba1fcf4ceb2c68076621f2271eac5b0eb96559edc11e7e88f736f6d71d37957
MD5 cdad1eafc436594dbf2d2404093e0982
BLAKE2b-256 8e0298abc128d17fc1fe4885eebe0e82ef1f149aa4bf6713ae125d6fb497ab81

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 6c361e8c64a6f2a97b748a7f91a50be9ee2319125cdd13484b3cef79002f17e4
MD5 75bedd19123537231392d660d8f6202f
BLAKE2b-256 9ca33797f05ebb43712c558a6ce86122d825d9e5e2e37e57cbe4585274f6859c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 391b2349aae33cc9d33998de3c649ecbfa3b239d290a7a19036fb5de40617a4b
MD5 39c5735bb74838e530e6195f42c7347f
BLAKE2b-256 f956105eab4db1b901b2291f323cc465074606a6fe0faecc4a4c9a00ae43d0c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fa96b08237cb0f038ef30ad0be2fc9acaf649e1192851c9d9759f64e880bb0be
MD5 5b89304834be84c1316116d8c33ee5d7
BLAKE2b-256 54f7b4004e04a55b0e1e1b72346f9869121218ef00713b53ec8efd75d04d0775

See more details on using hashes here.

Provenance

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