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

Uploaded Source

Built Distributions

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

aioesphomeapi-45.3.0-cp314-cp314t-win_amd64.whl (657.4 kB view details)

Uploaded CPython 3.14tWindows x86-64

aioesphomeapi-45.3.0-cp314-cp314t-win32.whl (580.8 kB view details)

Uploaded CPython 3.14tWindows x86

aioesphomeapi-45.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl (711.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

aioesphomeapi-45.3.0-cp314-cp314t-musllinux_1_2_i686.whl (732.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

aioesphomeapi-45.3.0-cp314-cp314t-musllinux_1_2_armv7l.whl (655.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl (699.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

aioesphomeapi-45.3.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (702.4 kB view details)

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

aioesphomeapi-45.3.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (639.3 kB view details)

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

aioesphomeapi-45.3.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (692.1 kB view details)

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

aioesphomeapi-45.3.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (720.2 kB view details)

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

aioesphomeapi-45.3.0-cp314-cp314t-macosx_11_0_arm64.whl (620.3 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

aioesphomeapi-45.3.0-cp314-cp314t-macosx_10_15_x86_64.whl (626.3 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

aioesphomeapi-45.3.0-cp314-cp314-win_amd64.whl (563.5 kB view details)

Uploaded CPython 3.14Windows x86-64

aioesphomeapi-45.3.0-cp314-cp314-win32.whl (503.5 kB view details)

Uploaded CPython 3.14Windows x86

aioesphomeapi-45.3.0-cp314-cp314-musllinux_1_2_x86_64.whl (698.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

aioesphomeapi-45.3.0-cp314-cp314-musllinux_1_2_i686.whl (722.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

aioesphomeapi-45.3.0-cp314-cp314-musllinux_1_2_armv7l.whl (637.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.3.0-cp314-cp314-musllinux_1_2_aarch64.whl (675.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

aioesphomeapi-45.3.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (691.0 kB view details)

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

aioesphomeapi-45.3.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (635.1 kB view details)

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

aioesphomeapi-45.3.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (669.7 kB view details)

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

aioesphomeapi-45.3.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (711.9 kB view details)

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

aioesphomeapi-45.3.0-cp314-cp314-macosx_11_0_arm64.whl (576.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

aioesphomeapi-45.3.0-cp314-cp314-macosx_10_15_x86_64.whl (590.4 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

aioesphomeapi-45.3.0-cp313-cp313t-win_amd64.whl (624.4 kB view details)

Uploaded CPython 3.13tWindows x86-64

aioesphomeapi-45.3.0-cp313-cp313t-win32.whl (557.8 kB view details)

Uploaded CPython 3.13tWindows x86

aioesphomeapi-45.3.0-cp313-cp313t-musllinux_1_2_x86_64.whl (707.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

aioesphomeapi-45.3.0-cp313-cp313t-musllinux_1_2_i686.whl (729.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

aioesphomeapi-45.3.0-cp313-cp313t-musllinux_1_2_armv7l.whl (652.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.3.0-cp313-cp313t-musllinux_1_2_aarch64.whl (696.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

aioesphomeapi-45.3.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (698.6 kB view details)

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

aioesphomeapi-45.3.0-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (637.7 kB view details)

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

aioesphomeapi-45.3.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (688.8 kB view details)

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

aioesphomeapi-45.3.0-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (717.0 kB view details)

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

aioesphomeapi-45.3.0-cp313-cp313t-macosx_11_0_arm64.whl (619.2 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

aioesphomeapi-45.3.0-cp313-cp313t-macosx_10_13_x86_64.whl (624.3 kB view details)

Uploaded CPython 3.13tmacOS 10.13+ x86-64

aioesphomeapi-45.3.0-cp313-cp313-win_amd64.whl (552.6 kB view details)

Uploaded CPython 3.13Windows x86-64

aioesphomeapi-45.3.0-cp313-cp313-win32.whl (494.7 kB view details)

Uploaded CPython 3.13Windows x86

aioesphomeapi-45.3.0-cp313-cp313-musllinux_1_2_x86_64.whl (695.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

aioesphomeapi-45.3.0-cp313-cp313-musllinux_1_2_i686.whl (720.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

aioesphomeapi-45.3.0-cp313-cp313-musllinux_1_2_armv7l.whl (644.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.3.0-cp313-cp313-musllinux_1_2_aarch64.whl (666.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aioesphomeapi-45.3.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (687.4 kB view details)

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

aioesphomeapi-45.3.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (641.5 kB view details)

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

aioesphomeapi-45.3.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (660.7 kB view details)

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

aioesphomeapi-45.3.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (709.3 kB view details)

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

aioesphomeapi-45.3.0-cp313-cp313-macosx_11_0_arm64.whl (571.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aioesphomeapi-45.3.0-cp313-cp313-macosx_10_13_x86_64.whl (587.1 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aioesphomeapi-45.3.0-cp312-cp312-win_amd64.whl (556.7 kB view details)

Uploaded CPython 3.12Windows x86-64

aioesphomeapi-45.3.0-cp312-cp312-win32.whl (496.4 kB view details)

Uploaded CPython 3.12Windows x86

aioesphomeapi-45.3.0-cp312-cp312-musllinux_1_2_x86_64.whl (699.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

aioesphomeapi-45.3.0-cp312-cp312-musllinux_1_2_i686.whl (725.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

aioesphomeapi-45.3.0-cp312-cp312-musllinux_1_2_armv7l.whl (647.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.3.0-cp312-cp312-musllinux_1_2_aarch64.whl (671.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aioesphomeapi-45.3.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (692.9 kB view details)

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

aioesphomeapi-45.3.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (645.4 kB view details)

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

aioesphomeapi-45.3.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (665.9 kB view details)

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

aioesphomeapi-45.3.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (716.3 kB view details)

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

aioesphomeapi-45.3.0-cp312-cp312-macosx_11_0_arm64.whl (577.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aioesphomeapi-45.3.0-cp312-cp312-macosx_10_13_x86_64.whl (593.4 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aioesphomeapi-45.3.0-cp311-cp311-win_amd64.whl (559.0 kB view details)

Uploaded CPython 3.11Windows x86-64

aioesphomeapi-45.3.0-cp311-cp311-win32.whl (505.1 kB view details)

Uploaded CPython 3.11Windows x86

aioesphomeapi-45.3.0-cp311-cp311-musllinux_1_2_x86_64.whl (712.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

aioesphomeapi-45.3.0-cp311-cp311-musllinux_1_2_i686.whl (748.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

aioesphomeapi-45.3.0-cp311-cp311-musllinux_1_2_armv7l.whl (656.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.3.0-cp311-cp311-musllinux_1_2_aarch64.whl (689.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aioesphomeapi-45.3.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (705.4 kB view details)

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

aioesphomeapi-45.3.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (655.6 kB view details)

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

aioesphomeapi-45.3.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (684.7 kB view details)

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

aioesphomeapi-45.3.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (737.8 kB view details)

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

aioesphomeapi-45.3.0-cp311-cp311-macosx_11_0_arm64.whl (577.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aioesphomeapi-45.3.0-cp311-cp311-macosx_10_9_x86_64.whl (592.4 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for aioesphomeapi-45.3.0.tar.gz
Algorithm Hash digest
SHA256 31bb822fb8a02d5e9d0d92df4bedeb248da1f542cffb9ed8b6fd588cb99abd3b
MD5 887f565d0d5ad3736bc04a6944991fd9
BLAKE2b-256 109e4b15a9a852b8788cbc49d5c348995e03710a3bc93a5982c286ac26186837

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 4861a83b0e5f3d5e9cb8763aa9553719aa8325087c5ab7755bd7f29332ee8e58
MD5 9089e97a896ab2171c8d8640ee36aa26
BLAKE2b-256 1ce0058dbec0fecd5f2c22e60740036472347f96a47d7ed1316ece7a93335669

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 d063c9d25483543cfe8538030cdfee701900813768fb9b7dc462f6547ffcaa56
MD5 7a9455d88eaa7a5eb6207d368356e96a
BLAKE2b-256 707861c153ab1975d46b4a555392c4aee3822c074781277e52ae6b099c8c63a2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b0a89e1cb16990d52c4ea8032716dcc3a350ff95745057e3f897384fba30d2ea
MD5 fe4adfa5a2d7ae6c9eeb199149e5800c
BLAKE2b-256 2d3d26dba42a2fc91cab70d50c9fbbee15fb3e56d647a58533159f44d114b30e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3142fd8560cff9fc9c5c8d569a62aec3f6dbf36d045c75ac8fcf5f3636528886
MD5 f52338cbf535bc09631fd38f2d353a61
BLAKE2b-256 15b2cd653d7343cac2a220e63b0843f14235c68d9f4b0b82b38b949ea8583d1c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0ec0e4417d81847d55bc99946a3a5acb86a0c35a90e24a51e048aca911553362
MD5 dfe51ae21fc541ee93161d812229c038
BLAKE2b-256 c49126a2b1ed3dcf9ab4815a8984d147413d5caf7f4a758346a9080a8325df1c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4ce375aaad135aec714d390e0739d24a3f1e13e41def84ee9f89ab08561efc82
MD5 ea304ba4ce94a90bfa2cf1640e43ceab
BLAKE2b-256 dfad6f7ae9b3b137325972cac34c8e1868bf09faed5d3c7bdea056e050acfd49

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.3.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.3.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.3.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 05156e4400093014b47ec4c6925efe19016538048f93a67df8d7db32c8c3b9a2
MD5 a1ae7484c839fc43cc8f009ad5bcafa2
BLAKE2b-256 2aa86f9dd76ca3bec14ccf57777332ca54412339b180ea9e5c33a46879e013b0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 6cefda435204e4efc0a35ccbea2da304b95dd22d8d72f6e3ab3166c97ffa92e1
MD5 77b5e22ba85c57fda45a4d190c60e4dd
BLAKE2b-256 c8c85936da21c98835338b0ba3707f68cae4a6a2d863cdeffeef201321b3fa37

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cf4108af4c2abf28af264b0a286f0daecc9b8d166149e209571c0200b2bce801
MD5 4b1512e0e6437b0feb173e676f0cc744
BLAKE2b-256 ef607b6c126ef7b8c3fa5be7cdfba7b4e49054a745d427a10d3194c9db497ce8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 ade0b0af8b7ee724187de9cd48209f4c9a52e775a7cebd8039b323cc97f9d5ba
MD5 2284c28a52ca4875641258a61ae0accf
BLAKE2b-256 fa11dd8413f3d4518a387670116e845979f3a6d9501b5de9d74dca59e34b583a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 01c1b7d3ebb721c18dd26e1ad829b67dd9cbab41dd0acc4118ee25d004c40eb8
MD5 9cabbd7bd296522759ddca916c2ccf23
BLAKE2b-256 703e273f5eaee7ad422f2f25e08a884b0d0b66f15c2684343cea2f82bb0fe4bb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 73cf3498e2dcae44653e490815aa20e9a3d7865273d9c6da489744754b75a713
MD5 f5a7b0f701e3dfba2448b108c83bdb61
BLAKE2b-256 9e0de7e800a341b0ee1d519a3e87bbcb1300c9e18058043819d19af576a7dcbb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 570c9da537757e252c3d285a6089a93f9b9c609a9d024ad3ce0a05fa35366f72
MD5 0ad2232ba8cc6dd72483be680f9fa57a
BLAKE2b-256 a1f54c34023a7244eb0fdd9cdce1877b325f4e312ca831334c153efbd50b7826

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aioesphomeapi-45.3.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 503.5 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.3.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 90a11ed562d92ef7709ffc2527d026eafe511d174e6c41880a19848185f6ebfa
MD5 6c0fc26b8bbc5acb7815b47f132ceafe
BLAKE2b-256 14566107a9c594039a746dbd81895c15d890deb66ecfa94c4c36bcf33af8a8f8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b31830c917ca94b0b64cbb042f3079125d68bf09dc1ebe59e3168b165b9cd25f
MD5 dc137920f3adc419adfd5a490fb86e0e
BLAKE2b-256 87e3d53c7f276b293a9fdef32eca56abb5cc020d7fa9a6b65c9f488bd9f0c161

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 93fe8b88fa833ba6ecf633d145135201b593d0a26dd5dea904c9f1c581ccdd5f
MD5 fd752c5fcfd3f50fd10c38507eec70f9
BLAKE2b-256 8ba83d27cee16f9039ce89db89a1196735c6a3424733948e43adb9b21fee25bb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 315d9ccac9e0a1ae848744602d2932daff32e6f0b10563c4cb92107d6574a202
MD5 409c39aa418a4282a6c486855ec552c8
BLAKE2b-256 6cdef7b4616ec48b69ea726a6722e6741a0471bd8449f45cc7644bd11b7e9db5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0256fd3d5fcd19c47abae962db0643e80dd2fc67baac7267f2cea8bc455311ee
MD5 8a10dc55266937c7892f532659336700
BLAKE2b-256 7503ef4259fd60b6221c8124736cdd78be4b1c4162304cada6500c4f272ef646

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.3.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.3.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.3.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 61245ec2b79656ba724a3bab02f9dea2fca83a9d7497f167093f0001cb4ca1ab
MD5 db63e942e8d5a2ae2ea4d3c320f588cb
BLAKE2b-256 655bcc80a39ef1a02374687bded1519eca67f280e3f8abce5ff7e71c0d3792a8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 8f451339bbdae88295a14d8e729e01b707f766b70369ddcc54609d737650a740
MD5 ff32b6f617bb6586db5afc26e55db363
BLAKE2b-256 f8fcfdc7e839168dfc431fa45c8b965460ccc625c57f8f18911e871c87335ec0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ebd9f91e0a735eeec037ebfeab3cac0ddc26205742ee1417e994ebd52d4a9f76
MD5 db51a1b64cfd774b2d0fc495c1b9601c
BLAKE2b-256 bc63aaa8031f03d583f40c977890e48c28baa60dac9c6f706b8616c97f58ad24

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 a0b65af570436b679645aeef4ac66c39cd6d9f2dd4a946436b8befe0e5cc8b67
MD5 cd3b2612e6cf451128b21480a2f5aecd
BLAKE2b-256 ac3a2eb0b9bb0a7df55d7b16cae79e097971baa8c6d4269f56d4a4db1c3dbf93

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 275f1e4bd3093bed81988bcee629d285cd49b5359f10f7ba249114018c4ad7b3
MD5 ca2e200371c0ea65fec9a64d3e411cec
BLAKE2b-256 3f038daa4f5f45201380260ea4dead23531a07268422703554822849e0183636

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 2e0671bd346ee5b57d8acc5632348800290ac58da3067c717ac40800d2a31d4b
MD5 da28e99834745ded1d7bcb96d1e4fa1c
BLAKE2b-256 fd1b97dfbae4a7e723c607de56f021c51c049341640cbd529167df81d9c21a48

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.0-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 dbf283e80dd14bcc32e883ebabcb93353c8264b9ece9fcbdd96e806f4ed3ad93
MD5 9c689c6d13e97003d25fd890e931d48c
BLAKE2b-256 9bd8a3fff2de9ed31b0ad8e7cccc4c3567174621e455de43eacac836127c2e3f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.0-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 9b3b3e5e6f4ed75d6a967feab4b7aa6bbd5fe70d68182cf81c3ccd0e89b25d12
MD5 3d27894163d90658995fdd20a858a6a5
BLAKE2b-256 5e4ece68fa9931d6aa4dd58a909d21affcb35db3bd465eca277ef4c61450d84c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0fb181faec4febaeff20eba796be17035b35c6152eb9d807a2f0d92fec3fae94
MD5 c4ff42d494cf3ffb0ca0dbd092c5584a
BLAKE2b-256 cd3f27b4626e5f8536021630b2598c541a89f32304774df1a1a7afef7bcf8091

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8e0d67582405298c7ea9a26ed19c5a07a6581021358fa4c68fbbfa9716cedba0
MD5 a471dd6334d5da1a1ea37ac2a65a10b2
BLAKE2b-256 691f77fb34cead731d55c6e09d73e691b31f136eab612923518dd9d8a27c815b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d5cf061f9c458fce63d692489ee3c972819d916cf179c84dc29f690421b6b250
MD5 52665aa4fce9a867e69343f3c64f35b1
BLAKE2b-256 ee6bc30f2614de2c227e05c4ef2630f65f3d4415314851e471818f264a2b65ef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 754e749a56d9848642e00d9ded6f4cc94050e3a47d171545ec91841a7085b12b
MD5 6bc10ed897e6422851987e7c797e5c98
BLAKE2b-256 d967b72fa60e5bd1d74fb67b808ab3ffc2272ea98ebd047a7dfb881d947fb2c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.3.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.3.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.3.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 eb49e5a9fdb1035366d2ad6117e744d490a2c52d6d8e2e0bfcc233a9c999a66c
MD5 9bfd1a8620f08a3986f9d6a00fad0aa1
BLAKE2b-256 96516fac6191c8606afd8e5bd5c149e4d1a67d2e0ab253ffc15ba3c26bbae912

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.0-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 e24075292629822f0b328b2e70723e77a6b7fa2c2c972bf3dad95c2f79e371bd
MD5 2bb2a42361e6d29b40dae7a43d3480fc
BLAKE2b-256 a04ede87c02164b766d31441453052ddb006562a1069cd02200fe78b8c47e0e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d02be9200738f089ad4ea992f7c839613ca265dadf0c2b06b61594d84b45950b
MD5 6075928bf20b5b0d0fad44f02ed7cc0c
BLAKE2b-256 2af5aae83783c0f83eb9eac96c75d263a1c1dccd6bf5ff72ffa00a180a92b065

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.0-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 5d9d987c8e91cee7e1babc1964fffd26dae5176941a5b97ef6d4cc3ce1f4386b
MD5 969e87e6c04b12f3bb19f2526d520d3a
BLAKE2b-256 aea127a69996380561a02b44f8579a038f7c652cb6520fa6d875743de1b31e4a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.0-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fdfe6e84b3a9c394b087ccd0bca8b6234df15862397a79abf51be70919d90c19
MD5 64be2d3213815e6e0ce9498778d4bff5
BLAKE2b-256 c420d50a1c1fe2c81fc1a22f576c86ecced5b07c0554bb767cafb576d8cb278c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.0-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 8d1a22db5499ccbb98318a610aca2baa4a2d2286f34239c4cbfcdf919fa9fd8d
MD5 c9dba04ff4a609c5321d2e0ba88dadf2
BLAKE2b-256 dc7405c228c619660d5fc1603e8adcd3be12221f7ab03be7c04dd041bb36e9f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d84bae7fb1ecdc6eeaeac7be85bc6e87898794da115e750964feea2e2e624160
MD5 9a54c8571647f02b3aff3509254d95b3
BLAKE2b-256 6528933c048890ff4513aa81d3f7e4082870a90a9a1ebe4d7e5d869abf79f766

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aioesphomeapi-45.3.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 494.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.3.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 26ab9f16d05a8a20ae721218d66f363a6c499d2da570e819d5c45a69a3a1b420
MD5 4a54d6050c1aaec9fbe1accae601f0ab
BLAKE2b-256 fa92e25029c81802274e3c27db4f05b838cd2f78c21641bc384ac589aeae41d4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9912c98456899ba4e264ed0c17176441578582cf8b199da3743cd06c93579386
MD5 7bfde8d96925705a14f27513fde22833
BLAKE2b-256 a8cdb77b8f8a492679b1f0b7924f4415a8d5a92d0bb980ce658d5e4561ee341d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c50068dc5f817ff26f46ae076f02b095c80119d515325f1717fab3cd12c80485
MD5 10b876345999fe21e20345a793e0eab3
BLAKE2b-256 8d9faadca7f9d006d23bf7ae4143296a0f842f9ae74ecb01f6fadfbecadaee0b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8a0b45cb0989948cb57406c9300abbf3bfc032d05d3247fdc33454639723039d
MD5 317269443c84101b772eae7ffbb86c7a
BLAKE2b-256 68f99dc5f1054a2203a03601c1887aa5ec182f5e5beacd94c5fd4be9bafe1315

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8cd563e4c5384d16689e704d99781a1028c11090267709687a6e5daa8fa37a23
MD5 1e0f418d5c0f7c8dd2ebf1c5f05d0d4a
BLAKE2b-256 a64f56ab4f3cd74a983b9ee3992a7ea551be98cfaa949955e397eecb53226a33

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.3.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.3.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.3.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6315fae221a1c9e6c3707724df480063db3274b601674a8333bc45edfe78abc8
MD5 e97e93de67b508cb83d711ce992a144f
BLAKE2b-256 f59c6342b47aa06a6552344f52511e299878caedc9e3f71c5e14d5b2817bbc7e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 5a3d528ff5e00d2f5baf83d7634d2522668f6373d68406afa5b92622cce9c856
MD5 d94b03182419bc8b56f5884e2feceef3
BLAKE2b-256 f69846739b66a1ec733a2b682fdc5954f53c01e341818ff2b48e4571322df4ac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0d23f32e87c8db381561907f0a4d937774fc31c03474f85b496c43f981075289
MD5 5ca3a01e66c2ee17e651a1137352263c
BLAKE2b-256 7e61d1b117b8718ac988b77fc3552139148787f4783246e9401cd4ce200c6f11

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 03eee8d32f6b50a49f436010b11d6c81246dce871d34d755f1e9961880778e39
MD5 428f03ed39e5e8965bc0cd574ff05856
BLAKE2b-256 407defb8cf60f5c4a3ff6d12d235b3eb17d166bb5e0570e0606e945921c74f36

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ebf0e270277bd92515bbec68586c6a4784adf5a8a783edaa170e3d4469dd08b0
MD5 df39629f9b25570810b2558091947450
BLAKE2b-256 318927157ac80bbd696b65a3b360b6810c4187c77793867184387bf0961de420

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b0671eb2c11532dda89231f076d9db6ac8ef898e96cedc8d9fccfe2a0a0210bb
MD5 9c35cb8726fe7ea0b24569bad0747f61
BLAKE2b-256 f22370f1c55707acfe7447f57a4bbe7ab3fe0ade56a0855d4e39073e152ea1e3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 fc070f7eb3e0bc12dcf8f74117b60538d3beeffde95d69f1c83202792cc3c779
MD5 421cb236d21b6d5fe450cbb2792a5019
BLAKE2b-256 331869d880ea8f50422195ec4d93a0fd201dbbc6d2e31c087a16e25f37081185

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aioesphomeapi-45.3.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 496.4 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.3.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 2a6fdcbbccdcb2c4d5685008686ec968b814dea13b673bf07b32ab562e5460e8
MD5 b439d7d2fadeb9b3582ae7edea3b8fab
BLAKE2b-256 9dc394a8d6dfe099680705ae6b5b46356fc4c5ae92bbdb4b059cd24a4c00aff0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9eb93524512ab81d32bb399742cf238f34d16b91f255f2331283dd4202d15861
MD5 acb4f9cb7cb32da1c78d55c99f1963e3
BLAKE2b-256 29b91c49f06a9cda9397b30cc82cc7884ba5b19088b27fdeaf4acebb509b26d5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 11f38d0d576ce65ded099e62e0f44a5fb72450faef73a196003697ee31431619
MD5 a174314591e0c84c8ddae1997b80eb11
BLAKE2b-256 1e6185225de67cda78a102d2f8134832dabefbc29a672ca9d582da846409e33c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 786e5737ed9c4daf51cc29e4449201ce7a2d1aa6491b8b45f0d5214fb3f5adc8
MD5 1114db81033c62ed48a62339bbac1e64
BLAKE2b-256 81a7e0db58451d1ff0e13f697d5eb6f28443946a5696eb1640137889d9dcf6be

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 97a340207e9e13bce286e4f5835e57c4d78dcac68a1d5a801e13e1571e75edc2
MD5 32ac87a031daaf39bcc9b35bd8ea3709
BLAKE2b-256 834b9c4bc259526c797db9cc059326e74a44b7eaf5958f485f7f2b0b902f4747

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.3.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.3.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.3.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cf7f973c46bd6ca563b2dbbf870d6621ab5af6a35c401b1d4c7f7c5d2d654791
MD5 0d59de07884ac1f2dc4ea01fa7123345
BLAKE2b-256 8c8fcb5908e959a72d13bdc3a7b6a3edbec7fa826722be677f1feacca14f77d3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 78d948ecaa20368f7b524302b46c818dbd6d5000b49701f02a0e57fe6598a940
MD5 a9684278b9d918096b79dfacf7a66f56
BLAKE2b-256 7b01cea8d7b4be96c3179f0c6feaf823d96ff5933f4a4ca26d800fa4abbf7ed2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 dd3f7f1b8bc8048dc4f51b1baf636e3898ee498ca6661d5304efcb55a4fc3bf6
MD5 2ad4d6864f43b9842e531d51cad9a6aa
BLAKE2b-256 841fbac122bee180ceef1aeb3aa7caf21ec20430170483268a0f4fc2e3025cac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 c562980e8c98114ffc6d79c3fb27ce9602be79327844ed2b022dfb823baaaccb
MD5 91a6237a06765be54cf1f0c06a3a2a41
BLAKE2b-256 2732d39f9ae4f94a370cfcf003ab0fac5cf7bf8184b689cd1629d4e436c42b52

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4c1151e0de3842cfcdec1236d9323328881f85afb12671ef554c744ca751a281
MD5 d36130a75b2979bbf48bb79c859ad42d
BLAKE2b-256 f634fa5ed081fe407c95ec6ee2933ec16326f11ac17cd3e788e0bd0d5bd359ed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d251b547d8de10a5890cdfce915945a0eb2e03849a18350204ec5bb5e1702d57
MD5 c4a04ecbb4e4eb6e9a3866b3c2ba1db4
BLAKE2b-256 487e6dae9a60d662458386d61e2e11104c47a2067e9be4c0417dda88152a11c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 bfb20e74f4f8de30ee753fea8131213aa693573f8678d3b32fee418eecedfe52
MD5 89fed6cfdc02d7b945a527827eee6cfa
BLAKE2b-256 af08d08995dad776996c055c95e4b212becc2b21766c020278888d9e5cee3fad

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aioesphomeapi-45.3.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 505.1 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.3.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 18c7a6a37001857a4ebbf98ee440717895f3ed412a7895e8487c58c9ef0b17eb
MD5 a0f3ab97a0ffb0461c5850133991298f
BLAKE2b-256 32baf5dce4caf2e0f362bdbab336becbc67184ccab4bc9bada4d850f7f82c195

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f66f3aa8b69c4deff5253a58885c906b6c01d52158ab1c7db1d4b50605a128f8
MD5 2d1c1449fa505650181d69a67bec7b29
BLAKE2b-256 dece458f96f8f2953581f48a9db93cf0a078982872aeac1de58a84913fa725bc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f5948d6f32614f929b2e6dfe66a4d80dab071711224ce5d3fe37617282faec33
MD5 fee05cd6ed20c2ac8c62bd1689cd4e85
BLAKE2b-256 d31a8df8df71aa4a85cf9ec6c0d8eafe1d53c5c264e32eb0f25ffbb498723473

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ca9dc44ea95bd69ece4bc6a96d42d47e539666257134c81f9569464e587f52f1
MD5 36fcd34607180e6795bb506b1e88f5fd
BLAKE2b-256 be8eee7e612364ebf0df865ec2715cd86a09269a46a50d03bb718c58b70e5e6c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3728be9299ee579387a1b27fadf4ebcaad71cd0406963adc3dfb58f135bf6ad6
MD5 e1f370129fe05321b608daa87803791b
BLAKE2b-256 4f6367a91848da3e40f04bedd95ea60ee32b76e5c5999d9f1c76e09ee6edc615

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.3.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.3.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.3.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ee6a10fb789f63e1f22ed5459788d3446c57fd603a043ec0f54d3defdb50e6a2
MD5 47fdde0e15ae5c335ae68da432ed7357
BLAKE2b-256 9c8a2bf37575f92a89fc8399718d7233656e6ebd95d9159d9967b8af1572962d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 98f41488e7aca5344551a26ea945d42cdf1b6d7cb8ccddcc13161c884c786b27
MD5 5399dbc7dea3e782ce925315d5f2fe73
BLAKE2b-256 44673819cffaf4ffdb803b04df7a0de3eb7bd1ca69e0c6a0ae25d82ed7916257

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f965e41e60933c9b1b8e9b191ac9e6cb6d8e933acc931e124aea2594979a1e02
MD5 4897e58afc5d2430afe08c3a4134c12d
BLAKE2b-256 120254eea933ae43d7d71b644d1b75ce060a90afa493655f7daf51647cbaa0bd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 638318cbf52c429570ad3670fcc31b24291b0145d0133b8e87b0319b7b8ca22e
MD5 45d420b18c4f675e290f9aab887f4be0
BLAKE2b-256 501724fc2cda8ef3d7e8b821a254c7142ee046d3a3536bf7dd69d9f93a7e55e7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7ecafef493888bee4cc145f60ea992ad99c076b40224757ca1962a6784029ae7
MD5 c3fa3f6c38a7dd8744bca1e23272d52a
BLAKE2b-256 961b2dea6af4d35d861c215c7d4fb6cabc7d1df1dfacdf362b18e1553e16a1df

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ab2c6d478487636a99b4fe5950784103e12e6f8cd35bfd79d85ab8e067dda3d7
MD5 f406c1e0b5712ae9e890ac1396753f97
BLAKE2b-256 12190b84f48924666ef829fa634e42fb19ab74049f065954b12934e9668ee277

See more details on using hashes here.

Provenance

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