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.1.tar.gz (179.5 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.1-cp314-cp314t-win_amd64.whl (606.2 kB view details)

Uploaded CPython 3.14tWindows x86-64

aioesphomeapi-44.9.1-cp314-cp314t-win32.whl (532.6 kB view details)

Uploaded CPython 3.14tWindows x86

aioesphomeapi-44.9.1-cp314-cp314t-musllinux_1_2_x86_64.whl (655.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

aioesphomeapi-44.9.1-cp314-cp314t-musllinux_1_2_i686.whl (673.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

aioesphomeapi-44.9.1-cp314-cp314t-musllinux_1_2_armv7l.whl (603.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.9.1-cp314-cp314t-musllinux_1_2_aarch64.whl (643.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

aioesphomeapi-44.9.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (646.5 kB view details)

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

aioesphomeapi-44.9.1-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (586.3 kB view details)

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

aioesphomeapi-44.9.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (635.9 kB view details)

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

aioesphomeapi-44.9.1-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (661.6 kB view details)

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

aioesphomeapi-44.9.1-cp314-cp314t-macosx_11_0_arm64.whl (567.3 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

aioesphomeapi-44.9.1-cp314-cp314t-macosx_10_15_x86_64.whl (572.7 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

aioesphomeapi-44.9.1-cp314-cp314-win_amd64.whl (515.9 kB view details)

Uploaded CPython 3.14Windows x86-64

aioesphomeapi-44.9.1-cp314-cp314-win32.whl (459.9 kB view details)

Uploaded CPython 3.14Windows x86

aioesphomeapi-44.9.1-cp314-cp314-musllinux_1_2_x86_64.whl (640.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

aioesphomeapi-44.9.1-cp314-cp314-musllinux_1_2_i686.whl (663.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

aioesphomeapi-44.9.1-cp314-cp314-musllinux_1_2_armv7l.whl (586.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.9.1-cp314-cp314-musllinux_1_2_aarch64.whl (620.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

aioesphomeapi-44.9.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (634.0 kB view details)

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

aioesphomeapi-44.9.1-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (581.4 kB view details)

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

aioesphomeapi-44.9.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (614.8 kB view details)

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

aioesphomeapi-44.9.1-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (654.5 kB view details)

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

aioesphomeapi-44.9.1-cp314-cp314-macosx_11_0_arm64.whl (527.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

aioesphomeapi-44.9.1-cp314-cp314-macosx_10_15_x86_64.whl (539.3 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

aioesphomeapi-44.9.1-cp313-cp313t-win_amd64.whl (576.3 kB view details)

Uploaded CPython 3.13tWindows x86-64

aioesphomeapi-44.9.1-cp313-cp313t-win32.whl (512.9 kB view details)

Uploaded CPython 3.13tWindows x86

aioesphomeapi-44.9.1-cp313-cp313t-musllinux_1_2_x86_64.whl (652.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

aioesphomeapi-44.9.1-cp313-cp313t-musllinux_1_2_i686.whl (672.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

aioesphomeapi-44.9.1-cp313-cp313t-musllinux_1_2_armv7l.whl (601.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.9.1-cp313-cp313t-musllinux_1_2_aarch64.whl (641.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

aioesphomeapi-44.9.1-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (644.4 kB view details)

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

aioesphomeapi-44.9.1-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (584.9 kB view details)

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

aioesphomeapi-44.9.1-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (634.6 kB view details)

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

aioesphomeapi-44.9.1-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (660.5 kB view details)

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

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

Uploaded CPython 3.13tmacOS 11.0+ ARM64

aioesphomeapi-44.9.1-cp313-cp313t-macosx_10_13_x86_64.whl (570.7 kB view details)

Uploaded CPython 3.13tmacOS 10.13+ x86-64

aioesphomeapi-44.9.1-cp313-cp313-win_amd64.whl (506.4 kB view details)

Uploaded CPython 3.13Windows x86-64

aioesphomeapi-44.9.1-cp313-cp313-win32.whl (451.5 kB view details)

Uploaded CPython 3.13Windows x86

aioesphomeapi-44.9.1-cp313-cp313-musllinux_1_2_x86_64.whl (637.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

aioesphomeapi-44.9.1-cp313-cp313-musllinux_1_2_i686.whl (662.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

aioesphomeapi-44.9.1-cp313-cp313-musllinux_1_2_armv7l.whl (592.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.9.1-cp313-cp313-musllinux_1_2_aarch64.whl (612.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aioesphomeapi-44.9.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (630.5 kB view details)

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

aioesphomeapi-44.9.1-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (587.3 kB view details)

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

aioesphomeapi-44.9.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (606.5 kB view details)

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

aioesphomeapi-44.9.1-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (652.9 kB view details)

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

aioesphomeapi-44.9.1-cp313-cp313-macosx_11_0_arm64.whl (523.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aioesphomeapi-44.9.1-cp313-cp313-macosx_10_13_x86_64.whl (536.6 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aioesphomeapi-44.9.1-cp312-cp312-win_amd64.whl (508.9 kB view details)

Uploaded CPython 3.12Windows x86-64

aioesphomeapi-44.9.1-cp312-cp312-win32.whl (452.2 kB view details)

Uploaded CPython 3.12Windows x86

aioesphomeapi-44.9.1-cp312-cp312-musllinux_1_2_x86_64.whl (642.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

aioesphomeapi-44.9.1-cp312-cp312-musllinux_1_2_i686.whl (666.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

aioesphomeapi-44.9.1-cp312-cp312-musllinux_1_2_armv7l.whl (596.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.9.1-cp312-cp312-musllinux_1_2_aarch64.whl (617.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aioesphomeapi-44.9.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (636.7 kB view details)

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

aioesphomeapi-44.9.1-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (593.8 kB view details)

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

aioesphomeapi-44.9.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (612.5 kB view details)

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

aioesphomeapi-44.9.1-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (658.7 kB view details)

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

aioesphomeapi-44.9.1-cp312-cp312-macosx_11_0_arm64.whl (527.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aioesphomeapi-44.9.1-cp312-cp312-macosx_10_13_x86_64.whl (542.4 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aioesphomeapi-44.9.1-cp311-cp311-win_amd64.whl (510.7 kB view details)

Uploaded CPython 3.11Windows x86-64

aioesphomeapi-44.9.1-cp311-cp311-win32.whl (460.9 kB view details)

Uploaded CPython 3.11Windows x86

aioesphomeapi-44.9.1-cp311-cp311-musllinux_1_2_x86_64.whl (655.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

aioesphomeapi-44.9.1-cp311-cp311-musllinux_1_2_i686.whl (686.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

aioesphomeapi-44.9.1-cp311-cp311-musllinux_1_2_armv7l.whl (604.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.9.1-cp311-cp311-musllinux_1_2_aarch64.whl (634.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aioesphomeapi-44.9.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (648.2 kB view details)

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

aioesphomeapi-44.9.1-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (602.1 kB view details)

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

aioesphomeapi-44.9.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (629.0 kB view details)

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

aioesphomeapi-44.9.1-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (677.0 kB view details)

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

aioesphomeapi-44.9.1-cp311-cp311-macosx_11_0_arm64.whl (527.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aioesphomeapi-44.9.1-cp311-cp311-macosx_10_9_x86_64.whl (541.2 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: aioesphomeapi-44.9.1.tar.gz
  • Upload date:
  • Size: 179.5 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.1.tar.gz
Algorithm Hash digest
SHA256 93ec577a6088d5af883a79f8db10ddcc75032e176b549c30abebf2d2116b3c44
MD5 ecee28211f65a6fb020dbe746f0dfbbb
BLAKE2b-256 8861a41181332986a228c2aba5e6a0520cf77f762dd6fd0477ccbe4173d9d49a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 f16b3df976733eea8dd0daca8900c459f141d59e8ac0e128b6eec545d190a586
MD5 e60bc8718a18fa6d296f6d505f189eda
BLAKE2b-256 b66e96f25d6d8d47ec6a944e4bdaa0761b0704ac85d16e854d0ec5fa4c337c91

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 020b2ec69c308e87997bb59dfd1cdc3775d0174db0c096b80853cbf2d7f01656
MD5 a7f30da1a84c04c12b20fb32679114e5
BLAKE2b-256 96b42dde59d6e51704cd360b52d38d0af12bc75a51b20901b178e6e33a380819

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4c83b2151a82f35b57583deb5f9e1046aee68a2db795ed8ff5ce5ee27148e8a6
MD5 10c643cee9e3a89adc947aa199aeb650
BLAKE2b-256 765e32c23db0161d4563d51bb7e27c4f1860cea441f3811fa0c38b8ef4b80625

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.1-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6dd1190b31416565b88916966defa5a905f5456b65c39029f6c233613d61bc33
MD5 f9a3ccc5e5a01d8b21725993b4cad91c
BLAKE2b-256 83f27bee60cefd3bd2d717379dd772b0bc80d9b5f8e11357e50909704336ca6e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.1-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 72424e78da49e383b5da78f2cc7afdc0e4f0a100851d4d14996cb0c08476820c
MD5 26f990896233dde0149f6cf609a7a1ae
BLAKE2b-256 3bbf1377d6d38135205754542e5cc8f4bc805642ee3834ae551c50ff804fff9d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 85dc062ab710ab231249f7a2d4e10c247100af69c8a3ecdb45e4bc1e5705b522
MD5 c3e8d3d7e3481c9f1bd2b735e3ea5f06
BLAKE2b-256 364a87834c6e695e32aa7535b030a56c1f7ad8eb7383690e6bb964d210e567e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.9.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.9.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.9.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5c0d8d17f2032b486bc59fe12f76f294d7faa4836a2eb7b5c08076552a3dace0
MD5 f6f7535b9f0b9cc6bcae8248dac8d567
BLAKE2b-256 9a19c4c3fa846f132897233701c6445037ad2ad3b556e19604b3dc885f86804e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.1-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 1beb5dafd77c81d92f9c989c9c044c69c7edd7c2d8072cb69f13743f3caebb0c
MD5 b8d33fee3bcefb9d2376cb9449b215d6
BLAKE2b-256 636794bd8b398beedcbef0876af83185f08c447ddd7ff61d8c5ee6eda28d5d6f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bafe5ae40c84b7656286e4c6a7295cae4a88700d047c671ee20233e1edf5cdd8
MD5 bce580ddaf7129e0b3e63b5e291a179d
BLAKE2b-256 f425ab4a1c9ad1852b4915824d1c4e65ce06d0f5923115fcef3990dd76106825

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.1-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 b131324683829dccb712e7697882f29bcd4fd94d1d16eee2a78b4f0e0139a855
MD5 daffbd0fd704ff29f24b39ccc26d226e
BLAKE2b-256 0a2e8ddad36224d737cd80d5713a352337607fad51b3912f8dd9408eaba99c62

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 713cb31356560b8ccd35ed4779b7f1748be1f330828300e4e02ec54e72b65f6e
MD5 69f6c1d0bc0d1e5b1fb9dd36ff128218
BLAKE2b-256 8444654c328c4b5a068b89a5d3ed0bc5fe3567f533aa8c8bb53d22a75955307f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.1-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 cf01aad6215fb71d4c4568e004843a16ce21fd567031104316b57c91a7c5397a
MD5 077f7aca049e1eaf37fedc4a40156a29
BLAKE2b-256 ac1398d09efdbad2172829817f21d07cf1faaf1fe5e64da8f96b80f30e6e6779

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 a5aadf393da718d5b0f6e572ef5ad1420cb01df2fa1bfbe665210e75522708e5
MD5 206a46350e990ab3518b99d7a4481ead
BLAKE2b-256 ca36e1fd5fa7d80ba7a34e254c69c07de06a70a9ac93a740e2627cdd499e919f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aioesphomeapi-44.9.1-cp314-cp314-win32.whl
  • Upload date:
  • Size: 459.9 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.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 349ede35169e160261a46c572678505c0c4a405cceb411def111caee8feacafa
MD5 28423698692d07c95d3c56bd6d8274c3
BLAKE2b-256 04f38a44ad5172fe01c539162e93b32aff138a514d751b0919bc824951745c9b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0eabb85913067986cefe53278c2948ed765c74eec6b7fac99d1d8cfb6337b784
MD5 159dcb47789fe5d1c8387e0946bf4a5d
BLAKE2b-256 7d8b0d03329ea52967abb9d428baf957c044873248c9ca4fcc21846b14efe6cc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.1-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e173d707b04f3d38f72ad8160c3fab10b81fcb3199293b41ae2826f50249794e
MD5 d74f50ebd7048f5162a2ea628591db32
BLAKE2b-256 b920c95a56a6f0efe102c82dfc08aaac55da226829a02177c049863b9fce4c5b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.1-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e8a4e7de87390fdce655c2d0d222d4ed0fcf2777abc405705e3010d6fd71a7ba
MD5 966cbca549f5146477290c25c9232260
BLAKE2b-256 bdfeb175ce955514aa37093082d353c8e2b100283c03e4960b1f20f844752084

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3e9b82a46d7835f1b5e6fc849962788fd62d55d113ee751f2d769081ab1c299a
MD5 89bdcfba0b2d4bc533b37532e1ff3b81
BLAKE2b-256 42967d40bc48234f1c2bf2292450f668cf58dc0efe541d0af08d0fd1b2815512

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.9.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.9.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.9.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a041c9a7503221c704e03e96a0a04a796f92edf694a9c8296a6cde223310a2b5
MD5 f7564f048eed74c056f72f54017f5a1a
BLAKE2b-256 b681710831faed09acf4cf773c681f7c06efc602c595a97d9591be34e9907830

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.1-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 d496801cc737c431a4e62fa07a99f5962c42193b40a3315e6e5b3c935108ae21
MD5 6375887c15160eab54ea1f0f5f6cdf45
BLAKE2b-256 f0c657fcbb9443ea0d46fa01f25c3c5ed3750f6a3d8e5a7c7912beec34d670f2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2a205d8bee15dabddda2a25667ce0951f212361a3a2687bb11627824a5e35362
MD5 8ea25c119b50f678181122b1d756a956
BLAKE2b-256 1836295412571b191fb961e1d223b04a9d6ab194d74e14c8378e04c2aa7c8210

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.1-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 fb9d6be96d126cee5c2c4fdc67c391628567a992edaa3c7582644e7dd8434949
MD5 01f3f0112224ef1c2f41af5fefbef1fb
BLAKE2b-256 30a5725221612c60faed8fa43c9a4e09f43a95ceee873942dc784c19bbfeb4de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 48c7868ffcfb50fdf38941144693c24214a0d4cece9a24ba20fb5cc099a9f15f
MD5 58fc4ce860524858ea0ff147016b436b
BLAKE2b-256 098bb6371be2ed35a3c9edd32a0fcb657e750b5e0c0219bad524b507627f9733

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 495bd656a29397eaabaf818eab1e3be79bdd2c4d5b79a1be3d167a7138573a06
MD5 a3ea77f94a3ebc2a92046ef8ae76153c
BLAKE2b-256 6ebad46ee074f0661f46b26134fa1f78a32308e68cf947aff12018364431c961

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.1-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 e84bacf206acabf27f63cb5ee574eee1087c7f27a2d02a920fdfd259d9dfa4e5
MD5 942c3564fc4f4c0d871595a25e6ceecd
BLAKE2b-256 71326418b7283db47fcb4c929da1992f5fe470e6507d4f48d1d0f2245e82c369

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.1-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 479d62094cb54aaa8947f38b9a7bba6a88111d10c9901f4ae83f6fa067449d73
MD5 63557fe4e6da938e3d35bbf978285e1a
BLAKE2b-256 165241f6cf01fcdef0b4275c3d4cc43a6410ccb0cdb6a402d9947f38d58dbf5f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 eae330ffe712fc7c795ae135e434211dea371be543746f484250d489388e5b7b
MD5 a23e8d850de57590aa534f0d97ac46bd
BLAKE2b-256 4764b8f8dd59df48e790aa8f1557bd0c92dd848be8c047183651b7a35d3231f3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.1-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6e22a8fbf8eb543dfe2513bc801d697108c5807b56503878df71d003b8b217ac
MD5 d670432b44ee455a3923b2f2b1c7c50e
BLAKE2b-256 e8c877bfbc1b6a0a331f2fa24f6b6585d791c61339c6c8e749af2f542b4a791d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.1-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 634e41db92a29bbbedd1a04bb9172b82dadff99cd21a090905570ef485b22aa9
MD5 d2b4de7b5adf0dec4802b2295318157d
BLAKE2b-256 059819d87db55376412c44ed9f5936476f4374a3840d818988aeb699674a2f70

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8fad8195c4d6bc263b29cd088c883f74c99a0cf1bdbb1cb5eba3470dd379e883
MD5 fedf9d19a28bf170f9ae73b021ebafed
BLAKE2b-256 c9fd9c77460c08aa18b4f00ca235d039b1c3d9ce9c0b15438e09bba71579fafd

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.9.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.9.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.9.1-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ccb82bcc27178e832454999336416f8327b69e13ebca1372025c4f9840146e41
MD5 b17c0500c4ee9582c53c2789e934a7c8
BLAKE2b-256 9d877fd8cbd5f325f3f999de869ac9c25993035d42037c70bac5bfb713db22f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.1-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 8b20a55a8f25c75b4daa70719dc43ea201b65752da4df6d52d133c4ea025403f
MD5 e09f2dcdd69e361b0eb1c55708a6c7f7
BLAKE2b-256 bc9289daf2ac09eefe914c0f63c4c9d4675c463340ba383f51766969476385ea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.1-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 aef6014421f701f9a8810db14f9c3f948ea03f116d1da6e2384fa26627a818ca
MD5 52faad33c9193944a0f3355506257496
BLAKE2b-256 0005ae58dd820368d722a7c9560d01539aed637e81ed248e2853e9f52ad32cfa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.1-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 f2bfcc1ee104d135e9dadecadfa58ae39245ceaf6c0f7535493b44ee92ab9d0f
MD5 2d69a2d613343679ec1f4c6dae7cc885
BLAKE2b-256 129974f625c3412ced3ab4f1e768a4eef8415be6b2d17a12a96f1dade50c9514

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.1-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c91f495c804ade1cc8d6501b1c77ac65af8f4f7f755a94054c96b3a367621546
MD5 c00e8e6be2b888d31ad25bca704391ce
BLAKE2b-256 b058f945bd670d3a2111fcd2a6ff58c7d83a63454e53bf6b08ab5d13868b9092

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.1-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 57f4fd3161bbfd18fe659552289780fcdcd87aef050fb4668ab5a66b8d794247
MD5 f549406e55262997e3a39eb2b9995711
BLAKE2b-256 0486782fe3a362107142b5554570f51830f0e250676b3be60880c04816c1acd9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 00757ec150d67e7cc8ecea717e418b31abce878d6a805e9f485ce3a47d65b3e7
MD5 b6167fbecde3cc0e78efa2907be14d8b
BLAKE2b-256 eadbfc83d2d98e7d9cbe4b1d78569309830dd01646430520532c15becf086f8e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aioesphomeapi-44.9.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 451.5 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.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 63319b0fdcf0120be9f8eb5cbdd54249702af7fee4957535818b161cf2f7f750
MD5 9f13f665ab37a2abf8c3bfa1ed8e6869
BLAKE2b-256 5c6f7e4482d748bf27ba30beabe314b8b4455f592b1c38566d3abc2c8273d409

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 975c1338c09e578a8e64fbb1735effad306d17ef93618233941603521d69dc1d
MD5 7874a06526b3428178eeb0960e5734f5
BLAKE2b-256 1284fd9c2d2a50f800a9b4cc0a536ac21aceb58e46dbac2dfb0daef0c742f1c9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f8931546e114cf36197d986ff1eb0104014bd6f20e6b71f0e3eedeb701b8b8e6
MD5 41473d148ee6efaf7123c552ed452bd8
BLAKE2b-256 17cd773821d3c47d4f1da95bf619023fdbddba7089eac3c631d39e5e495d315f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7941d33e9f707b222e51f5a8a53a71a58d2ff3afa9425dd6c82d49faf312d6e2
MD5 3e5084fea1d69e702c8ef0baffe395ad
BLAKE2b-256 6a10d127cd438b56bb195a27d81e96746cf5dbac875d4335e64ec490d2396fcc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2f3412e1114afdc9501f98a40f6421180161382857465bba52e43a117d068b6b
MD5 c58484d5b6127da1e31ae862435ebb60
BLAKE2b-256 aa3e1885ac8fc9ffe06538187cea6a2f10f304413e8654f8e5e84cde05add57f

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.9.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.9.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.9.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 755f5cdc48921a52bac85508e2c8864a1951acfb2cf822c4bf3f7bb58129867e
MD5 a08107a6f410895a3979a7d9cacf2b00
BLAKE2b-256 24406eb901c67cbe9349770065cf4442177d5213f86e97e85c6b9ca00f406676

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.1-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 0ac2c7dd955afe20ce3978fd4ff108b9abae802b54df84f54475890c793060b6
MD5 1aecc3b3eb49e5b8992e2af1d2ff21e0
BLAKE2b-256 c8b900b8e35441f481ac1a1594a9d00609044fefcc524a99771de4ae43028ec2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f9b69b1af0e634618ee2e2ae4d550b463e51d2842a31e53703d5484e337c0af8
MD5 b629c0557a696687f20b71c878c0a5a3
BLAKE2b-256 07582d730b5b62d46da5df1c8d999670676e20ac1bbf335e1c186694adedeba3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.1-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 ddc871cf806aed6b9f54ad7c72452e36e3ac46e46d14506ee5f9ef7939a56233
MD5 e6d9ceb21081a04002a86015790a509e
BLAKE2b-256 a0d9b963267af7a9d4ed1e010306d3000f8f8ce14aa9e19f547496bec3dd583f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 837cf782baec69854aad359c00dec36f4958f407e08ef202912afda3f7966a30
MD5 d1c52fc1221673a8ad352c026617b4a8
BLAKE2b-256 33b7d8251faf3c0ae33dc2c419c20ba3c06c20add75181a26663e1382d8f0815

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9c31698cc46c013417b1fb0cec04c186e046397812f797d543a5bf01c7d0b6bc
MD5 18f0616306c895fb68002cfcebaaea95
BLAKE2b-256 6da5f59afa68046711f44cd9ef7327c1e17b864ac34267e280b0b677d3281b37

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 366e83497653ba239b2134bd5155b55301e6c44950fdc48b8f51ea66cf32fb66
MD5 3debf38848fb8abb82f08888be748e05
BLAKE2b-256 d645e31cafd9ea97f67f501019ba6e194df63b19f6c5938bfc86202961bc9361

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aioesphomeapi-44.9.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 452.2 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.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 35129b277979b1310fee74b043bac61b5bdb5998377465d9e33d532cc1d39c03
MD5 6179fa7552ec554986b22af2514e7680
BLAKE2b-256 09f951de4f8fe97e3cf3a79748a61d9d65d21e9359caf0504a2091753ae9ba15

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e8eb6865779e58754cc5f6310e22642e810d29d2c2627f9646da4ce5cfe4acfc
MD5 6712d46e51bd693a73bb40951cff0568
BLAKE2b-256 11dcec7a9434d9cf4ce79f0fc7a7da50ec2cab70771fa19208b913057f3f5698

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 27c590a03bcd587adae135b206d6b2815d80d2edc771334d9b8919fac7fe4f81
MD5 499a9c26180f05b176095b2bd85832fb
BLAKE2b-256 58a3b7ec88892b6e624ef2fbb9d5c32201afa6b3e03efeb605336c6e9385d16c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9d6742d31c0c636e7fcb3d95ad0523ec893473fd5dd6114b1d737d943e837f1f
MD5 15eb3a843b8022be25b0f3864dfe0b02
BLAKE2b-256 d19df6abeae398be55744fae7e7e6bf1e21d738c15124d893270c6b0ee48b71f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 34ee2b9759bef7d16162b53f6ae367e24243a6c40521d9f6a6b57f5f23e22b70
MD5 021c63f19d6140b025e23af3708e8eaa
BLAKE2b-256 4f4bfe02ca38654d609e0ee6f4f2dd7013ca58bee9035d7ded391036da7deae0

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.9.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.9.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.9.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 eb1cc077e612a272fd618142a3f81b26db90920a609d4d9112911e70d33eb19b
MD5 34c66e7fb74d995cf055b0eb61244ad4
BLAKE2b-256 5cc53026ee22c51a1f3254b7735865798dfcb162594eb559de5ce6b95dc0122e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.1-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 d7b993a65edfda344a707ee9e6cb3c66add32216fea3f2e544bcc1aca39d8780
MD5 08f6f9ffef30ee8af30a3fa510c5ce3f
BLAKE2b-256 289b6df1ef4d50e408155334ca07f668923de1951d08fddc3b384e06fb403a6e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5886bca1f91385df8c4d33102ff887b57e57d5431ed0a39e4382fdf9b763b27d
MD5 34ade21f0dcba134a38d8b4c781675f0
BLAKE2b-256 90e30ab120e285e1e51df0b04973b7d1933cea886e2323187f481c7b8e954a3f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.1-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 16b4cb715900181f692758941cc472a983d81e4a75e8cb06c4d297625390b650
MD5 034c00302649f24e25c614fd9893e999
BLAKE2b-256 bdf9089a2fc84d7c7cabd76f35cb9d3c6a3fa1e3b700df88e29c5a07d50c8a8a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 550bb03c911a45e685713d289eb65cd281b6557ca5d7d9f6028dc0afdb33ed9b
MD5 fd6ab87ebc725d85ad73ba51857e4c91
BLAKE2b-256 55f2315f886d81399e11fe577c26e8413070092c3a47cd6b70201be793c0bd4d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 53e8eafd263ca3b162187b596e1a941c0333c3f3e933036bd10ab76ad116ce12
MD5 987e7185ce2384063a19af86a30dc402
BLAKE2b-256 ed0cb77b6e6c522f4849c7a0b6b7d44bc28a30512ad9904d6b3d4cd3ed96aaed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 24ddacc6d70d2af52290a545cbc247090d89b99b5a493c50ab64fa496f4e646c
MD5 e02ca0ad94de6200819a6e93db18659e
BLAKE2b-256 61a83f4ca7f7d414ff0b246d0da1d058262ed1b9a1f8b42ad4bd8e9e8243b788

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aioesphomeapi-44.9.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 460.9 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.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 8289b05c8394106aded0ccc359d195d897a722e3a5a4b73c66fd4a5ee3f20f4c
MD5 dadc7efffd32345fac0ab1ce9545fbf4
BLAKE2b-256 9ac1f137c879f44ef2cf39c6d9f9afcda8c2d94772b5a5c82306f819715db4bc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 073787d5bd545a036e60ccfd3656dec1039173d631288dd9adbef0619d3d5f89
MD5 d339f432d610c044bfb3ca1be10347a0
BLAKE2b-256 2c69caa6964bf1188920c885c1e0e21cac692eb97d39813787dc59c3b3065634

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 718db2ced0ab2926f59e4a66f6c3d12239c30ab4621a45a5630cbdd53f06cbe7
MD5 120357bf32b2d1e08af8d7e34a7bd1b2
BLAKE2b-256 e2aec2189eb1c019204ac8f89e74f9e5e1aba6679950aa0439b2cf92b91c4118

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 aab8939fcaade6ae2466028a2af5120bdb32f0c4349e272288cdfb2c0c11936e
MD5 db7f60a3d45a758ee35cf17cdeaead8a
BLAKE2b-256 1d2aa138e88584414463c523f590f802ea530f0a69131872725a8aa63c8398ed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1244edf3ad52eec6201ea0c4c26fd79656ba44cd0cc7e70008ba481ee941c740
MD5 2b2ccf8783aff20b3fd831846aaad85a
BLAKE2b-256 bc29beda5c01e75a235074fd798c4bdd6f586a4c810ec63dd0a34e8f43e2ae8d

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-44.9.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.9.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.9.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1bc6f2f2c394b242bacb4fea507de5bd8389011c0ad05a17e62c62dc3560ada2
MD5 013fd49c349379dec312c3f149998168
BLAKE2b-256 d13eb5541300f1d136dba4a48a6817897312f5bbb792da950740caf9f3ca3157

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.1-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 533ffe73be807398c69919ad9d8d4d6736006ae9cbfad808b8c81fbb9a9e986a
MD5 56462a6cb8bc815c0c3b406eaa7a3f5b
BLAKE2b-256 1e84e4103fb4b9262b0c97434441de8d93615a21fc3ceb24de7627e6cd4d95e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e3a63ec8d9ff56eed1a875d018f147cfb6f7f04e649de8df74f3fa26acef26ac
MD5 c5c0fa1f13e839c9ff6b77adea1069e4
BLAKE2b-256 468a676f1f985de6408361febd368d91050adc1c906d81d8e2b5c142c9682361

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.1-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 37cd0e028a2e029985eca82f32e4ce48f53a638320abffb74655e958d21b0daa
MD5 8650ddafafe238f3e131893229d2c051
BLAKE2b-256 fec9605fbd3ca3225aab6b0e91eae1a37224061e654ad168386d7131e3ffcca5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a0175858198edbec2772138809659abfc8364005cf489a457a119ac2ea5340e8
MD5 eec3d9e611e87871b9f1b71b3be665ba
BLAKE2b-256 66accc00d8c5272230f86159fb9298685fb064dfa4a73249c74b41c949c34bc0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-44.9.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7d7ad9f12b80a05139a280ccf0e6398aeb6cb210a6a8f3d1d869d7056a0d074d
MD5 bee56e0ab253a6984e1d1b6257c2b313
BLAKE2b-256 cd7e697109d332fe6db444bb574a6e1143c46dbbddab319af293e5b517ff4cf3

See more details on using hashes here.

Provenance

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