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

Uploaded Source

Built Distributions

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

aioesphomeapi-44.9.0-cp314-cp314t-win_amd64.whl (605.5 kB view details)

Uploaded CPython 3.14tWindows x86-64

aioesphomeapi-44.9.0-cp314-cp314t-win32.whl (531.8 kB view details)

Uploaded CPython 3.14tWindows x86

aioesphomeapi-44.9.0-cp314-cp314t-musllinux_1_2_x86_64.whl (654.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

aioesphomeapi-44.9.0-cp314-cp314t-musllinux_1_2_i686.whl (672.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

aioesphomeapi-44.9.0-cp314-cp314t-musllinux_1_2_armv7l.whl (603.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.9.0-cp314-cp314t-musllinux_1_2_aarch64.whl (642.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

aioesphomeapi-44.9.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (645.7 kB view details)

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

aioesphomeapi-44.9.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (585.6 kB view details)

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

aioesphomeapi-44.9.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (635.2 kB view details)

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

aioesphomeapi-44.9.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (660.8 kB view details)

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

aioesphomeapi-44.9.0-cp314-cp314t-macosx_11_0_arm64.whl (566.6 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

aioesphomeapi-44.9.0-cp314-cp314t-macosx_10_15_x86_64.whl (572.0 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

aioesphomeapi-44.9.0-cp314-cp314-win_amd64.whl (515.2 kB view details)

Uploaded CPython 3.14Windows x86-64

aioesphomeapi-44.9.0-cp314-cp314-win32.whl (459.2 kB view details)

Uploaded CPython 3.14Windows x86

aioesphomeapi-44.9.0-cp314-cp314-musllinux_1_2_x86_64.whl (639.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

aioesphomeapi-44.9.0-cp314-cp314-musllinux_1_2_i686.whl (663.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

aioesphomeapi-44.9.0-cp314-cp314-musllinux_1_2_armv7l.whl (585.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.9.0-cp314-cp314-musllinux_1_2_aarch64.whl (619.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

aioesphomeapi-44.9.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (633.3 kB view details)

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

aioesphomeapi-44.9.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (580.7 kB view details)

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

aioesphomeapi-44.9.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (614.0 kB view details)

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

aioesphomeapi-44.9.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (653.8 kB view details)

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

aioesphomeapi-44.9.0-cp314-cp314-macosx_11_0_arm64.whl (526.8 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

aioesphomeapi-44.9.0-cp314-cp314-macosx_10_15_x86_64.whl (538.6 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

aioesphomeapi-44.9.0-cp313-cp313t-win_amd64.whl (575.6 kB view details)

Uploaded CPython 3.13tWindows x86-64

aioesphomeapi-44.9.0-cp313-cp313t-win32.whl (512.1 kB view details)

Uploaded CPython 3.13tWindows x86

aioesphomeapi-44.9.0-cp313-cp313t-musllinux_1_2_x86_64.whl (652.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

aioesphomeapi-44.9.0-cp313-cp313t-musllinux_1_2_i686.whl (672.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

aioesphomeapi-44.9.0-cp313-cp313t-musllinux_1_2_armv7l.whl (601.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.9.0-cp313-cp313t-musllinux_1_2_aarch64.whl (641.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

aioesphomeapi-44.9.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (643.7 kB view details)

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

aioesphomeapi-44.9.0-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (584.1 kB view details)

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

aioesphomeapi-44.9.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (633.9 kB view details)

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

aioesphomeapi-44.9.0-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (659.8 kB view details)

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

aioesphomeapi-44.9.0-cp313-cp313t-macosx_11_0_arm64.whl (564.9 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

aioesphomeapi-44.9.0-cp313-cp313t-macosx_10_13_x86_64.whl (569.9 kB view details)

Uploaded CPython 3.13tmacOS 10.13+ x86-64

aioesphomeapi-44.9.0-cp313-cp313-win_amd64.whl (505.7 kB view details)

Uploaded CPython 3.13Windows x86-64

aioesphomeapi-44.9.0-cp313-cp313-win32.whl (450.7 kB view details)

Uploaded CPython 3.13Windows x86

aioesphomeapi-44.9.0-cp313-cp313-musllinux_1_2_x86_64.whl (636.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

aioesphomeapi-44.9.0-cp313-cp313-musllinux_1_2_i686.whl (661.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

aioesphomeapi-44.9.0-cp313-cp313-musllinux_1_2_armv7l.whl (591.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.9.0-cp313-cp313-musllinux_1_2_aarch64.whl (611.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aioesphomeapi-44.9.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (629.8 kB view details)

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

aioesphomeapi-44.9.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (586.6 kB view details)

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

aioesphomeapi-44.9.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (605.7 kB view details)

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

aioesphomeapi-44.9.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (652.1 kB view details)

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

aioesphomeapi-44.9.0-cp313-cp313-macosx_11_0_arm64.whl (522.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aioesphomeapi-44.9.0-cp313-cp313-macosx_10_13_x86_64.whl (535.8 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aioesphomeapi-44.9.0-cp312-cp312-win_amd64.whl (508.2 kB view details)

Uploaded CPython 3.12Windows x86-64

aioesphomeapi-44.9.0-cp312-cp312-win32.whl (451.5 kB view details)

Uploaded CPython 3.12Windows x86

aioesphomeapi-44.9.0-cp312-cp312-musllinux_1_2_x86_64.whl (641.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

aioesphomeapi-44.9.0-cp312-cp312-musllinux_1_2_i686.whl (666.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

aioesphomeapi-44.9.0-cp312-cp312-musllinux_1_2_armv7l.whl (595.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.9.0-cp312-cp312-musllinux_1_2_aarch64.whl (616.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aioesphomeapi-44.9.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (635.9 kB view details)

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

aioesphomeapi-44.9.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (593.1 kB view details)

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

aioesphomeapi-44.9.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (611.7 kB view details)

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

aioesphomeapi-44.9.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (658.0 kB view details)

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

aioesphomeapi-44.9.0-cp312-cp312-macosx_11_0_arm64.whl (526.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aioesphomeapi-44.9.0-cp312-cp312-macosx_10_13_x86_64.whl (541.6 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aioesphomeapi-44.9.0-cp311-cp311-win_amd64.whl (509.9 kB view details)

Uploaded CPython 3.11Windows x86-64

aioesphomeapi-44.9.0-cp311-cp311-win32.whl (460.2 kB view details)

Uploaded CPython 3.11Windows x86

aioesphomeapi-44.9.0-cp311-cp311-musllinux_1_2_x86_64.whl (654.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

aioesphomeapi-44.9.0-cp311-cp311-musllinux_1_2_i686.whl (686.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

aioesphomeapi-44.9.0-cp311-cp311-musllinux_1_2_armv7l.whl (603.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.9.0-cp311-cp311-musllinux_1_2_aarch64.whl (633.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aioesphomeapi-44.9.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (647.5 kB view details)

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

aioesphomeapi-44.9.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (601.4 kB view details)

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

aioesphomeapi-44.9.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (628.2 kB view details)

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

aioesphomeapi-44.9.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (676.2 kB view details)

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

aioesphomeapi-44.9.0-cp311-cp311-macosx_11_0_arm64.whl (526.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aioesphomeapi-44.9.0-cp311-cp311-macosx_10_9_x86_64.whl (540.5 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for aioesphomeapi-44.9.0.tar.gz
Algorithm Hash digest
SHA256 d7810a28a269560c3d22db95f7e5c5d5b1ffb79f6e11b1e7a96c91a96928a6da
MD5 baff0d1ae43dfeab1f6590874ea0108a
BLAKE2b-256 2a87ff5f3eb59f9336e454a750b3ab7ee8c73c9b63251fb304f6e6bf12dbd755

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 8a77cd0296d6e52c5a85e1b42fc4fe4135ac10356c5d3cebf12c8eba9ded9f9b
MD5 41f05eefcd2dd3c64540493de64b8211
BLAKE2b-256 02e2814bbba87320c6c35d73a9d5140f930f4d7d75049660e83c1fc38a5e190e

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 8abd0a012d8e0d5832c436c9080d6cc6a638efe9ffcdda6ce0d8d5ca0e358d69
MD5 66cd3b049842f56752f9b788b259691e
BLAKE2b-256 264df6ee56031c1871927e51f85806c9b898a9a458ee735a27ccb6b151351247

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ab25d1a787d66dae36d486b642d3f91fdfbc282b87eb7432de6ff00933d5b4ab
MD5 811b7f1f8082ecff2bbad12cc4e0b8c8
BLAKE2b-256 8dc3046ce4e37a1cdf407e09917a55d3b75c8df0f4120fddca9f8d6ebc742b36

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a24f0f6a565fc83cf936def2585d08b77a295bf26890607fdc95ad6c3486619e
MD5 72d792e016d91259de0213606c0d7131
BLAKE2b-256 d025356ed75398b586e77be9ec4e53f7855b85bcfadf059e95cacf22de6f3de7

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4f7518b783aae9910bf381da7fd908aa2b277b27ae8bc4e8768efd5fdd6bd5df
MD5 2bd5bae82492ba22f1133ab6c3a423b1
BLAKE2b-256 587af3e998ab8a178ddb7c2553e06f6cfa46d7a62c3f5acf7b4d39eeab105eb8

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bbd4c4f9dde72fcd44d1d1da1c72c94daa00ce9c61d1e007f5a6c56b3979ba63
MD5 f20573f3a6bc4d40be2b313ce5d26d84
BLAKE2b-256 94d8f7944895ff2309793d4b7755ee5a73ef0f6f166709bb861f5b50e40428d9

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 29ab8601b6bf364c1938fe4af7351d73984bebaec1757bb4df407a9d50f7f3f1
MD5 ce5ba6dd20d3d659909a857724779308
BLAKE2b-256 3848066c872f3a283725a125702e6f1dc0f1dedf55c11fe12c64d698a84dd28e

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 16d49b0c06d1639d6af75db84f0c7e66ddacfbff210f8c520a230f3e1acee4d5
MD5 1147391fb46d8c130ba5cc5112734877
BLAKE2b-256 1a993e35e03365f883ea36c96686481140f4f964efe1ea6e3f6d7657b9a2abf2

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 965186d434118141cdf2126834683c3e61050267b4c16d5ceaf6716aa7257980
MD5 b8e8719a7119282ed14cec16cad1efae
BLAKE2b-256 1aa5c669d34b6446d54fee87e9a1bf52b6155b28524404842f35ac40d5136057

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 356b13bc4b07d4d4fd5b1d8afbdbd815c3bb263b584e39ed3c3690ebf1a31d45
MD5 f04a14b24c0dea393b0722a2768a260c
BLAKE2b-256 e7515f9ccdd70d37d4c258a65c72a066cdcbf1c63de40e966a47deb942000c34

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1cafacae6f5b57aceec2ea71fd3d91c5a58c51cde220028fbe62482de754253d
MD5 d20122d4bb8b8f4f16e010501860287f
BLAKE2b-256 2243e3dc193b05fd81968068d9c1347f7856ce2d0159a271ce37960d2ef2b822

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 539b908772f78563543faa5d7c051e4b90f00de8a4f1a913c0a9379bcfb70687
MD5 eb20fa4d2a4419e759b4c0ebf3c4c826
BLAKE2b-256 68309820bdb0b1db719bd81030bbd16618b6159b22fc31580ae303995609e1b4

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 e3d89ae7bce26cb326f6ec14e0431456ed51cc09f5bce2eb076a604607c43403
MD5 2873489444d236ecaabfecea6b6a1643
BLAKE2b-256 11a7107c954aa1d40811055b7a40ef825a35aaaf67f58fbe64208191ea872970

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

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

File hashes

Hashes for aioesphomeapi-44.9.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 f53fb7471811340f9d4fee70b3fec918f48453da2da87a0d7376d62af5e4a7d4
MD5 57952646038b92e852f659f58d944c4d
BLAKE2b-256 646bb1f27402a884125a0414897f3edb11da143ce4de6474f77b5d4127877483

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ddbf378ad9c27688fa2953aea11a9a781d68a0f2e94cffc02bdd5064652f3da3
MD5 9682d3acbff4e0997136b89255462815
BLAKE2b-256 b3ca476b3b22ede1711f2ad82db7a905a51f8d9ee627919320d648319abf17b5

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6664c026d7cde834c91b0f163a28fede0493c1e5c7bc1990d8000bc0d8a9a9f9
MD5 cf6d3c6e4183116435e6753dc1be0700
BLAKE2b-256 f1eecc87e9a74f023e5cab874e7295f93f2287efa26bc01b6d0f1db7eb065d96

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 49e0cc7347bf6896a61736dfb70788a0fefe1099cfdbc72084f5c3436ac30dab
MD5 44c35f689a9ea4f930dd634b57105d6c
BLAKE2b-256 d4e39774211adf1e13185c296415d0787501925beba29cdd686e0ff915d58b76

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 94231e572574ad94968f0f2493dd6da2768f0162a8413e159b9ccee9fda822b3
MD5 91c0ebfdbabc59547214e74fa9b42824
BLAKE2b-256 a24c8f956f20253cf7bb3626ed33195aa55a131f4e1df654ad02d093df290c73

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3f34ce8ed83a17946d68a08d8d6adaf441a97e21bae322d5487bd04d1c586fda
MD5 6b818610c357c41d3136f7d158edc9a0
BLAKE2b-256 03ba2a4150117cd485054eb1962d5bb3b571943cb346fa6f5f753ea133221d06

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 6677bf35eced96d9341ce09599bde67269c1ec27338d7625dda35037caf583ef
MD5 9e95fec196b390beaffbf2190c63ece1
BLAKE2b-256 726d20a910127edbdce5359e0f472c7b01cc265aa7480e1f4279ebc775424eed

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 99b6262b10b78b393d6e87a4fbb4a2b646b2105a533bfe74ac230bb1051d7d9b
MD5 aecee6d2f2e57463cf0cc6d2c24789cf
BLAKE2b-256 9febeec51cd4f5204a16c665dd101cf0f6b1cf4195e792b5d3111ac659d71b98

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 62f81db91d5614bff5874b9e915da46e65c778997b1960e4435e48ae37ac3e44
MD5 5f90d476b2a32ed320b20ebbbbbce951
BLAKE2b-256 2167eef8d8e2c0840636fd36080cac5d726dd30452fbe369f069e19b7f08724f

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fd618148c741188e0b49e32e35c7f3a94ca6e6149a979f57d58b1634b233a530
MD5 61815699c628db8370ad5c8b70ef1985
BLAKE2b-256 5b72c011a5628beaec51c65c8dd5dbeda1155d1a9d420372b2397a9feada0bdc

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ece285500f8b0adc0de5d29f6af093c61c6326d1aaa74e08334541271278c331
MD5 70a0ff037da65987c7808fd2f840202a
BLAKE2b-256 eae2fee811503cd081aae792004554c0312099df36598297f819c8ee9212ec1a

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.0-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 060a8da14f4eb2c68f8de6a54ba08eef127470dc15f6c1529699ba89fd7085ac
MD5 6f02366a220563ba9b9d95a057367d44
BLAKE2b-256 b91938b639a728a8d000f50313816de3a2fef1edf72a7eaf887734be89fa9ff9

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.0-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 f5499c828c41ebcc791f797f314373ec29a67b3060792b88c24a4188eff7c29d
MD5 a604fe5747f5ab13604fe44b670b678d
BLAKE2b-256 1d440b01108efba283c675ea752a522ce537d92a52878bb00948c2f7d12ef92d

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 abfd61473eeafa486d911e958043a027d0564a511d9ccd57c4e7c8e9b918d972
MD5 8fa58a6cd5cb83456ad990f7890020dd
BLAKE2b-256 6dd45d17cfc72d2c889ff2c26ba00d29f43a8e016e59fc3a137f641eeb7ec320

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ff99e38a0c750258c776eaf436ff73f53b2d992a4d5dae0b40aece3e4da2f363
MD5 5abbc1c190b07751f2558c6e0f73bb21
BLAKE2b-256 85bf6c6bace4dfe6e09da0d6e5e7d2eeff8432eb296d66144a90b5f1b1de1f4b

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cc9156258eb0be99a81c506d3161704f65483145cbfa2b6d730860f0206bbb9f
MD5 5d6ba67f1c60c5c1a3c39f021245eed3
BLAKE2b-256 27d6cbcc0fc923f6da53e02ef385f4f3e3ca934faf2d48db76dcbcb36d116f87

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7a4312cb72efa242faadfe87440199655c63c36cb13a59bfe25e334082f15cfc
MD5 0d54260ffb6ac5c45e4091f52f938ef6
BLAKE2b-256 e37cad7f9fccd4aab1654e01ab925f013a46252fb37bb03c9faeba970d148566

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 be27f7af22f13e3a15efcadf19c1b6047f1ef5950ab535a8d401126d836fe17d
MD5 d1bb0403cebf6173bd509292c38bd6c4
BLAKE2b-256 f783397485304c418a3939cd794a335d859700dcdfee012bebf1d9c41801c7ea

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.0-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 ec6669d183071e5fe3aee27c6b2adab802027b13e07672933a9c0472d453d684
MD5 fbb359aff3f5164df908a3b939dbf29c
BLAKE2b-256 e9d3eb9668db8571f37c1b2ea947a7331aeab91262edec97d763fea1552b6428

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9001346830befa82cb9bb3a51e10c054cbab9ab5a5855f3f018c6dd7a502df8f
MD5 575cc1b6ee2b2a03d5e110778bfdc6f0
BLAKE2b-256 43ff489e98937e843ba88bc135b2b2a125daee85c419df6c88bd114556870a50

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.0-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 f67028dcad337fbd49540faa0cd6792e8995a037eaef4c78108bcfd2ef449451
MD5 88ad7774fb7a7a5a6deb196a3b9f10a9
BLAKE2b-256 3c78070f6f4507db0386646e7df926fd602c40394b04a0f71535245d3941a145

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.0-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e66305a96cfbbb456437bbd416525f3834f87bfb6511226985703d0039ef6663
MD5 87c1038a8bfe7ec839e93d9174c489d3
BLAKE2b-256 73c3c00bb89c39fdf7eee15f7daf517289f71d1ca725a6d0a503db8b51390cab

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.0-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 575fabff12cef71a1bc4bd54b65915a9bbee1dd2378fa224da5172b19f789b81
MD5 2a4303d4c4b24ed874f95715ef79d9d1
BLAKE2b-256 106dc4827b185b0c05c7cae0d2ea71ba8fa5cb6fa78861d5d0eb5695c4e5e537

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 994d35d02b3c360421f9ee1902925c77202944d38c2f58cf8bb41295136da25c
MD5 f6e12d2737f143b69238d8679ec561e6
BLAKE2b-256 bfe3205eb06b36361998e204ab4877579430282799f38bbdf1cd10c69e54d8f7

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

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

File hashes

Hashes for aioesphomeapi-44.9.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 6acdbf20fe7cbb6b81f20c5f1063c632591ba25d862dc36eb698333bb38a2cac
MD5 02617c5c0c786e94bc2ddf20d626f953
BLAKE2b-256 2ea4175160bc3c7d132e18e12d3795f9dba3690bac500bdc0a3532db9e78c8f5

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b4e282785cd80da99f6987dab4a3ad33b31691c8903773df625f3a1047c37afb
MD5 63409bff2ec60eff6887a1ccb886012e
BLAKE2b-256 abfe62392996eba401f508709283c243d910b151f3f32418be7cf0b7f95b0a47

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 97f9219421c3f2c6e464b6777faa6cf6d778dcaa6308cca226de0425088e0c3c
MD5 7d234c8d269e8eff4b6483c76a99a211
BLAKE2b-256 4e60818a0ea6c979a30ddc8f2461af2f81a64a0864f5b79851b6806e8b036832

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 de30996ea1ad57052655be6386bb7d378a403172d45fbd61fc8a5d6b89aaace2
MD5 17835feca66f29d7d4c338d35cd6c339
BLAKE2b-256 9d58ec98b968d839f95fd4d43a108cdac9ba8dde91e2d661d340f646744fb11f

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5f79f3f2de4694b38de22704c3b07e3fb7d57e1486a6a41e50ba9227663f63f3
MD5 99fcac6a1148874255a7c844252eb49b
BLAKE2b-256 de9e2d7290f3000d546a97204d05144f6ce7b0171f98d7f73390995c386b688b

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 304fe89c78fca0ca800f1cbf34466ecb94d76dc6428746d586cc9c96b6797064
MD5 7dbe85b9cd423a5914cd4ecb21c5ce1f
BLAKE2b-256 9d395ee46c0ea7390068c9a53981bd2cd6abb7b6bd3cd42c4b290aaf10f0fea7

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 aa1b683fe64d7bfb6ca357fa68b105cabdd82e4ff30115a2c63466112327ac17
MD5 8dd1b086ab0645ce1bb9495673c9d40f
BLAKE2b-256 9972da2c19b75e6370f59932ba4c4777d3f1984de062d42a4e52e94cf07b60eb

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1755afd977de7e6b14238d6430db90b7578ed93fac18f7eab07aa5ff622bdd63
MD5 e18e5133fe2c8be665a03e92b963661c
BLAKE2b-256 922a24fa5c564f3a019294d70c1f0f93e034ad964fc890336092dff376a2de3e

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 59fa983f200d553ea3e7978f21be2cbe0452f85b6a7147550285b4f8b143f9fa
MD5 f5ef048d8b1f922f9fad021a0701d6c1
BLAKE2b-256 d1b40fe33487eb0e9808fa90021cff8b0ee1967f9f0116e8c6d57dc55c6d44cd

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0210c875939ca77e89869fbfda4b89fb103933637e043a8aeb3f89ffb1b8a535
MD5 77f1f53f2978c7197bcc15f5edce1bf9
BLAKE2b-256 bb644725168dc76eea2c5d6d0969967054dc99a2ac8b9c225984fca5598c522e

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 0e32481db07f5accaf155aaa28d125ca5f437a7b57442f4fc687513af42e7b9d
MD5 5e0ae27cb12295037942bf23ae25e65c
BLAKE2b-256 55c195336d8b513a0142b37ef4228b034ae735eb4242a7b2339dd687b32e3451

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 085a9199eb2a5aa35f06322beaacc470bea8be1c4d114fee65a92ba89d7599c7
MD5 b8b54c63260ebcd1e86a579c21de4621
BLAKE2b-256 a141b52055e6db48d11aa9f399db8e5ac42d6090a56164291dbee3259056ea5d

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

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

File hashes

Hashes for aioesphomeapi-44.9.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 d7881c6ccd057d681dadc05a95a1648e0e9d7e6d05b0828ee144301dc1e37b84
MD5 78b48afa136cd888a47389ae30dd5a98
BLAKE2b-256 188c344f56b0aab99da427ec6beddf23e8329046a35e4e31c204dc30d7a3cc42

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 60e8a513982845e1d9c8c68b441c2c384f1f6f7ddce2df27d24a0c9737f7c6a2
MD5 c62e187a482d81813933f83c6e244e45
BLAKE2b-256 f2620b17c04b6a4dc73e61b67f9c9ccdb059065b3ac1f343f9526f7c05d65986

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a5c6e66c981e1ca7c9aef91202995a43e53c9f63ff208b1941f4ad5359af97a9
MD5 47e47e491b1def74f90c3a16307fd0a8
BLAKE2b-256 c177404c9ab57860d4bf1075e955855c03d4bc2ca5bfe52e85f2efa82cb3e0a0

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 635dc29cded507d55b5788e7b3d31dcd6aa1bf05868ee2334056dc0398cfd1c5
MD5 f7df6df8e5b9020a289572c312b9f406
BLAKE2b-256 35123a6943a6df4de7e9e84878463bf80e01a425946586aba898e81044b232c2

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 abe85560493748b4d30842d16f0536504ceca9ee180037e58938de00136ed3a5
MD5 5242a53d90f116037ca4403002cecc3a
BLAKE2b-256 285702db67ecacf1d84acf5a30e78a6ba12dd282d401dad2af37b71e3f709d3d

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f7e856d6302b96b87c0a434e88c2a8360780e97def0036849b1424e208b6ea99
MD5 f6557eebf44c77b0c97c0274917c55ce
BLAKE2b-256 c04b6a76f5b645e1bd6cd4a9b18a92fd87f5edadf1d765d0fa24e7d42458b4b7

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 8b347cdf093164197f352d88c34bd5796cb6a3ba782e7ded3f8ec976fa5806db
MD5 09cbb71eeaa1ab3ff25bfd2821961a02
BLAKE2b-256 31d51766b7ba5dfaef40ef2c889b0a25dcd797c9e3d8597f611c7cb0d5221380

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 30c1c547c76ef322ae73faa04d1ebb65ab73e052f30f06db11ff66fa4c69424f
MD5 97ebe66f43388d45dfe98034ed2793d3
BLAKE2b-256 81a26a7ddab5925efcc72845bc88ffb53c5a935526aef23b9ff7f3fcef34b3fa

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 d0058cf881e050bb94bc817952f9977a99c89a045bd2ae7b1c8e3d8fd852ff26
MD5 8a5e447699afd166c979bd94d2520b10
BLAKE2b-256 2ada9c6360976713794df9b911952c2429fcd348a42004a1ad22a6300ba7b40e

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 02019ac118310f121f95a7f33e6bf2e90fceeae8d618b821023466a8e1168fe2
MD5 384e041fb54aa95851dd9e33d9b8b695
BLAKE2b-256 ed3e03d8ab1db17e5ba315e3fe6885a6fc9067e8326d565af83a3a6499a6ce62

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c750ffa3ce20abe4c5dda8098be07ab74cb433ff275bb3c6897f456cf6de5422
MD5 c520f0a846b7ee45d5f512cbe4d1a6ad
BLAKE2b-256 c5bed418fcab28381fc66a5f6752f4d47a283db26cf4f8873cf1a5c695fa19bb

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 5de1c3bb95e9d26d0c4144d09d9c65b7e0aed96ad5d101648a36d3bc5cdfe6bc
MD5 15a1e57d9006abe96d99be69b204b2d9
BLAKE2b-256 2dd132d4be264a972715e8360b4605e18b966c3fc6763e9ed02426c1b9e1e62e

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

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

File hashes

Hashes for aioesphomeapi-44.9.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 4da1a1b85ad3f48a437905df4d76cd69c4f3c487d97ffa1da8e70332457f1b4a
MD5 d2cc289ca33dcf33af9ab30b8c88e469
BLAKE2b-256 54b6b0dd9a8b07d1ee8f4136d3c32f3bead4a63beb4f6316695023d8d0560380

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a24ecf68dc2746f16bfba0a6aaa141ce53cb7765180cb520be576ef04a18c14c
MD5 1baa58fe9d881c6d5d5ce51141af0b21
BLAKE2b-256 d5f75ebe602168fd23f726f25765f36caef94426d7f812617a152d3e650e012f

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7b44cfaf191f459360248c419560b41d86ec85ae550935e3820fb88534eee144
MD5 d118dbffea2a312b1a9eb2ff66b1487e
BLAKE2b-256 20040cd67e4c780a3f33d80797c3856a64ed585ecca40e648ef7409b330fa716

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8c1b3169e0376febda26aea90d96caf384f2ac4a79e0e897f8b2d0d4e33e7ba0
MD5 69e461caa3788454e15ced31be288e6a
BLAKE2b-256 ac5e737f1d6e7ae834f5b3ea64552f95ef362e186cdcef67a72c0d3cfbde3050

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 85fac51c006f5fbf95e5ee190888e90cacce244cca2363886fba986c276c7acf
MD5 312960d4af3dded547f67fc721b92ad4
BLAKE2b-256 5c3053f5298b71e0e1bd55e3dc01f2b5646bd2ff589a261039791a34252b741d

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 096a3dbd8387539d92363ef987dca937ab6e65ec908922c9bef9f052d268616a
MD5 c9b15de4e0999ea3c4a542193ee71d10
BLAKE2b-256 dbaf5f0d007a5e6847db748e34c8bbf4cb1a3bc201e884bae8287ad5e04c6036

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 e30c71a601f837f51732158af942502ef3429ad17f6c67b3b72bdd8276f50ab1
MD5 bbefea587a16b8f685cfd929c54adc4b
BLAKE2b-256 9a3631e019fe9638608fec964cc7861add7033d5236bbdab917d7030bbfab162

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0ab7e1e3c546a443c2a9fe72a7b3a52ec58315d77fe6291b53344607a4776030
MD5 f0c2c29a2e0a784b2f74836d87c0847d
BLAKE2b-256 4a14838719527c0df1f9a638316256e6615188d9802473f29e2be55e826916bd

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 922376c7f6966b35aeadda8b76429e61bb4b3178207d6c253eec8d9774737eb7
MD5 f7c3c8bd54e77dfafb7133e3f5b0d4d1
BLAKE2b-256 681b6f93382f2e4f655a2cafb052db04aaab79eeee173a51c863263b853cf74f

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 40acc42d7465a3f58f6cbb82acad83fd3264f2f9c8c946668b7eb0b9cfc3c59f
MD5 e65e1f0af55ed5ddd33d339e06e400be
BLAKE2b-256 1ddc49e7c536e0347f945550dee875f1d743b1215112e7f9b1b31930e0173e14

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6d688e5733c41b5a6c263f282f612080f094ed5cf75e7f873322ed82d34a72d6
MD5 a803dff25cba2be3b64a1ecd2b5c5b2c
BLAKE2b-256 aac65bc238fa18d60f8599c9931907ea8784abe15b8d260f02eb48f84c7b2736

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

Supported by

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