Skip to main content

Python API for interacting with ESPHome devices.

Project description

https://github.com/esphome/aioesphomeapi/workflows/CI/badge.svg https://img.shields.io/pypi/v/aioesphomeapi.svg https://codecov.io/gh/esphome/aioesphomeapi/branch/main/graph/badge.svg https://img.shields.io/endpoint?url=https://codspeed.io/badge.json

aioesphomeapi allows you to interact with devices flashed with ESPHome.

Installation

The module is available from the Python Package Index.

$ pip3 install aioesphomeapi

An optional cython extension is available for better performance, and the module will try to build it automatically.

The extension requires a C compiler and Python development headers. The module will fall back to the pure Python implementation if they are unavailable.

Building the extension can be forcefully disabled by setting the environment variable SKIP_CYTHON to 1.

Usage

It’s required that you enable the Native API component for the device.

# Example configuration entry
api:

For secure communication, use encryption (recommended):

api:
  encryption:
    key: !secret api_encryption_key

Generate an encryption key with openssl rand -base64 32 or visit https://esphome.io/components/api/

Note: Password authentication was removed in ESPHome 2026.1.0. Encryption is optional but recommended for security.

To connect to older devices still using password authentication:

api = aioesphomeapi.APIClient("device.local", 6053, password="MyPassword")

Check the output to get the local address of the device or use the name: under esphome: from the device configuration.

[17:56:38][C][api:095]: API Server:
[17:56:38][C][api:096]:   Address: api_test.local:6053

The sample code below will connect to the device and retrieve details.

import aioesphomeapi
import asyncio

async def main():
    """Connect to an ESPHome device and get details."""

    # Establish connection
    api = aioesphomeapi.APIClient(
        "api_test.local",
        6053,
        noise_psk="YOUR_ENCRYPTION_KEY",  # Remove if not using encryption
    )
    await api.connect(login=True)

    # Get API version of the device's firmware
    print(api.api_version)

    # Show device details
    device_info = await api.device_info()
    print(device_info)

    # List all entities of the device
    entities = await api.list_entities_services()
    print(entities)

 loop = asyncio.get_event_loop()
 loop.run_until_complete(main())

Subscribe to state changes of an ESPHome device.

import aioesphomeapi
import asyncio

async def main():
    """Connect to an ESPHome device and wait for state changes."""
    api = aioesphomeapi.APIClient(
        "api_test.local",
        6053,
        noise_psk="YOUR_ENCRYPTION_KEY",  # Remove if not using encryption
    )
    await api.connect(login=True)

    def change_callback(state):
        """Print the state changes of the device."""
        print(state)

    # Subscribe to the state changes
    api.subscribe_states(change_callback)

loop = asyncio.get_event_loop()
try:
    asyncio.ensure_future(main())
    loop.run_forever()
except KeyboardInterrupt:
    pass
finally:
    loop.close()

Other examples:

Development

For development is recommended to use a Python virtual environment (venv).

# Setup virtualenv (optional)
$ python3 -m venv .
$ source bin/activate
# Install aioesphomeapi and development depenencies
$ pip3 install -e .
$ pip3 install -r requirements/test.txt

# Run linters & test
$ script/lint
# Update protobuf _pb2.py definitions (requires docker or podman)
$ docker run --rm -v $PWD:/aioesphomeapi ghcr.io/esphome/aioesphomeapi-proto-builder:latest
# Or with podman:
$ podman run --rm -v $PWD:/aioesphomeapi --userns=keep-id ghcr.io/esphome/aioesphomeapi-proto-builder:latest

A cli tool is also available for watching logs:

aioesphomeapi-logs --help

A cli tool is also available to discover devices:

aioesphomeapi-discover --help

License

aioesphomeapi is licensed under MIT, for more details check LICENSE.

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

aioesphomeapi-45.0.4.tar.gz (205.3 kB view details)

Uploaded Source

Built Distributions

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

aioesphomeapi-45.0.4-cp314-cp314t-win_amd64.whl (652.3 kB view details)

Uploaded CPython 3.14tWindows x86-64

aioesphomeapi-45.0.4-cp314-cp314t-win32.whl (575.3 kB view details)

Uploaded CPython 3.14tWindows x86

