Skip to main content

Python API for interacting with ESPHome devices.

Project description

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

aioesphomeapi allows you to interact with devices flashed with ESPHome.

Installation

The module is available from the Python Package Index.

$ pip3 install aioesphomeapi

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

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

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

Usage

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

# Example configuration entry
api:

For secure communication, use encryption (recommended):

api:
  encryption:
    key: !secret api_encryption_key

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

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

To connect to older devices still using password authentication:

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

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

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

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

import aioesphomeapi
import asyncio

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

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

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

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

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

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

Subscribe to state changes of an ESPHome device.

import aioesphomeapi
import asyncio

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

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

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

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

Other examples:

Development

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

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

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

A cli tool is also available for watching logs:

aioesphomeapi-logs --help

A cli tool is also available to discover devices:

aioesphomeapi-discover --help

License

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

Project details


Release history Release notifications | RSS feed

Download files

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

Source Distribution

aioesphomeapi-45.2.2.tar.gz (218.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.2.2-cp314-cp314t-win_amd64.whl (657.4 kB view details)

Uploaded CPython 3.14tWindows x86-64

aioesphomeapi-45.2.2-cp314-cp314t-win32.whl (581.2 kB view details)

Uploaded CPython 3.14tWindows x86

aioesphomeapi-45.2.2-cp314-cp314t-musllinux_1_2_x86_64.whl (710.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

aioesphomeapi-45.2.2-cp314-cp314t-musllinux_1_2_i686.whl (731.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

aioesphomeapi-45.2.2-cp314-cp314t-musllinux_1_2_armv7l.whl (654.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.2.2-cp314-cp314t-musllinux_1_2_aarch64.whl (698.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

aioesphomeapi-45.2.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (702.3 kB view details)

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

aioesphomeapi-45.2.2-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (639.9 kB view details)

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

aioesphomeapi-45.2.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (691.1 kB view details)

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

aioesphomeapi-45.2.2-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (718.7 kB view details)

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

aioesphomeapi-45.2.2-cp314-cp314t-macosx_11_0_arm64.whl (619.9 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

aioesphomeapi-45.2.2-cp314-cp314t-macosx_10_15_x86_64.whl (625.9 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

aioesphomeapi-45.2.2-cp314-cp314-win_amd64.whl (562.6 kB view details)

Uploaded CPython 3.14Windows x86-64

aioesphomeapi-45.2.2-cp314-cp314-win32.whl (503.4 kB view details)

Uploaded CPython 3.14Windows x86

aioesphomeapi-45.2.2-cp314-cp314-musllinux_1_2_x86_64.whl (697.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

aioesphomeapi-45.2.2-cp314-cp314-musllinux_1_2_i686.whl (721.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

aioesphomeapi-45.2.2-cp314-cp314-musllinux_1_2_armv7l.whl (636.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.2.2-cp314-cp314-musllinux_1_2_aarch64.whl (673.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

aioesphomeapi-45.2.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (690.2 kB view details)

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

aioesphomeapi-45.2.2-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (634.8 kB view details)

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

aioesphomeapi-45.2.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (668.0 kB view details)

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

aioesphomeapi-45.2.2-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (711.5 kB view details)

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

aioesphomeapi-45.2.2-cp314-cp314-macosx_11_0_arm64.whl (576.2 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

aioesphomeapi-45.2.2-cp314-cp314-macosx_10_15_x86_64.whl (589.9 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

aioesphomeapi-45.2.2-cp313-cp313t-win_amd64.whl (623.9 kB view details)

Uploaded CPython 3.13tWindows x86-64

aioesphomeapi-45.2.2-cp313-cp313t-win32.whl (558.1 kB view details)

Uploaded CPython 3.13tWindows x86

aioesphomeapi-45.2.2-cp313-cp313t-musllinux_1_2_x86_64.whl (708.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

aioesphomeapi-45.2.2-cp313-cp313t-musllinux_1_2_i686.whl (728.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

aioesphomeapi-45.2.2-cp313-cp313t-musllinux_1_2_armv7l.whl (651.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.2.2-cp313-cp313t-musllinux_1_2_aarch64.whl (696.6 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

aioesphomeapi-45.2.2-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (699.5 kB view details)

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

aioesphomeapi-45.2.2-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (637.8 kB view details)

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

aioesphomeapi-45.2.2-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (689.0 kB view details)

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

aioesphomeapi-45.2.2-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (716.0 kB view details)

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

aioesphomeapi-45.2.2-cp313-cp313t-macosx_11_0_arm64.whl (618.7 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

aioesphomeapi-45.2.2-cp313-cp313t-macosx_10_13_x86_64.whl (623.9 kB view details)

Uploaded CPython 3.13tmacOS 10.13+ x86-64

aioesphomeapi-45.2.2-cp313-cp313-win_amd64.whl (552.0 kB view details)

Uploaded CPython 3.13Windows x86-64

aioesphomeapi-45.2.2-cp313-cp313-win32.whl (494.4 kB view details)

Uploaded CPython 3.13Windows x86

aioesphomeapi-45.2.2-cp313-cp313-musllinux_1_2_x86_64.whl (694.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

aioesphomeapi-45.2.2-cp313-cp313-musllinux_1_2_armv7l.whl (643.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.2.2-cp313-cp313-musllinux_1_2_aarch64.whl (665.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aioesphomeapi-45.2.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (687.8 kB view details)

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

aioesphomeapi-45.2.2-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (640.6 kB view details)

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

aioesphomeapi-45.2.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (659.6 kB view details)

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

aioesphomeapi-45.2.2-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (709.4 kB view details)

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

aioesphomeapi-45.2.2-cp313-cp313-macosx_11_0_arm64.whl (571.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aioesphomeapi-45.2.2-cp313-cp313-macosx_10_13_x86_64.whl (586.8 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aioesphomeapi-45.2.2-cp312-cp312-win_amd64.whl (555.8 kB view details)

Uploaded CPython 3.12Windows x86-64

aioesphomeapi-45.2.2-cp312-cp312-win32.whl (496.0 kB view details)

Uploaded CPython 3.12Windows x86

aioesphomeapi-45.2.2-cp312-cp312-musllinux_1_2_x86_64.whl (699.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

aioesphomeapi-45.2.2-cp312-cp312-musllinux_1_2_i686.whl (724.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

aioesphomeapi-45.2.2-cp312-cp312-musllinux_1_2_armv7l.whl (646.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.2.2-cp312-cp312-musllinux_1_2_aarch64.whl (670.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aioesphomeapi-45.2.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (692.6 kB view details)

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

aioesphomeapi-45.2.2-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (645.6 kB view details)

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

aioesphomeapi-45.2.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (664.8 kB view details)

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

aioesphomeapi-45.2.2-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (715.0 kB view details)

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

aioesphomeapi-45.2.2-cp312-cp312-macosx_11_0_arm64.whl (576.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aioesphomeapi-45.2.2-cp312-cp312-macosx_10_13_x86_64.whl (592.9 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aioesphomeapi-45.2.2-cp311-cp311-win_amd64.whl (558.0 kB view details)

Uploaded CPython 3.11Windows x86-64

aioesphomeapi-45.2.2-cp311-cp311-win32.whl (504.5 kB view details)

Uploaded CPython 3.11Windows x86

aioesphomeapi-45.2.2-cp311-cp311-musllinux_1_2_x86_64.whl (714.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

aioesphomeapi-45.2.2-cp311-cp311-musllinux_1_2_armv7l.whl (656.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aioesphomeapi-45.2.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (706.4 kB view details)

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

aioesphomeapi-45.2.2-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (655.3 kB view details)

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

aioesphomeapi-45.2.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (684.4 kB view details)

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

aioesphomeapi-45.2.2-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (737.5 kB view details)

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

aioesphomeapi-45.2.2-cp311-cp311-macosx_11_0_arm64.whl (576.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aioesphomeapi-45.2.2-cp311-cp311-macosx_10_9_x86_64.whl (591.4 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: aioesphomeapi-45.2.2.tar.gz
  • Upload date:
  • Size: 218.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.2.2.tar.gz
Algorithm Hash digest
SHA256 81d37a489fd41f677392e243a0f5a484b12fb2fa8416ddb3bd893f78860fb7b5
MD5 f45d2a9d55d1ccde478906af4dc9d08e
BLAKE2b-256 97ddf344b7bc7e415fd46fe18e888e0d7b68fe5842f33cef7094a339e2004cb5

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 a1a964a7441c63aee8b4afaf712e7bb279e76c43653838581079f1adb3844d60
MD5 9be11e4203921f2b7d75aedf6eaa84a2
BLAKE2b-256 1d05332bbd39a9d4a84257bb8c944d1e80d71a43c9bceacd0c1d2ce05a1dbbfe

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.2-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 6e08319edcefacd2ba99be74303a16d642a175ab02080de84606cd07e0c6eb5b
MD5 b41d4bf31e039d14e194fae22ac6c8ce
BLAKE2b-256 96b02cdbf649e5d7e16019acd76b230ac5524b9333f76add7482e29d7f8af64e

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ed06ea94465933e3e24c9b61cc251136a0959fb0dc84bc5e6d571dc2126b31f5
MD5 0321314bf961521314e8deee5ea131ff
BLAKE2b-256 2b2c20f5a33b3e979623cb7e17e4fdcb879a27261d41eb0928eec770b61e9841

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.2-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9a67291dbafb1ca166a6e689a6bd36f460bb2f78b380c41a078c066edc0a00cc
MD5 5d2dd5d8dfb3ebe6bf90ce078b5a7b40
BLAKE2b-256 b7df08749b6c48bd1fc6a1c709e2a81892aba73015008f8b5e9a24130aeb1216

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.2-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d05230d97529c62026cfc6996e051170aebb294f290c10558cb205809b80d7a4
MD5 27a0da1173f193563bc8d9fcf2c59495
BLAKE2b-256 53548edbde6ff0a09547d74964f285fddd40655e4ca27f2e03a9268ed74a8385

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 07361f20e905bef79eb89f3a95d604a92e1102f0722d16af83424f06d3b31d45
MD5 a16f027cd84eb6714e7f35ac430ad1cc
BLAKE2b-256 f8c1479fa763156cc75b457abb416a1faedf26de30e3fdf1768621447d2257fa

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 19a69d2ef550cfb5d4dd45c0a70edc743bf3851ccb35f4f6f1cc63324548c9a4
MD5 4c911d5ee2d6e56164bd9889013533b9
BLAKE2b-256 c83f2d093e36a45cf1fd2ac937096a42c03a04071c1c8dab7a8d969994c2fd63

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.2-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 a76dc0c56c4f0122edf4e93916f84364dfa7a0e7a10c85f0c78d2f7096ed494b
MD5 fda9b4d8032494e298a943d719cf6b99
BLAKE2b-256 853ba15ecb360868a7d9e73a67db797b2494078a8df2285c60817ef3137a66cc

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ee80e0b21c92c5d6429085e97838fa66c57044aebbbbe5219260596e20a2e817
MD5 8627bc83ebbc71e4b782407aaf3fa503
BLAKE2b-256 e6f7c2fbb8ee5f2d1e70585e3ad0d3d6d81d42bb55abc45189284f220123bad3

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.2-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 d7096c4313ce4b107079f57f4588f591fa035beb336cded9b52472f208bbf074
MD5 4509e815235d127f45929efea5d6f568
BLAKE2b-256 01b4cd063d74b4e29a9b5920bdc2d1811eea893b1808ea496f92a6a2462a7be0

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9827b8a43e5ae1839f81ac93423b54e8d252753fb327e9285af41eef8fc5d7d7
MD5 ed0348bf87b8cf90f3112f1b4a0cac34
BLAKE2b-256 295a883a6815a152c4a8b85270b565a697304a93768be768b780428efd05a877

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.2-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 f7f7704c2cab470623dcbec6c268344b343da8b32e8d925eb97167cd933e13f3
MD5 796d581eef9c758118663c30d0eb2821
BLAKE2b-256 933d916d52dde4fca3f9ee205af9b720c0ffb6736e209a08080e0ae58e41bbd8

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 8b34280ab26f4060816b2399b7330a57bef145095195444b260d2783eae8478c
MD5 2674ef331d9ec191b8b338e9e957609e
BLAKE2b-256 395e907135c74ebade9942c90039df4007946367f228aba81f9d6c96b8c57411

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

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

File hashes

Hashes for aioesphomeapi-45.2.2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 2e840db45cf1fbe2625e23ff9200be279ea53881ded2711e6dc05513104d2ffd
MD5 b846daaa5e88e03f326978566ba97a57
BLAKE2b-256 d2b9e6fe4caa0dd577a7f08728d23b2cea8a5a0e8f8af86af00422aa8c7ddf0e

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 74e9940a25f01c91e83f74f989784cf535f11789c2a9f754af4b5a49d33bf37c
MD5 1627a34745059314519ebe0bf9bce11a
BLAKE2b-256 b718110790c1201279d51d3dd4612bffb6ad29453aefecf4cbd5474efb431150

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.2-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 88816cf500fb552122b055af242173d86b0e0586f05720d887fbb314c18d498b
MD5 21bbbf29111828dfdf1859f0067320d5
BLAKE2b-256 c4afe5f131f500dfc0750f4707f45a5fe53c50795929509f338ca5829caaa060

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.2-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 87ea9ccd28ea175d9a458f3b0505dd000353c12bf144041ee462d7146ef565a7
MD5 6e153eb6b369aed624a99366b8d7f7d1
BLAKE2b-256 19b2449c13a62dc6ec0027492e0e03603503c1734b4fb287c85d00d9d0bfd79d

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9da4a48e5e00d92414a5c4a940990ba68b1c7f9d41f2424e0f4c0e8152769a53
MD5 d64a47a0a100f552418848a925a52771
BLAKE2b-256 bd453b841d5cbbf7b2f4db1219c43fce9e0fe57223a84dc0a83a59d13dcd5707

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f7e57bdd03f5cb40a2c43df882c91432469efa5160e69ba7c59cf7b70d1daba4
MD5 5b22316a7f6cb37a6510c4e6c0974bb0
BLAKE2b-256 b22a93adce4253959d8f772c2e3e273737387176ab8125412f65004d67984753

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.2-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 fb351dd91bfdf6c96cfe246e34b5edca88d82ad58691eced8b03533b9b958100
MD5 ec87472e43e065a6bdd3068e4dc9a80d
BLAKE2b-256 8f85e3b61eef354b4a8c4e88b7419bb71d633a9cb57174dee4b1f350efc0636e

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a2d1e39817514a06a0fc27fc029a3342ccab4cd18df784bd0754fb7f40060131
MD5 64ced30d4e05230f0f3db7d2c01b102c
BLAKE2b-256 41b6f74d674cae56a4bdf0fec14f2683956377c5f6f23723a8f8048b19ddcee4

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.2-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 b62e2828e128326babb0cb386bb822e1ea94961e1b97dfed4594ee785fee33c3
MD5 94ffa9bc29ee77703200ab45d7c0847f
BLAKE2b-256 26035cdee5e40dbb1a1ade2005ae88bfc500f9f03557340e909831a632ab3af2

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c0cfa28b4b08d67a22722c077b5f3894116a198788272d97e80eaa6ce5c89120
MD5 e02b4fedaa8d5e139c3b73a6df253e3f
BLAKE2b-256 8bc5542d1f732e6e0b30a25a749de93b240f404547678032901f14845db4f376

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.2-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 e7f909371e84c121f39eebb1039ff8045ccee7e62cd770cfdc2cb608f8acdd39
MD5 c37e36fa1f64ed085ffcb34c878a23cc
BLAKE2b-256 151338f7d536fd8d4363b153637756234aa55772c4af50b33c2a7fa3e92ea14f

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.2-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 425e7792c6e66540bd092ec5d3c70755ab40cc3ef3ce9302d4106bafa21e5c11
MD5 b087e4f1775cebb5c6ce63bfb36a2b59
BLAKE2b-256 5a5ce296d1bae9aa7e46e8ec2269a0d16b295f55e98d2c29aac737e87030d17e

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.2-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 93128872ef5e7d912303d55ce268e2ff52b906ddfca0fd59a5d2450c6ed73ad8
MD5 fd6123c0c2e9bde8fdb70aa5454dde73
BLAKE2b-256 fba1cb44e944aa27bdae16b37b8e9fefd7c946100b2c71a991434c4c094a5a27

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.2-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 69956d1a0ae14427cf715d1fc4d342cd8365e28d018698032351b0656892a00d
MD5 fa59f760651fece2db84005be1dd66f3
BLAKE2b-256 a02b1c02a371718418e60b9114e618bdf7cf1d80c7f9d59a145d4b4764fef494

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.2-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f94d1b6979570b8320d4ef70a866c9fe7d235702b3634a492e65eec83284ce46
MD5 e451bc3cf1ed9b2cfcd562609f766881
BLAKE2b-256 f1af68e63d7c4f53c9b5a9c30621b47c92a45ec15f2de549eb48bad2975c4256

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.2-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6e2d89450f26acbb0cbc8b560b6c2267388eeb5e271f3f9b8d98ce34d518a72a
MD5 fc001136b1235e1fef57051699abfbce
BLAKE2b-256 8437b002c61fa5ff4fc2cda27826793339f6d008e7f4524d812ede50320c8d63

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.2-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cab2354da29a30e310484c0532694307598e8f582a8d09ea231d5c77857930af
MD5 b04095db42112ead77f0d63bc1ceeecf
BLAKE2b-256 45ba8b95eba29a47ee035e1afa214f1b8661f47e7306e4640dcc441c75030737

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.2-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c88550912505faf72aeac9a38cf06bfc0f17f43097ee1b90850266200f9b20a6
MD5 c7347e674601017a1a1d00fa73790ffa
BLAKE2b-256 072f47ef019e5a52a5eb52e5a77a384e7c1ae7261313a199b043e96d90d3b4f0

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.2-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 ee144bb273c6e337ceefbc015a01dae49dc88564bf71683ad678f2bef47a7c53
MD5 0a6aa2f41d9033c1916be59987a4039f
BLAKE2b-256 e415b0beef3c92526ba2ddf9c5ee85a8466e0254f1bc5550471b3b4bd3854011

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.2-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 503d61c6cfa2116bd3307f30a3c18c6aa842992e4e4930ec0a9440a61cabfdea
MD5 e6cf498e3e2291a3aee9147b135301f5
BLAKE2b-256 2f3f561ceaf11072ed303404c6632be1440d67ab45d1193e339dafc7dfe5819a

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.2-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 b0245b5a82c9aef53b9e5be139ca050a413f2101318849205b9137a4a8481eab
MD5 3f4ae0069b1d18a4ea56a0bd5b61acee
BLAKE2b-256 b9343e0c4d97f93c7a7d2bfbf24207c1af0bf23f71b269791c35b7da790322f7

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.2-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 65125a662401d34b7cc28624104591cae5a2ec87668e7fadbac12d3f0587178b
MD5 759f271fb322435119446e8a4c1dee1d
BLAKE2b-256 3f18aaa46ece74d08253b1761adff4b3571171f0d065d9ab46e8d6ca4ea0e4e9

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.2-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 5ca2fe9e9028e8feefc5cab82fbd26a19bd81cd16d4c31e5f0f82150dedb5151
MD5 0e5aab68e74d7bca22e48064f1906ca9
BLAKE2b-256 403a385e7fda8c3a17fccd4a03e3dc6800f1c4421270dd09f96a935f4c8a6716

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e7a261a7acb0be8ad12bc2549d0492ff75515ba67e69c0fb6c739f858af41d06
MD5 49bc242e1a27eac8bf12652d97052424
BLAKE2b-256 d7ed504302b91843ce772ff9c4410848db835b1ac031e16108509a645473aa00

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

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

File hashes

Hashes for aioesphomeapi-45.2.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 06434951f59e07f171ec4e9ca874e4f3832fd1fa267a9164e830b413edcf1ea1
MD5 6b484c2f4a1bc489a47776797b07cfda
BLAKE2b-256 cc64b3282240b350f986d7612a177fc90fcd9e5875e777cce9f4cefe52b8f389

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 65b721f7482b1be5dfd5759a4d0f94f069e0d5120088d29ac2d4f8c7596c1ea6
MD5 44cc1a2db3c09d2ae0c558054f4e8bdf
BLAKE2b-256 5a52d95bb144ce15fcf2fd556d1eebadf79f4ff30b4f4a4474f9ed08b36c508f

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 51d52040043214fea0810a95acfa0e83afa0008c7a526059012e14fa4c2ab39d
MD5 e4c696480cd47dcbc04b8bac9732aa65
BLAKE2b-256 caa194100cc80706010b6ab2b0a11d5e3e6da7517b82d8a3479c4c759ede46a6

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.2-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 eec504cdd122d44ac0b7599d126370a158bb4632eec53c23f056a4657bce6318
MD5 0cfb5857bdcd9247a178ced6c4bdc191
BLAKE2b-256 826f3106903d942a687f5e5017783a6da83779d19f5379b3996aad7109472d03

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dea47f95f042e37f2e8db8528bdaf33baabec9e25d030a6af6e7b0d835442bf6
MD5 a0c66b45146cc2ff5e6e833257855840
BLAKE2b-256 f08fb377844477759ef9f6cb34d7f45c35e910e811d8b6cd0ae96dfeec88ab0e

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b02cd51a7ddc47d547c86dd67038f1a60fe68d3cbaa068d5289cfc6060087d8e
MD5 9c0f49dcf032eea45cb3e37ea5f39247
BLAKE2b-256 94bcc5fe53617e6b62b263d0c272c8a01bf62652d728c16c6b39ce404e3e1085

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.2-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 747db6efe660e31163494f9ab5b74c3bad635885ad1a7093102f95565bf14719
MD5 cbe10e98ef6cc975174531153e886351
BLAKE2b-256 170f38edd311d73f0d4e98bc95cb0a13f5887cf4c6da737058319903f9d2d9c1

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d066e3dce09b1f62beff0bc0452299c095e46a86e6caa2a9fec3732f569895ac
MD5 20085743ea0f4e37b1d6cfd4029cd8a8
BLAKE2b-256 d956c96a3cb31e2cbe359f3ff078ef69ca652b6f0ba9a74eae13c080cf15f4a6

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.2-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 707bc07f7885c92f79d416b30b12e10855047f4e870e72537166de03169e563a
MD5 c136164f8966c5cfed046dd752b19bc6
BLAKE2b-256 25653647b1079a3f27ec6fbacc0263b02f13f231db8924cf6ac2192708e4daca

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d85854df03a37330394cdf93f23c8c016bc849932453ae9c60d679b1595ec40d
MD5 651b94a47905bbaf3e5f5d8a4a1165c5
BLAKE2b-256 8f5768dc03dd1207f5bfa22297e97b4f151f043184721941bd6172faa5de3473

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 6f2a7c8365bd305f16e830cc594d16bf79779ed83137d1508f82d4eb31e54fc2
MD5 9f3bb16996e54de57653be898d79adc1
BLAKE2b-256 4205e1ec62992be72e07620b20a88c36e7c368b0f9763d507ea8a62ae22eb230

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1e407283fbb3799746aa482b88a979f939b32c2d8006a4f678b7ea9855fbbe0e
MD5 a984fbfd8cd4277aaf51f98ab341ad8f
BLAKE2b-256 009f9804d2d8b7bc78ed7fd963adb4d54c043a684383af02ff06ee6208c2a708

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

  • Download URL: aioesphomeapi-45.2.2-cp312-cp312-win32.whl
  • Upload date:
  • Size: 496.0 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for aioesphomeapi-45.2.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 5a9b6deffd859b779a9b5d71e96433ee7d52f090283eb31eaf4f280f3423aa6e
MD5 cb489dcff426ea58116554720e617b0c
BLAKE2b-256 bb47b4c7cd0f057dea1946c3b2a857ed6788f5fafb832bba896314fedb2efecc

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 551e7720099d0f036813e214a47b4a3c867eac5b8cd279f62b9be864f9719b23
MD5 188f53d4d09c4b232c8f7a4b52fce631
BLAKE2b-256 3962269d980b37522bcc710af009b9e72bce7df2ba38ab8147bc9f064e00bc8f

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bab3300d0deab2f93a1d6bc42441063ea4122c0c50c3bc9f19a49be1b7f12f66
MD5 6280f8ea6de0b308834025bfb3b0e246
BLAKE2b-256 056a02dfc3c6d4de106b23bcfd74c03d16b41cc61814840bfa417758b5811329

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 66ceb912efb22e0cd7e49ed677a52844f0796cdf6106cec4bb10274481493077
MD5 e61575f82bf3c199cf34a7f6037bb31d
BLAKE2b-256 cf648e0c0a850fd3477199c017d520ab08071b5d6ebe98e4cd5a57785c0fa78a

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e5d119d09bde0dfe4c66ef9e4a950cfd06ac3d7a0ce0597f52834cc643bc1f35
MD5 2f2e9ae12cc0aa974cd9a33adb9927ff
BLAKE2b-256 1181edf2338b6e2e2024c3768cf663976985b2bdfe7fa0240ca9145a2b51ffeb

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 865913d6eae2e2358c6c5b33177c7e8fa5f254f9460b445ae6c7d8b81720ae5c
MD5 2ac149676fe422ccac3920d708d83d3b
BLAKE2b-256 58b8f346d1198be1a6a94de965dd022bd691015f67ff8e74e0448fce78be285a

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.2-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 afb9cbf83a203ced0750c1eff400493002f4a2a752e57725b24492aa3cc90a57
MD5 e52d75b53d280c50afe09126ef74846f
BLAKE2b-256 1bfb1ced1e5ab1b1dd5297e70b6e0870e9c5dcd7f36a3e7a21ec711cc0916ee9

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 445e5387b9e8f64f88d326d6818bea5a976de596182410e25e78564c3ff05b73
MD5 d08def07595ca2d69b72973ce384066b
BLAKE2b-256 c2e27c8a2b94edb29def80cf0e1302cddda26016cd85c427639277bfafc4b63c

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.2-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 b1c09f0f11f745e462fb11a0f6040567c06bb25b9ecf02b445a26ef37ba2a77f
MD5 8d852bd5041732efdd9f17b0599dcb52
BLAKE2b-256 89a99cde0207d5b569739202a01dccbc5561a89c07693e232baf69c1ab39891d

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 71412bbeb23e49b31527402a57dac60a8e696f1faaec142f047587a22e1790d3
MD5 c7734a36e47c3340661d90dd83332a50
BLAKE2b-256 91fb952b763b357c3894b0ef90cf4c0210df612c084e7009a0155144a7bdcf58

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 7f3209b242249bcbefa35ea8589c4e65dfaa799af8525adfd4d1c571f6a0d260
MD5 57524ba01e3d16808c75e6f84c1a7343
BLAKE2b-256 a64ad097f2bb93c85272833bf0d635b0971d969b86e07a024fa1d2e369df4469

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 062e8a8b1ba00805500ff22687c0f11eaa51334d9b9ae47abd5912c34292a46e
MD5 6c593115618b6abe0e9eab49c5226c3d
BLAKE2b-256 ed12a525f0b2ff9dbff48fac8fa42d59493fd2f37e84306476b23855b9dc6286

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

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

File hashes

Hashes for aioesphomeapi-45.2.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 586e684bafd91540dc8252117bb3c5ccda810e5890bb1fa5a725b344208c24e7
MD5 4e5642fb8abff542ec53caa6e3f1d112
BLAKE2b-256 1599f5ca3e55a06e3c2858e49eefcfbb6ede4820800a722e11cf21b48593e416

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9d44cf0c684a5c0d01021a3edcaa9fa3f573593c0581fe05909f9904bb747298
MD5 fbe314cd365cc5b82f1ef07502ad0e50
BLAKE2b-256 55aada145e36825a9ddbc55f215a76f9e4df3e4a58fea086845a1205474daf5c

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b3e59378649972e846f18e688c20a413eaeed47333c940dc1c7f532f9d76c506
MD5 80d69fd8902ce7d1e5303abcff68fd59
BLAKE2b-256 127d885c9c2c752613e70ea5dfd5e9a43f24f00754aff8e2c4bb3bb4db305257

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7e5e7937b1daffe231ca36bb64c5946f6c683a1a098b86315d0f559c75e9b2c4
MD5 9e48524620fd9b23871401e588b35994
BLAKE2b-256 3e500ad8de92da943497c8658c2e8d1d945739787c6b0274fa558db3542f0bc4

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 920e22e0aaf1d114a6d7ffcccbdfc5496c7cc51e0df33bf12d4dacf60af388b8
MD5 b86b8b2af405a42fc9a6ccb8333d78e0
BLAKE2b-256 f957ce1af52afc4d3fc5e2624952436aa0d51e411247c0ed716f0a79875d857f

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2ace36e7fbf2484bb7ee3b2a4ab2b293eebf527bad2f0f9b77afea29d3d44d38
MD5 d9216e07a2d26e73382fa052d139193c
BLAKE2b-256 c1a7f245edf37dc75317a5f7f1e0bd6708c94965dcc9633246f41cf1aa50369d

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.2-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 7e55b2b8be21b5c3c1557e50a91c1594a350f53153f59cd692e5ac5af18a8b15
MD5 437560e11db36b84078b17ba3061e8f1
BLAKE2b-256 4e45f2fe3b465806eb9eda6831a68f35a1fcd3f3142fdcce6f19425af96e4c50

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ef9b9711011f9a185b31c11416aa19b59a713410ae993dea0a5f9037c6db5b8f
MD5 092eb247dfae802352d0d2b9c36351da
BLAKE2b-256 4c7d638913563e02888793e61aba6cd27b2c10cbf54769169825eca5e71f1b57

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.2-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 4c95af6a1f6425366a2c23b2fe255bc1bd832de9f085cdc6475521f82f813664
MD5 376b055286c8212e5df20299041ff9c4
BLAKE2b-256 7fb49c394f0b73ae017c7a37fe532ee2826a9dbf83668166d916c25c8e89c5af

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c1367ad9ab55adf24d4deab7de1656d047a19af6e0b340082ec821851a8e9038
MD5 88f72e3b8b87dae0056971404ee7b032
BLAKE2b-256 700c5bcd4cb3827488a0c0c8bb193c114a52b65170b7a4730bf005115c77cfeb

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.2.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 667369c0e733b9e88e9694d6b899763cd8d9a213a87184425fb8e600f7af68de
MD5 0b4ba4148a1bb1e49b982769e67abcef
BLAKE2b-256 86ee04a58d86342a9be7c640909ec5a7eedef78d7272f6360e602fbde3449e21

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.2.2-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page