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.8.1.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.8.1-cp314-cp314t-win_amd64.whl (605.4 kB view details)

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

aioesphomeapi-44.8.1-cp314-cp314t-musllinux_1_2_x86_64.whl (654.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

aioesphomeapi-44.8.1-cp314-cp314t-musllinux_1_2_i686.whl (672.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

aioesphomeapi-44.8.1-cp314-cp314t-musllinux_1_2_armv7l.whl (603.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

aioesphomeapi-44.8.1-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.8.1-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (585.5 kB view details)

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

aioesphomeapi-44.8.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (635.1 kB view details)

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

aioesphomeapi-44.8.1-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.8.1-cp314-cp314t-macosx_11_0_arm64.whl (566.5 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

aioesphomeapi-44.8.1-cp314-cp314t-macosx_10_15_x86_64.whl (571.9 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

aioesphomeapi-44.8.1-cp314-cp314-win_amd64.whl (515.1 kB view details)

Uploaded CPython 3.14Windows x86-64

aioesphomeapi-44.8.1-cp314-cp314-win32.whl (459.1 kB view details)

Uploaded CPython 3.14Windows x86

aioesphomeapi-44.8.1-cp314-cp314-musllinux_1_2_x86_64.whl (639.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

aioesphomeapi-44.8.1-cp314-cp314-musllinux_1_2_i686.whl (662.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.8.1-cp314-cp314-musllinux_1_2_aarch64.whl (619.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

aioesphomeapi-44.8.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (633.2 kB view details)

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

aioesphomeapi-44.8.1-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (580.6 kB view details)

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

aioesphomeapi-44.8.1-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.8.1-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (653.7 kB view details)

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

aioesphomeapi-44.8.1-cp314-cp314-macosx_11_0_arm64.whl (526.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

aioesphomeapi-44.8.1-cp314-cp314-macosx_10_15_x86_64.whl (538.5 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

aioesphomeapi-44.8.1-cp313-cp313t-win_amd64.whl (575.5 kB view details)

Uploaded CPython 3.13tWindows x86-64

aioesphomeapi-44.8.1-cp313-cp313t-win32.whl (512.0 kB view details)

Uploaded CPython 3.13tWindows x86

aioesphomeapi-44.8.1-cp313-cp313t-musllinux_1_2_x86_64.whl (651.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

aioesphomeapi-44.8.1-cp313-cp313t-musllinux_1_2_armv7l.whl (601.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

aioesphomeapi-44.8.1-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (643.6 kB view details)

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

aioesphomeapi-44.8.1-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.8.1-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (633.8 kB view details)

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

aioesphomeapi-44.8.1-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (659.7 kB view details)

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

aioesphomeapi-44.8.1-cp313-cp313t-macosx_11_0_arm64.whl (564.8 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

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

Uploaded CPython 3.13tmacOS 10.13+ x86-64

aioesphomeapi-44.8.1-cp313-cp313-win_amd64.whl (505.6 kB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

aioesphomeapi-44.8.1-cp313-cp313-musllinux_1_2_x86_64.whl (636.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aioesphomeapi-44.8.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (629.7 kB view details)

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

aioesphomeapi-44.8.1-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (586.5 kB view details)

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

aioesphomeapi-44.8.1-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.8.1-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.8.1-cp313-cp313-macosx_11_0_arm64.whl (522.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

aioesphomeapi-44.8.1-cp312-cp312-win_amd64.whl (508.1 kB view details)

Uploaded CPython 3.12Windows x86-64

aioesphomeapi-44.8.1-cp312-cp312-win32.whl (451.4 kB view details)

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

aioesphomeapi-44.8.1-cp312-cp312-musllinux_1_2_i686.whl (666.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aioesphomeapi-44.8.1-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.8.1-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (593.0 kB view details)

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

aioesphomeapi-44.8.1-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.8.1-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (657.9 kB view details)

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

aioesphomeapi-44.8.1-cp312-cp312-macosx_11_0_arm64.whl (526.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows x86-64

aioesphomeapi-44.8.1-cp311-cp311-win32.whl (460.1 kB view details)

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

aioesphomeapi-44.8.1-cp311-cp311-musllinux_1_2_armv7l.whl (603.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.8.1-cp311-cp311-musllinux_1_2_aarch64.whl (633.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aioesphomeapi-44.8.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (647.4 kB view details)

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

aioesphomeapi-44.8.1-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (601.3 kB view details)

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

aioesphomeapi-44.8.1-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.8.1-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.8.1-cp311-cp311-macosx_11_0_arm64.whl (526.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aioesphomeapi-44.8.1-cp311-cp311-macosx_10_9_x86_64.whl (540.4 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: aioesphomeapi-44.8.1.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.8.1.tar.gz
Algorithm Hash digest
SHA256 5bc57f2f39ce1c1e434a5a81269df12b35b96940934c120985e3704089e6d694
MD5 b993de3eeac7034e885efb4912ea1f2e
BLAKE2b-256 6a1fcec4fc4954a5f437b468130a6acb3cf29e8f3ed5cd1fcff324affa8af627

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 dce0f36c98e87dbbd3592eebee9800b764cad0c436af1ebb0334a950ad507bb7
MD5 1aab221640d8f1bad6e7e1ea524988e7
BLAKE2b-256 e907abb9cd09feb2c08735a0a5ff4c5016a4525f2be41af2745af71c43453f10

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 501caf91e0fe1d047265149ad06506da0fb5716551ccdf0e9b670d593e6635eb
MD5 5ac6bdc621f4f2207d40c3ba15410fc2
BLAKE2b-256 cfe0cf2cc142738b972d5147c81ebf368d78f1f9b1b66beac63a217578b93cae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 78af614ff9a582c4c299e9eabc79714b3848380651c25b71a3dbe4577ef346e0
MD5 e8ca72fad4a3e65a31bf64fd0847eb45
BLAKE2b-256 878e86e8d9de99208aad407e85b068e9e6c61c1fb134c3897dbab3b097326ff5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.1-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 233db5706ad2c0d62661dba9fb4dba0a5c070ac6dcbe8a59cc7f0a7fa502d89b
MD5 3f4241d46d2e7003913617a3ccac5fb3
BLAKE2b-256 c6b127085ed7075b3bfd40cf564725814d8aa82c2b36fe5bc3ad578017ca2458

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.1-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e8e152d87e1d06892f51ec457376aa8b90b5cffb92b72ecf9c6f242e62515ebc
MD5 fc7740e0f6560bac249afd70ea0ddb6a
BLAKE2b-256 afd0fbd6b31421a0ea0cebee66b9d02de009b58937e9ebf83af05625e58f08ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 27e4565b82a78bb3e5a877d7e17424dc22bc93a91929d1e2af511d5ac885de09
MD5 c7e0de8652a6928d94a8619711e7ee7f
BLAKE2b-256 5141a85e8065c5842d1ca81eceff444b5663f096b730347daab3cc08d019bfb5

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.8.1-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.8.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.8.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2ef981f67c4c7a5a2684694b3708aba9ca13dff906cc682f80583970fee64787
MD5 29a685884e66b7906194885fceadce8e
BLAKE2b-256 9874f54e3747aa2dbf54ea00809a1149970024a1be10a5e061c9f08504fd2e41

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.1-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 d83bb28c468be2f467c6db35a97ed81963b25f88e69825fa6769f77f7daeef70
MD5 24ece40e148baf1681de3c19073cfdd1
BLAKE2b-256 8865f5f747cb7b526974889c0628a39e940445558184aab65249cd39b0b1072d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 98a3be22acf74a5d44ae200cc19a83eeaae0294f9c6e4624b89dcfb78c817dab
MD5 b7b95b64e3e1f2ddded314eafa5dcbce
BLAKE2b-256 a4865d8e35171197164170370eb051393ff38f80a1ab81dd042641d49361b638

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.1-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 86d92b46bdc64be3178bf4b548d5e1868882d50d70e2140b36da52e5e38ea63b
MD5 fe66737a40e3a78512477f7de86d31fa
BLAKE2b-256 c7631bb06499775b82041059aaee482e04d863dd9f414ba5434ab655d34f3b56

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e7fe5e66b2aef0d2c7a89b7351c359ada6d85f6ef1ce8b9b1f80f8290b24b9e5
MD5 6560b6be0b5b8063a77ba418f79d504e
BLAKE2b-256 b324e55f6c7d2f93d5ce1641679298688f6ce1ad65e7fdc5aeba5ded5a8e8454

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.1-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 c8c5335d20e6cc87e9f05bdab38b9dc1bc6b2db6b517b1081bbf709b7bc855cc
MD5 3e5bf0a2b0a16efc1d674c9bd4dbdcaa
BLAKE2b-256 4983ad95e9779705f247722437b97e1b523790249491d1d5fec595870d65769f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 33f695a783356c164339c8e861a6435562703e43d1252120bacad1115d6a2b24
MD5 76aa534954e26546ce8ae850565ee783
BLAKE2b-256 c88980981b5d1d2675b5dc7891dd703346e174ed3bd8f8b9ccd4ce2d9b7a17a0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aioesphomeapi-44.8.1-cp314-cp314-win32.whl
  • Upload date:
  • Size: 459.1 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.8.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 3e0b473fe754b4826d906626764f9f36dbd3b2deffed86f4ddcea0921b86c437
MD5 77018d61e0e023149d0de322ddb723f3
BLAKE2b-256 66f8689a0b39f990af5ff332b3fe33e8c3c32fd2f1f3c4a3667c6e99398790d7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9fe22c6e14171db1d998bc1de2888a354ea996fe039f9622c789e8aa73d7700c
MD5 135b6d5507fd900e80a9f4e51e4e0d6f
BLAKE2b-256 b6d54063feb5782515d002709f00529e06ba5377ce4189c11f0751536dcc009e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.1-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5317b1167ac4747a6cdf0584d94af3c69b51d0e204e8429084542305aa5ec9d3
MD5 7bddfa4c4bd2d05a54761cfbd1703210
BLAKE2b-256 018027ea06171534eae42eb9c931fc5e03683b2498ae97da538aaff70cfcfa20

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.1-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8c7e1b00795bbb2330d9b44d8b630092e3dff2a55f33094462a8e4640a9bb4a9
MD5 548dfdcf3a6e1db0686db45292469561
BLAKE2b-256 fe388ed2001ab9f975355d66a8fcd3c8e767b0ba856027a09f8e1de25d72f491

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6aedc4f17fe64901ef2a70d7db9e8420ba030265986f651b99fa8d71558d0e9b
MD5 eaf18242ef6a9316315b26e0b4d9f08b
BLAKE2b-256 778855f98a06bb6a487d8962dcbca1386320599cb8eb1dd641b482af35419e83

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.8.1-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.8.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.8.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a33d1d2e9ab3ef159571ddf561b3f84eb423c49f8ff48e4872cc21de1295de2e
MD5 457cd91aa250f1d30515181dc964856a
BLAKE2b-256 d9696b8372a4e690d11eab4fc4cce3a6f3ede5a38af370137c7c04e231d2c47c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.1-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 b610ec5e5a12e27fcbdacedf207cc195c4dd7fde90ab687b9e9e6f5b1e4006e3
MD5 e72b593f5be7a9fd91642d01c40d18fb
BLAKE2b-256 45604dc2eb41cb4bb7dd7da0fb1e2fc7e1df7514a1db9ea8f6ede9c798bcce66

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9e0c2a2b657ffacc7ffa97d699f495ca393e00c87e89e3cfaf273c578110e52b
MD5 23358c446d7308468bff6801155577e0
BLAKE2b-256 9e31572af387fafa650454440bdb677ba0d4fec426c64e3b04f2db2840acdf9d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.1-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 1f25a6287754c9bb9e07c4dbcb3b45cdaa600f6b19bfb1aafe1e3591bb860baa
MD5 7767950b970a8e4f44878b53466685e5
BLAKE2b-256 7d21200eebcf137ab59cb9ae0050cc00fe798184d9334e390e8250389fb91db1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 913e844bc562affb3247beec8e501f9d46ef39bd4ef12b8476b510c02f26c098
MD5 cff70431615689752307e2e50cd46718
BLAKE2b-256 e83d57fe1150f7fa3ce4e76ad88347c4bbd2298ce8c82707438d20eb4cc74e7c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 817153dd094d7464f7db2effdf307a53824b00fa014e627af21bd5978afd98ec
MD5 9d4de1643f413a9211f08cc59783ab2b
BLAKE2b-256 05abd710910700e455563d40752acbed3ce0401089a325e54a1069988a0835cc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.1-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 d67aa2e72e8333121cf9cfde05698819e01d60bfe70a26f92219c58b770caff0
MD5 f47b2921b87a4182bfc6a1617b5bbc7d
BLAKE2b-256 11ef8ecfc6c868898fbffb26710aa54b9672397d4f8d4aa14e548e4e4c2df011

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.1-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 36261c1cba27b8398807006ce8964b19a1d5aba1feae73d60e3b70157ecd0960
MD5 afed28bac05664257b05f7d70a1fd6d0
BLAKE2b-256 eea639533973b4609b507581af5de60b89ed5cbb024a49862e30b8c22d9ff340

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 abf34c64b5670b9fa13722d287bcc3611084a339b23dd63e7b3776dc74f65d7e
MD5 a4fbd00a599c3d8fcdd65683a7ae2f6f
BLAKE2b-256 fa4d1ece431a044573e11f4390c8a06688a583cb954d644a71209543d7920eea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.1-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e9fd3fd56acf0d28ee0ece95be8b46ed83e6a5a753e973e37c5981f673f94c37
MD5 0bfe2777879bd4ea5fbfe42daf5cddd8
BLAKE2b-256 be5f8701ee693885a834ca5a772a31e0d117bf4034e871972693dba0c9d51f7d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.1-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 477b47e05feee495959b00d81b946928fa1d1fce061a4fcac4efdc30fa90b2a6
MD5 88a82f2457b0bc539f931efb3430211f
BLAKE2b-256 8e04e44db0acd03e3c7354c6cd472c489b009276b5923ebf00f109a01a61b599

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 278bb96036a405e97767bf52a4e8a549d17376b1373e316e43ce591fb8d82118
MD5 1040370e97e85a24ff458a4781b28da2
BLAKE2b-256 11dbefeceb81849e84cf76b7a5d8ac0ebf8ac1bf65ebab7b9a989d21c6857701

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.8.1-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.8.1-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.8.1-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 862032941c102ba90cbe135b6615045989d2c0954e230e151bd3c97a6bc608b0
MD5 0d80f3939a48f967f16e0ce883a30647
BLAKE2b-256 f5fbdbe624c0ae80c4610ddb82e2ad476dc71f8ef21d5618dac0d0de7aea59b7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.1-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 7612410cfc38be72e6ea016cd339aba037ceb56c46a078f05703e14442658f54
MD5 53022e0a92893b2f1a69b0e481b377b8
BLAKE2b-256 130c73012970ee128b971a5429882a305013acd945e5f924bd623b4c4eca8a12

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.1-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8b8863f7d0186e9be939313eaed26ab788f0b7acbf8f30c11a69c5e37e41a6fb
MD5 2cb420b9b4f9a46eed2213aa67e892e8
BLAKE2b-256 1a36b5792d2938ecd0e44ad3067d17be1838a43484259dd2a329c4361ca75eca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.1-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 a891db8013b36fd9963bcf434fb7149a7537e4da75c38301571d3d3328c6ac33
MD5 4ff12d09f6a2a25a26c15a0ae2840479
BLAKE2b-256 b520e164807cf635685131f32f2126f855fb955c80bab75ac6550f958706b4df

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.1-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4f650fa179f5a2debdf2013fbcef8f4200e7f50a0a7608745df1acf2128fe7cf
MD5 1ac6c2ebe73b103abf4ef5a75058ecf1
BLAKE2b-256 ce5edfd12f09ff86b7e24d8c7b77342a960e19da78f6b01302debf67f3207e04

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.1-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 6064fac5decd73323e2014ec99773aa7a911b2a0649690f7abe6decc4f18d87b
MD5 3ca7a21b92fa7a2209734e41a779324a
BLAKE2b-256 e7db181a05c6e63305fc5731d14fee3feb556e81cebc1abe15c93e7b38fde8aa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 0114211993db49e0a3c807af9131e34ba71cd82c03c1617b013c9fd2de484af0
MD5 ca24ebe863df7c900912ddee4f17e0c9
BLAKE2b-256 769ddeac54f8ac4251b45a31e82d41e942491b265b005555f65bad14370d54e9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aioesphomeapi-44.8.1-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.8.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 60aed3524ef2a244fbc78105203ddc6d235ac0bad2aab07b870ef23299f8d9a9
MD5 b322b220f2ee86ca8c4a5a4049dc9e03
BLAKE2b-256 c0bd9b7d5e1e1361005e21f38744a40b495cfc6417b074df4226657cfd051e23

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bbd3895bdd13bc00aebe5ecf2b7dc9c64c787639296900d88572ae34eaea81a7
MD5 54c02d9e9f4408fcfabff8c81f7feea4
BLAKE2b-256 e00be6dce267c91d0718dd6ae6b7a9d66e5fd075ff47b2780b0eacc53f686f49

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2ca9dc4faa03ba229a9c312193a27f020fe08410951669e08c3caf06bbebfe23
MD5 156738331d82634c23bc6292d370a077
BLAKE2b-256 f0d53d50ed7fc4c9667bb17ab68e427b02f214e95d5a9b9590a55e20ca640990

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9a455411482b94e0832f2abe11638c51acc13bb025b74b511750cebbd8721b80
MD5 ba5a5af553fd5600cec4f1b2b3369c2b
BLAKE2b-256 ffc517087097d6d6ecfc39489afeb4bbd2b127f36f1a20f2af26bec081d3d88e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 506e57e9fc1efce37d2bcf3dc33baba1fee3dfcb774e087bc941623f7acac3c1
MD5 5039d2a36a7da70c7579f38d37d1af5a
BLAKE2b-256 de62c79c25b7212040fd0cb7173ee8aa06ca1de0b58400a60fd69c684c2b0b6b

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.8.1-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.8.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.8.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a068ffaf8f366d613a32b83ae1af9f83aa597ed2e83885ad900dfe3e3a30dc0e
MD5 d9d384efda98d27bf52920b42633a068
BLAKE2b-256 faa0152006a4534fcfb0e3688318c9913ce4604694bcceb42ae7e9c7f303ec47

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.1-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 6cb9f7bf720d6ef9aaff4df1e5ae0c9688baca0d4a1b646a26570118b26ebbe4
MD5 b15a4bfc0b7ff01f5f3f270b6f0586fd
BLAKE2b-256 e212458ba642a55f8778aa25d46bd31482a1dcb96e3aae64e8497bf005bc0470

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 730b2d2903767624cc7eb37a4d8d397e101c9ad768f52c6fdf917b785b366742
MD5 189e6d5b0fac8fe94c8d670da8915759
BLAKE2b-256 cfa402deeb8777a6ee4fc18100d0f06aa97cdf86aa0084dd6a029f06bd0c05f3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.1-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 024fd63cfe9d4384c5f59c8cc5eff081fcf482addbad84e1077bb6ef7ddba4b6
MD5 bf905b73736b8166d3ac52daaa77e861
BLAKE2b-256 d0a52222dbed491f0ecc92748c78cac687b29de634fc2303cb7f177275a3e2cb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 151c0ce175ed1e14f02381045f9d8920df8fc839bc4fe90132a65fac97dc8af0
MD5 7a9aaa7f886362c8cfbb433a4f1bf700
BLAKE2b-256 33bba1a87e79660ec2d1fdb4dde0eda16a7163e02b1453812112c7b8e1b5aa0b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a61d4fd7c6b7ec2ea96ee157bae2168c7f38890a072dc3446d8864ba890a29d9
MD5 1088088390f9b627bb501327af126215
BLAKE2b-256 50d216f95fffff79fd2cbbc7b633a969b0b2e108893523535d64d1b1c0eacdac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f1fcd5fad5e331c8e0482251e3dc3af8952d75038e91df04221644acb0e63dd2
MD5 9bc0ba1319eb0090baa80f688a32daac
BLAKE2b-256 2fcd3e78008713ba8760e6ff2399640a6c777e57dda7652a24146006085e8fda

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aioesphomeapi-44.8.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 451.4 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.8.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 f99e8de4643c69cea59be6a1abd3348fc4ee6b3703b1e975f66ebb35edf1a58a
MD5 f554c6fd7dd633f6d506f0182b3d5532
BLAKE2b-256 b0b4850c00e64d9d08853fb8d4d5610bf2284a07c2715b3836ba3aa39f225197

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 33cc77d4e89a09b0869d3b001174d11554ad16b348d0cb228c0c37528207b584
MD5 100878b59ca735ed7dc8292689b6f44e
BLAKE2b-256 d633535433ab4d90cb7513981182039917cc8b5835ca7625fd95bed6e4f80d90

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2baaef8fc274e1bc038308ae44506bc856113d0e3af756c9831d6667e006810b
MD5 97f231a84e5c929990b0777b08ea480f
BLAKE2b-256 232d84ee5559f79b85f665aa3b324d0ac48716127d808d35ab86fc89bf591480

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0e6d69dcf755cf0b1cf1aac5885859038dac3d6e59104237b6591c7940128372
MD5 4c9fdbb28d42284ef06dd42fb82a5abd
BLAKE2b-256 660d6db5dc88c3125d5f9574cca316e1019ce94603630d4d4b2de28738c215e5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a281a2c796e2c6b30c1b694886a968f2ce515b043f46c89e1ca59d96c447e806
MD5 aa81764b09f6356d1bf2dd894dad5720
BLAKE2b-256 aeae1824800fde83a731ff9eb28fddf6c66a6de0f96b3bd936fd791f8d143248

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.8.1-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.8.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.8.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cbd8e504c96332ccc8a90a4c85c681558eff041fc4cca7fadfff045b333d23ab
MD5 9760ee3bbc29e9daac9bece573a35f06
BLAKE2b-256 02cc6d5848792a08155d18961505e7c7d904f1a8ac74ffa6998e8eef6d6348c6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.1-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 7c09b14939dc45992a9aa642cc9063e0c19e5cd6367106c6c7490d0d87df9473
MD5 64a03adc1d8065952e30eb7f39e663ca
BLAKE2b-256 772984350be57cf450ddf9e01eebb47228f7eefb0b91729f376bb62aec0869b8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 44f810270c08f109d41669beb7c9206ea8e109b570ad79f7c2d73e136a308d58
MD5 358efcf885322c528ef2a045a1880e79
BLAKE2b-256 579617cdb7d45b193d141ac870d6140b918e94c8f06138ee490965cb4ef5eabd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.1-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 7bb46d7f34b68f5ee860713c324c35b56573472a04d3c4a94dc0dfad032b24f6
MD5 21b7f75a3042a08046d998662c9b9463
BLAKE2b-256 86437b17cab8c4418d7382ee88d97a1d5c9de84d3190744a7cfa8df607217aa0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a2244bcc742ac4ad0a7572aa2415aa4e2ff941a0901f1fe4e5cdd8e629215ab0
MD5 8d566afe92d175a9d90aa51e7d08c7c5
BLAKE2b-256 92ed7f78a711f2169117abc2c5f451f5ed011048c40e34e7692078881e811061

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f4a573e57092db33d7c396c64fa8cdc24b58dfde02879b271f7b9e2bb6879495
MD5 2a1dfec03921e5278d6d64d0284a7db6
BLAKE2b-256 7cdc3598a97226eec1ebebf4250235a6fcaa467ea16fdabdac40a9a2dff316fd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8e636c1a0027c4d820ce33af4dd45b049053d95b907187939aa87b4f9e1a4d05
MD5 fa58e057e04065facebbf00fc197be55
BLAKE2b-256 f03536c43d533b53697dd29626d9e7a8fe3abb3acf5fa766c69e87ed336dc22d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aioesphomeapi-44.8.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 460.1 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.8.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 c29480e4074e1111069e98af08cbaa33fa00dba82803cedae0ae3f44d06f3fa8
MD5 1343da5082fc82b9ec1b8705a3393c37
BLAKE2b-256 7fcff2f67f1c483d1ff2fe45b13921b4e12648fffc8c3d1c0372d102475b5acc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 847fe8adc0ce31cbd106757a6a2eeff2b1de25c2180576270a84fa998aecffbe
MD5 03a1b7590c36a3372450f9d960e0e405
BLAKE2b-256 1109fced777be6dc2a9d1fcf303668ff56fd167821fae741d9af0d19a13272c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f8446376d4710431aa9b4c3f01574c937e9d6f68a1f384b95d1fab1e3cbe4879
MD5 71f6b5a10884b59a22be0c7721522a99
BLAKE2b-256 7c5d6281190626c7c06ebf268fbcdf2a1a5b26fea6329342591fb4ca742677cd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 19eec82bd037af01abbd13f419e90575376969137196578c435b77b8d04867af
MD5 1f619eb7c190b7128dc1bf59a38c0309
BLAKE2b-256 b3c97bda3f395e6d86970bd8aaa2f62b2fc17f83d883fffb8982db5178b240ae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 abd3bec5364a90725c8abea034a483fa6aaba9c6dd98698fb0270dea224e92fb
MD5 5d62ec5604eae0b2c6f4025621e1cf8d
BLAKE2b-256 718bc62e633168a810a19da4293183a2d71b32a726f0ebaf170aaabe0365f96f

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.8.1-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.8.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-44.8.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5e7220c1ccd8e9826907f01f3c77a6a9a95e9b4557a69962d11a800f53e2b35c
MD5 307bbae28c2e4a966138c308c66c2888
BLAKE2b-256 7734b802890abcf54b26dd88400bfef5723c57b508ce21c328ef627d2c5bfebe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.1-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 63b10d10569712e1d123cba929611429cc60d6c3ac5006ff856cbb13e24f7984
MD5 7a395c71917e93cd3d3abbc0ba62a090
BLAKE2b-256 7156beaae727b9a7dfd708146c829ab956ae0127bfbc82fe68227ffa7f303e8a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 92dce3e4c479fa38b031606c6b9330338f608f2fd8614e285a50dc2feef475e5
MD5 ea015dcbdb577f3b59f0a2fdeedb387c
BLAKE2b-256 fa5b87225261e992c19427ab7895e0cc0279fca40e44bc71d3eeefe9e6ce256b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.1-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 d71e92a752a5517dc0226ede7d86130c0d723d06a08d775ad42255334e7786a0
MD5 11cb2ce345fa2694d6c4910187179e70
BLAKE2b-256 d313e773ceeb8e3c9328a5c59b722a1d026b6189f6d9d1e565fe6ccd43d3d14f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 585793e31d8ba2a2892dd43c1a7681e9faf69b120d953b62a1f23c6ece168d41
MD5 3af59764f398f3cabbdf8cbd2726bc22
BLAKE2b-256 bfbef725285451b24c10fe86915cf12d61e6b736c5d1a1f7f92b7ab794dfc919

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 77df102d2d189874ad99d0e796d8102108ff9f5921e8c0eab2ebe77b1418bf9d
MD5 f995b725640edafb231b9ad5b4d39447
BLAKE2b-256 3cba93b87c9424322f1e27f252d9cb1a75e466ed550f0a57c4319ea18eac89d2

See more details on using hashes here.

Provenance

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