aioesphomeapi-45.0.4-cp314-cp314t-musllinux_1_2_x86_64.whl (706.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

aioesphomeapi-45.0.4-cp314-cp314t-musllinux_1_2_i686.whl (726.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

aioesphomeapi-45.0.4-cp314-cp314t-musllinux_1_2_armv7l.whl (649.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

aioesphomeapi-45.0.4-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (697.5 kB view details)

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

aioesphomeapi-45.0.4-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (633.4 kB view details)

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

aioesphomeapi-45.0.4-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (685.2 kB view details)

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

aioesphomeapi-45.0.4-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (714.5 kB view details)

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

aioesphomeapi-45.0.4-cp314-cp314t-macosx_11_0_arm64.whl (613.7 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

aioesphomeapi-45.0.4-cp314-cp314t-macosx_10_15_x86_64.whl (620.4 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

aioesphomeapi-45.0.4-cp314-cp314-win_amd64.whl (557.7 kB view details)

Uploaded CPython 3.14Windows x86-64

aioesphomeapi-45.0.4-cp314-cp314-win32.whl (497.8 kB view details)

Uploaded CPython 3.14Windows x86

aioesphomeapi-45.0.4-cp314-cp314-musllinux_1_2_x86_64.whl (691.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

aioesphomeapi-45.0.4-cp314-cp314-musllinux_1_2_i686.whl (715.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

aioesphomeapi-45.0.4-cp314-cp314-musllinux_1_2_armv7l.whl (630.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.0.4-cp314-cp314-musllinux_1_2_aarch64.whl (666.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

aioesphomeapi-45.0.4-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (684.4 kB view details)

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

aioesphomeapi-45.0.4-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (628.8 kB view details)

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

aioesphomeapi-45.0.4-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (662.2 kB view details)

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

aioesphomeapi-45.0.4-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (705.2 kB view details)

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

aioesphomeapi-45.0.4-cp314-cp314-macosx_11_0_arm64.whl (570.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

aioesphomeapi-45.0.4-cp314-cp314-macosx_10_15_x86_64.whl (584.6 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

aioesphomeapi-45.0.4-cp313-cp313t-win_amd64.whl (619.2 kB view details)

Uploaded CPython 3.13tWindows x86-64

aioesphomeapi-45.0.4-cp313-cp313t-win32.whl (552.6 kB view details)

Uploaded CPython 3.13tWindows x86

aioesphomeapi-45.0.4-cp313-cp313t-musllinux_1_2_x86_64.whl (702.3 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

aioesphomeapi-45.0.4-cp313-cp313t-musllinux_1_2_i686.whl (725.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

aioesphomeapi-45.0.4-cp313-cp313t-musllinux_1_2_armv7l.whl (648.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.0.4-cp313-cp313t-musllinux_1_2_aarch64.whl (690.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

aioesphomeapi-45.0.4-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (694.2 kB view details)

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

aioesphomeapi-45.0.4-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (631.9 kB view details)

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

aioesphomeapi-45.0.4-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (682.8 kB view details)

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

aioesphomeapi-45.0.4-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (713.4 kB view details)

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

aioesphomeapi-45.0.4-cp313-cp313t-macosx_11_0_arm64.whl (612.3 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

aioesphomeapi-45.0.4-cp313-cp313t-macosx_10_13_x86_64.whl (618.0 kB view details)

Uploaded CPython 3.13tmacOS 10.13+ x86-64

aioesphomeapi-45.0.4-cp313-cp313-win_amd64.whl (546.8 kB view details)

Uploaded CPython 3.13Windows x86-64

aioesphomeapi-45.0.4-cp313-cp313-win32.whl (488.8 kB view details)

Uploaded CPython 3.13Windows x86

aioesphomeapi-45.0.4-cp313-cp313-musllinux_1_2_x86_64.whl (688.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

aioesphomeapi-45.0.4-cp313-cp313-musllinux_1_2_i686.whl (715.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

aioesphomeapi-45.0.4-cp313-cp313-musllinux_1_2_armv7l.whl (637.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.0.4-cp313-cp313-musllinux_1_2_aarch64.whl (659.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aioesphomeapi-45.0.4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (682.1 kB view details)

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

aioesphomeapi-45.0.4-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (634.9 kB view details)

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

aioesphomeapi-45.0.4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (654.3 kB view details)

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

aioesphomeapi-45.0.4-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (704.2 kB view details)

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

aioesphomeapi-45.0.4-cp313-cp313-macosx_11_0_arm64.whl (565.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aioesphomeapi-45.0.4-cp313-cp313-macosx_10_13_x86_64.whl (581.7 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aioesphomeapi-45.0.4-cp312-cp312-win_amd64.whl (550.7 kB view details)

Uploaded CPython 3.12Windows x86-64

aioesphomeapi-45.0.4-cp312-cp312-win32.whl (490.4 kB view details)

Uploaded CPython 3.12Windows x86

aioesphomeapi-45.0.4-cp312-cp312-musllinux_1_2_x86_64.whl (692.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

aioesphomeapi-45.0.4-cp312-cp312-musllinux_1_2_i686.whl (721.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

aioesphomeapi-45.0.4-cp312-cp312-musllinux_1_2_armv7l.whl (642.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.0.4-cp312-cp312-musllinux_1_2_aarch64.whl (664.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aioesphomeapi-45.0.4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (686.8 kB view details)

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

aioesphomeapi-45.0.4-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (638.8 kB view details)

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

aioesphomeapi-45.0.4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (659.9 kB view details)

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

aioesphomeapi-45.0.4-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (712.3 kB view details)

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

aioesphomeapi-45.0.4-cp312-cp312-macosx_11_0_arm64.whl (571.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aioesphomeapi-45.0.4-cp312-cp312-macosx_10_13_x86_64.whl (588.4 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aioesphomeapi-45.0.4-cp311-cp311-win_amd64.whl (552.0 kB view details)

Uploaded CPython 3.11Windows x86-64

aioesphomeapi-45.0.4-cp311-cp311-win32.whl (498.8 kB view details)

Uploaded CPython 3.11Windows x86

aioesphomeapi-45.0.4-cp311-cp311-musllinux_1_2_x86_64.whl (709.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

aioesphomeapi-45.0.4-cp311-cp311-musllinux_1_2_i686.whl (743.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

aioesphomeapi-45.0.4-cp311-cp311-musllinux_1_2_armv7l.whl (651.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.0.4-cp311-cp311-musllinux_1_2_aarch64.whl (684.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aioesphomeapi-45.0.4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (702.0 kB view details)

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

aioesphomeapi-45.0.4-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (648.7 kB view details)

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

aioesphomeapi-45.0.4-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (678.7 kB view details)

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

aioesphomeapi-45.0.4-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (733.0 kB view details)

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

aioesphomeapi-45.0.4-cp311-cp311-macosx_11_0_arm64.whl (571.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aioesphomeapi-45.0.4-cp311-cp311-macosx_10_9_x86_64.whl (587.0 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for aioesphomeapi-45.0.4.tar.gz
Algorithm Hash digest
SHA256 42a9f597e92e12cedb250aacf0f871ae055b2fede1700032260898cb55fec6af
MD5 12ffed4f32788d806b2aaa74be57ce50
BLAKE2b-256 63a6d2638c4cbb59ceaeff0c77993834f3e60a8411d61474cda8a616532e589c

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.0.4.tar.gz:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.0.4-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.0.4-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 e1928a8c8b878036b2fbe9640beab21cfe78d27bc8e1cfc39743d06c8a1315f7
MD5 6096673c3b52c4a21978c2c66788b57a
BLAKE2b-256 659144f27b6416d5fd6d23f6779a2f98505febf9d7d40b307b2ea02ff2b41c9f

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.0.4-cp314-cp314t-win_amd64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.0.4-cp314-cp314t-win32.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.0.4-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 164ea5bae95be7694a48ed5eda73c2507427eb64cb87c2b81fee55a3e73cc3c6
MD5 cfe5a78a79a159139565812f44010a1d
BLAKE2b-256 ec1a34da6a07623e8d10080c88dc36fd8b7986468858b0c753f6fdd72339cf39

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.0.4-cp314-cp314t-win32.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.0.4-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.0.4-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 78be66d7b4cb13abbd160e9d7ebaa4e78f9844e46b0305e2452052c25b7314ad
MD5 3a3b07c212a318bdaaa9a2dd72576b3d
BLAKE2b-256 234b76ff9d5e2f9309beccfc7997c502e6206e64725c442b64d579f848897fc6

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.0.4-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.0.4-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.0.4-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 864010dbee74bc7859e494f8ac8bbfb2e2aad84afda8aa7a6ddd9316f959badb
MD5 117c62aa56e054aaa353486fec3fa3c4
BLAKE2b-256 7be59e0e2e582e9a2cf1ffa747b65e08cebd93edcabdcb99fc390fd6f691cc99

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.0.4-cp314-cp314t-musllinux_1_2_i686.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.0.4-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.0.4-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 000d061dd177440c2250b6cd24c17bba4413c3b2d4b1f8e03a8ca221f3d1a447
MD5 1c013879a618c5e49b1d9925ca7ce002
BLAKE2b-256 13c774d95081b403c05b007df88b1195ee103b6db0ca39f9bbcc0942932c4c86

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.0.4-cp314-cp314t-musllinux_1_2_armv7l.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.0.4-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.0.4-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 78e5bb4a97b71638edd5f2d36f1d539d0348ee7b089f81148f33773d633fd462
MD5 a4bb07d48d0dbc93b43e53bef46fc11a
BLAKE2b-256 3420e7ca62ac37513392bc4624b50b9bbcff02098c9162c45262b22510f42f8c

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.0.4-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.0.4-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.0.4-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3bb61bffed0cadd1481f6533e937b9aa6bc4e2f2a2c5872704d866829ca71f1a
MD5 717587e3b1ff889b8284560f6d736a50
BLAKE2b-256 bfb9d86271700d8d63ad6f18e32881f68d06cddfcf1127dfc70c076546de2f04

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.0.4-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.0.4-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.0.4-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 d97c8380c1b390c6519827adfdbb97aed61c52650935854a863ef7be7fc0f1c5
MD5 e1f43bb2a2e9c8a3323771c87eac3bc0
BLAKE2b-256 c90ced315bc0d2f0485c07a4f652580626a63553398327d3f4aedc535012629a

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.0.4-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.0.4-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.0.4-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 506b60ab5ed521d66d35eb4b8472faeccff55a68a8fa8aee8470bd048a011a83
MD5 2a258b4d9871161ecf9b3fa080c4373a
BLAKE2b-256 5573067c91fa79fd911ac9f30a7a4850e629dd9dcbc620462642994b643602ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.0.4-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.0.4-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.0.4-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 46e4b7abdcd97860667a80f3a54a848a3a36cb60bb091fc08fa54034961c7988
MD5 f46222ff946b3f5a9dde5d47e9f74255
BLAKE2b-256 56cd5edb78561cdbad563be755f0188352d91d95dec2c19b70922685f8b0f56f

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.0.4-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.0.4-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.0.4-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7670475abd84bb2c1f1a2cf61ebca4df544d1cf4f4687b665a0044d727c7af88
MD5 f8e57255c7cdb10337d60671fbfb976f
BLAKE2b-256 567be26735f63b17c4a89b978483a226e564e8fe6c9051366a06b58d79bc5a8d

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.0.4-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.0.4-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.0.4-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 b874a534f113a0c50ec3373d7a173e193e904fbe19eba6d9d43a3ffc0020a493
MD5 913fd5cde83165917c883284e9155245
BLAKE2b-256 22d7bc6ab45c15da31aac68aa4d8d273151da61a699c225e5f990eb58940a334

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.0.4-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.0.4-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.0.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 090b4259d820f24ea5fb4d2932bad475fbb5d89c79c65ba9bb2424af183a7275
MD5 2d70808a0176e10b58bd5273f4a62ead
BLAKE2b-256 9d5fd34cb866f8db78efd8d3cd83c9399564f6e8f8dfb478bad6b1951611fb97

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.0.4-cp314-cp314-win_amd64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.0.4-cp314-cp314-win32.whl.

File metadata

  • Download URL: aioesphomeapi-45.0.4-cp314-cp314-win32.whl
  • Upload date:
  • Size: 497.8 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for aioesphomeapi-45.0.4-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 bdd0bc5f6385872db8cea587a9f6222afeb952ca6d7eb4f8d5ef73b62ce99ec2
MD5 a0b714766d463e53278d920bcf1d6da0
BLAKE2b-256 56cedb25113446cc1b4445554c09427f6883dabab88c63c2812fd2e4fb49f5bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.0.4-cp314-cp314-win32.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.0.4-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.0.4-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dd2f72f24dcc013e15fa17ab11ad650b1f02bfd866c0257c652b3ff1e27f9138
MD5 d220960a29cb7671553ed45853998a4d
BLAKE2b-256 da7d6d016af50084f21ca5dfe2004341d71407c4609463b00fc4f89c07c90afe

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.0.4-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.0.4-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.0.4-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d88a364a75195c015193556fa5d44adea2ce419598adf72ed9fd762594f81d10
MD5 d66644b4fcd4a870d601be6e150ceca2
BLAKE2b-256 a4fa32a48c8cc737729ae436e3556602c3f999722ecd646e9a20daf3be8c0047

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.0.4-cp314-cp314-musllinux_1_2_i686.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.0.4-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.0.4-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9f505535eebbf4f0a49cea34d6aacb188e77d9b2a85a0986aa479ffe96910a6d
MD5 811ff3bf17d50e3d15cf1ee77482b20a
BLAKE2b-256 832ff51f109731d3c12a0da3769c8ba6652974855e1283e3df2dffdde82178c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.0.4-cp314-cp314-musllinux_1_2_armv7l.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.0.4-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.0.4-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f459f83a4e89678cd16c28cdd9efc3669d80867023bdb4d87385604bcea1af10
MD5 3947865491ee9856bbae771a260ea89a
BLAKE2b-256 c5a442719be2736d4e6aeab2b8beded6401e9b94171d20937d5d10ebd91948ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.0.4-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.0.4-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.0.4-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 acd66608f16c838f96af4fffdac1755af836fa9526b2b981e36f3e63db045280
MD5 fab322a451961e7df2e20b836fe69d34
BLAKE2b-256 9a0a377cd61f24e5dc3d40b6a8f3f09636c70008859b58ff567977ee8f9cbff3

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.0.4-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.0.4-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.0.4-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 63f95048211d1d3a066572377e6bbade5054e8c1d1424f25db6256c936691d63
MD5 b17fedd743590fdaaef2c9bc01825e99
BLAKE2b-256 393563a71b9000fb0326289341c693f326e73aa5978fa8ccb2ca428fdc7e22d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.0.4-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.0.4-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.0.4-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 da5fc03cbd0a1b538fb6d43fedb0bba305d6122b77f137ae703447a37f20748c
MD5 52783c263cca57c2ab1fb4d9d625c0e9
BLAKE2b-256 b4a99d564fca6b1ea2e0007979baa33b151f3e99cb4a182243d9c3c0496171aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.0.4-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.0.4-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.0.4-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 396fc200ac7e56d3a104be6d1385aab441ee5db7181b2d1a646f1acf4fed68ad
MD5 60b41699498fcfa46cdb5015920942ca
BLAKE2b-256 ced414fb7b2fb73d91c49485d720873be19aef8a1f23b4ae61fc9d80cb2b770c

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.0.4-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.0.4-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.0.4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a5a813b8c84a7f6e3bee9847cc1b66105a75224397759286252bc35d85a53b4f
MD5 0cb6b48b91e0a8447e0ac2f6f38123a4
BLAKE2b-256 bbf8bed7fbb8f1e1c4c3f9396246fd6c142421a6fb1df364e333fb2f92eecc28

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.0.4-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.0.4-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.0.4-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 edc0f1046c8895c0f8ec23eea6519c8eef985c3515becee529e8dbb6d6dfd777
MD5 b2aedeaa84c97abae5f01aba6de00aa2
BLAKE2b-256 25d801e0dd09e1ba407c8ce94a6f9754997abb6197caca065585e42309573fb0

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.0.4-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.0.4-cp313-cp313t-win_amd64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.0.4-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 1428f5ca1b76063cb42305c5aab675446f9943c782fe34cfc1d4f5a2c98fd942
MD5 e0227b6ce02b521b4eda9d9f09cd22cf
BLAKE2b-256 5ec17e11d356d58b7d12b4a1c6dfc2d2116159b49d5393eafa52cf33e06cf79e

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.4-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 2ea1d6c53a46a36f6e2c9500c9068cfc83402e62236abdc3c88136ff087f7eea
MD5 be5c970e7d862d57de417457ec608de1
BLAKE2b-256 60398438013c8969172901a3dfe12b5d959b4d6cbf4f38bfcea2d1479d4a2ab7

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.4-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ad4e75c03753620c76886656c73db19490518660fc5233e5fa86388f7a39fd91
MD5 6b15b9d64562e7718b332944d2ed096c
BLAKE2b-256 e7fcd375f55dfe0a02106e4b57f814605901bfd09c60adadd3e71b9628e9f60f

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.4-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7c0901a988d9ef6d7dc300391fea576299d1026d674047fe0d0f9254483689f1
MD5 fbc35415e8e8f53b2d6da9c5b920d073
BLAKE2b-256 648a14115cf3b58cae62b4cfea6af1b4b15ab433900855557e67742838eb6c46

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.4-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e235a7d3f01ded3cb5a5b2bb5c78047e83f1399d71602c2649e269705b750ec9
MD5 1f8892581de73915674be276de4dca8a
BLAKE2b-256 3c64ee65f5a7fc173b8983475f5c51dff025bf9cea8ceef58837efb11990899d

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.4-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 61aa1c8c2a818a6112e880986c7972434426741f83be84df494adc444f8b6122
MD5 911853dec8a5b852ecfe683d6162c0e5
BLAKE2b-256 1ece18491fbc1f1c2443e8fd5575910d45ae5869579c51a8016d624d0b2e9a6b

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.4-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2a9a41e6041c7bc637ff52e64130d9022f0b92af5c07e78963b562cfd61b998f
MD5 c140fd096ce609ffa34406cd7899de57
BLAKE2b-256 33a8bd4b9224dc1bf16ef9d938f11a49a23be5894a755125294ffefcdc5012b1

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.4-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 bfdf9d118e501793b2e966c301f5c03f658ee8a51342d9d1ae7bfe63892e2f9a
MD5 448a55e6d67b22efaf998ffcc9a422d6
BLAKE2b-256 dc02f72075359983ad6948f112036f99f82e4f15aa80a916e2762e5aa90da4f2

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.4-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 009120d648e92e6b24e5e517780458ad784cfa62ef6d7b0428759b2af2796fe0
MD5 ef98c5f8ca1b0bed9de7597d7bd1f257
BLAKE2b-256 aa58aebc531ac4f566a1ad636aafe4b05c6968e9ee2d0c598be6f9a1c7841820

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.4-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 d92c1c75fc2fdb3d39f60575cb763cb9051a3078e28328469649681f3b3b2b8a
MD5 eaf81b95aef60f9112fc7863b14c7145
BLAKE2b-256 75bb2ac94f40ead31dfdc4419795282e825041b5793503f54c856ac9b79d08e9

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.4-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3605f7077611d79953e18df17b232348a2120269b91b1cb6194e642dc6052962
MD5 7d72e4eb7d1166f9fd58bbd0d5629c74
BLAKE2b-256 949d6e291572f96439ea7211651f7b98c33182f2d5f6f81d49d81e62fa82bd84

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.4-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 ab7b7efc917633493632f1427813ec5229879757a13b58092605242d9704adec
MD5 94e923f20d0c4c5129d05798b5032374
BLAKE2b-256 f87adfe703e47afdd2708d83df0055f780df1889620131fb1ef206f7e717626e

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d591498aeb04cb11baefeca0b9a7febcff32f65589a812c46b8311c4c5cfebe6
MD5 ce0bd6ecb37868f5465a0b985c670c68
BLAKE2b-256 325c69acc65103404daf704ea8f4fbafe41755f49011c88492a35bbc48f56f43

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.0.4-cp313-cp313-win32.whl.

File metadata

  • Download URL: aioesphomeapi-45.0.4-cp313-cp313-win32.whl
  • Upload date:
  • Size: 488.8 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for aioesphomeapi-45.0.4-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 48e0548ede71d6903e576a49944397a14d917c8befa72ac1adc2cb3b26ba641f
MD5 9121a963cbaa107466499ef100f8cec7
BLAKE2b-256 b716eb8dc405068984ed2b95dbae86ccdd867aa54401fc55638f45ded4fed5a4

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.0.4-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.0.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e39bc212ae901600b478172dcfa20bfacbd8040fb85dbf6dee8eb2dee40b87f0
MD5 2da076c499a316914004a0dd9da3eed1
BLAKE2b-256 6806dd8a973992de7a5b2c494654491e70e30d1b965bcddaa296c170effa5180

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.0.4-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.0.4-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fbfa0e796f5adca765798d5182a8da010c1760725ca85ac36bd41224dd0442d9
MD5 bc0b51de49b9ba374d195d2a0c5a0927
BLAKE2b-256 97ccbf94bf3c92116c78c7ce854d593335b78b8325b86f0c88705f1a49b84215

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.0.4-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.0.4-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b715a12865c2fef565229afb01415d8cae32a8966032189410c2d01a56789523
MD5 49ee7d10b44cc1c3db5d519037bbcf25
BLAKE2b-256 5d8654392ea2ecc10fde144d92abb6bf7d607e2165c20450d246e84c9f4846e9

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.0.4-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.0.4-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2b97f6810282aaded498e355dd46ed7d8eeb8cb3ff6d94a575805c2b6a6fca28
MD5 f6e231ade491c921b31ede2cb23f91b0
BLAKE2b-256 7e71c9447aafab78e116cb874e2b37505475f7a2e42867cff36f714d7a0846a0

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fd3ca3763217e1c3f830bfaddbe1879b9d2700fb3adb34e47b265e620e886d1c
MD5 628f86303a69b0a955d0134fe22123a7
BLAKE2b-256 75c5d26abeb3d2f07c24443aac85cb7326177fc30fee5f8a90d59119e8b427bc

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.4-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 3e3344d5f8b6388bca1dcfc2b0bb8537fe1457166bd2978dcf0d55cf8f5ece3c
MD5 e650637edce25b842b2547bc13b1d3d6
BLAKE2b-256 b5e8cbefbc1302c98a1f98efa57f779a37717dc5e6e071d1b0826ec5bde9a68a

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a2cca77c0227b3c68facb623b7cf4a3cc1f859634d8aa208a15ae202209e353c
MD5 4449de4e16d611a497e7b83a874148a9
BLAKE2b-256 d3f437d7b54e2b9cdfcfdd5d3afec43b2131029a89fa77d0d0fab3bf1b5c6f63

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.4-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 2c0f026d2aab36be097dc9aa2834dbec6f9c18bad609dc89871ad4e5083d0be5
MD5 ea0583bf02c62ddab2ecc0f8eac868b8
BLAKE2b-256 2069f91e640987080fcf2d30d10d4d73a2ee611823f7fe2fbb77c03529c4cc2b

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.0.4-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.0.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5808c03406625f61f9decd4fe673ab11684428f8e31722e7453768b03325b6c9
MD5 336c8fc96176c655da981610dd20e65e
BLAKE2b-256 388cd1523f833348ee4f7953853f00b6b52ebfff77a3e42a5d157d792bfe2843

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.0.4-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.0.4-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 acf32649cabf98684bbfbe8a6ba6a53cf2803b24a30e502351f727ddef49adfb
MD5 c092f990769ded101e2b01f55261b02a
BLAKE2b-256 e7ef2b403f16da590356a69be47b5a7bb6c855e560ebcff81239411518b9bfd2

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.0.4-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.0.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e04f32717a2d742cca73e46b90f75b5cf4b5a0401a6bb225e7b2ac490fdc0d63
MD5 4604c55f1e395a43eb21489463dfabd9
BLAKE2b-256 700e5651fffe3f10fa9618c32eb850e040b5c55a4a0cb5e12ecb13669bcba2d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.0.4-cp312-cp312-win_amd64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.0.4-cp312-cp312-win32.whl.

File metadata

  • Download URL: aioesphomeapi-45.0.4-cp312-cp312-win32.whl
  • Upload date:
  • Size: 490.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.0.4-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 f57ac086f3d02bc289e0511986c0d07ca3760613ff8c273e81f8283329c59acd
MD5 43b5a14eb736815097e3f17378d19c82
BLAKE2b-256 2d49dfe48aec8e46c7f865d476396386bab6f52e786231c02727b939073f7c9d

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.0.4-cp312-cp312-win32.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.0.4-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.0.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d34b810611393a50d7a130daa901f7e0a6ee0f999cb2fda2df15944f2b53ec4b
MD5 3a9ac0bdc62994e7270a10dc801c30d1
BLAKE2b-256 d22a043ac2ee60eadf0a26834bd5d290a22374cfedb393d4cd8ffc4c0b8a14b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.0.4-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.0.4-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.0.4-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 de20feff2d39e4ece20658d9d9d8e4bd4e58d5384e8d90d9771ade2ae275934b
MD5 b7e1d00b4d33fe44b70eea74792317bb
BLAKE2b-256 75a22a4cf3a4bbde76db3dcf7bc45916620577a1917810c886ede1fa2210a30e

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.0.4-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.0.4-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.0.4-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 75cf67a2560b40dba5c8a04bbc991e60f9e3919034e48ee314d133235813d0d8
MD5 a80a24c3b7d3e80fee2296df2b45947a
BLAKE2b-256 7eafff44b58f64bba5f1618ee371d33fbb4caf9371bf6419eda6408bd1f05d38

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.0.4-cp312-cp312-musllinux_1_2_armv7l.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.0.4-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.0.4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 374fdc278050aadc843f406e3fc95e9c73aa18b1793cd38d90c6ac319e4c512d
MD5 53807ba7ae41b1116688345c0be56e0c
BLAKE2b-256 1defc210466091992f43f3f2ebff2215a29cbaad20ad089a96ced4134761eac4

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.0.4-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.0.4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.0.4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e52465b2d903f48f1510724fff1ebf00b5ace4cb00b58fcebb43a25530249298
MD5 698959dd06349da59bfc1490f813eba9
BLAKE2b-256 8e23a53510b5495da1a882c561c98360097905ff2a803fc5fabfa388f31d3ae1

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.0.4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.0.4-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.0.4-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 94eb848a804a47a6b1245d1f1c9e7160d0496779bb38f2bed702d085a96d97f0
MD5 c5bcb59bc570f7ae1cfb6aade0b16400
BLAKE2b-256 5f08c549f907a461491a79d9ae09443f146964b8277c43190d1b734241dccf6c

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.0.4-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.0.4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.0.4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0e307f9bc1af7620671035cce57c4223a58491815933b29b4c07caaf5b1b8094
MD5 b1b0d1306f5b749e01117cc085143dd3
BLAKE2b-256 a6c7b9abcebd2cee930c3dbd2db32b72f0150e4ce7f049f7d57237182bfa850c

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.0.4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.0.4-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.0.4-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 240e2b8c1e5100270144ec1d80c080c0034e97625ef5a142fbc0255bd91c0350
MD5 d2bcac945b7859d5ece55930f3f6f3bb
BLAKE2b-256 af9909ff4daab508e6fd3f86abadd7406ff72fa3ed66916485f2690865158cda

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.0.4-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.0.4-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.0.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 79f11873c8ac6b30b2640ea58e30bc4ab51ce4f418e916a9b1c6ebdf5b2abd89
MD5 ebaed0fabdf8aee09c3450f4b8a0bb86
BLAKE2b-256 2bc6492b63b2ef8dd873786debba3b89f2bb9b8a08c8b336cb6bb8269be6fef2

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.0.4-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.0.4-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.0.4-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 dcbfe5cb7086a5c3e1bd97973373875bced656b1c5a8472ac668ec7cdae460bd
MD5 d21746e8b532e55b7187bdde280b7b33
BLAKE2b-256 bd5ff9eee90e3d242af4c6364b4c406c29d4391a54cc772adfa1357c1dc69b67

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.0.4-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.0.4-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.0.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 07a3f77e09f23d6f1eb9b22c6bae5261493a279c9476a586e08f08fcef7985e5
MD5 8a04e4a5a9e69623543f69638bf86e99
BLAKE2b-256 88b74b21aecc2c43457c7aba16184f2cbeaa9dfd3c4790adc811180d29506181

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.0.4-cp311-cp311-win_amd64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.0.4-cp311-cp311-win32.whl.

File metadata

  • Download URL: aioesphomeapi-45.0.4-cp311-cp311-win32.whl
  • Upload date:
  • Size: 498.8 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for aioesphomeapi-45.0.4-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 3ce631ce1d4f207c5dc91bd423f1d34690e446a90292dbb5a58642f48a86e35b
MD5 77013f6e1e86f1014ed35b5c9cb2d8fa
BLAKE2b-256 c9ea5f7e74018fb772f2cda2b2bf9524eafc9eda2d792c9076352548f1e82fac

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.0.4-cp311-cp311-win32.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.0.4-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.0.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3a30daafc307fbc2fc7cacbd98897c2c8fe1647363745c3998289767aed5dbff
MD5 aa1e178b96455b7e2263c72616654776
BLAKE2b-256 0537a4e95bbd33a47cfeb51a991913a37bdeef64c0ebba1fbd3169021d07d3c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.0.4-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.0.4-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.0.4-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 673fd5dc167d27ff4e45c1c0f5484ac6f10213b573f44bcfd92c5fb54475df37
MD5 f60dc2ef9ddefdd0a7cb497317b9ca88
BLAKE2b-256 6f04ed0a689762d7f933a4e2f9292e15dea17ecc94d0aac29f6afb3007f61630

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.0.4-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.0.4-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.0.4-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c14a77daa5e4d6249d401ca4eb3b83e0990de4ab70d9d687cc74bd72cbe3cb74
MD5 4a64952699918112817a087ca545f943
BLAKE2b-256 195ccac8e9983e853a0c67ec109994b27d1831e5e6d1e9ef035d5389e18e9daa

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.0.4-cp311-cp311-musllinux_1_2_armv7l.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.0.4-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.0.4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a5d04a9a00ae9538d92b4c47e2d6711841d438b4810d6a1a9416b73d38e5387b
MD5 c67699105188f31d83f19c618a04cd50
BLAKE2b-256 0b1dcf95e6a706a86f7651cc133b9cd475930d21b04fab218e437e6bbbd9f341

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.0.4-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.0.4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.0.4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 caddf6905ef5662fec5059f97dc0146df7f0bf2c53bbc20bc94985cd84911838
MD5 d260f1a3a5d38c172a4fd4f250ac04fb
BLAKE2b-256 d1ee438fda1ed5367c1cf04f49c41f7f5a2e832b668142cd6df394f4e5b7bbae

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.0.4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.0.4-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.0.4-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 569fbfad6f79cbd2b532b1da980ec50b636361773f75222f68316ef259e0a5a7
MD5 efdd982c5e943f653f2bea46a5c35cdf
BLAKE2b-256 fde7afc2e94d78b9c5d08079edb8fc57155dfce0a360114e43e5ff9813575045

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.0.4-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.0.4-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.0.4-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a3f7c8a98645fbef373a0e8392d9132ab8f7b46b54c7d42d7c96698851b71768
MD5 9dc8499ca57e149851995e7d6878c230
BLAKE2b-256 1526332fefbee05cac0e86fd10512d33a22c73de8f1028227738aa51a7597c7f

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.0.4-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.0.4-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.0.4-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 e6912100e0a8c09cd44adfe6963beb9afec060cee403674471896a02e35d287c
MD5 03659e6c2abca0dfa56f6825f1a1b735
BLAKE2b-256 4edbb6291f094f695c6456d297a0142f9fbc2db5ac882d9ee5cfb14dff370e95

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.0.4-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.0.4-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.0.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 41401fc052ee9ceca95eb846f18d2a13c724c4d619e86e3738963e684213583b
MD5 8b179b462f855a5254b079ab324856bf
BLAKE2b-256 63f27d2cfa45ba3242886b76999f83e60154e897f713af878536c3b8c7b8fb12

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.0.4-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.0.4-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.0.4-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 220dd7dfcabbfee3d011b2189f83c4f9aa126949efe262b7a83033fb7bb3f5cc
MD5 09c613d69844b5b84396d6155852f33d
BLAKE2b-256 ca0dc87678767a6f256607f6d88fc4a976ac00a95506acf98254b1e2aee44746

See more details on using hashes here.

Provenance

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