Skip to main content
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.

Download files

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

Source Distribution

aioesphomeapi-46.2.1.tar.gz (247.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-46.2.1-cp315-cp315t-win_amd64.whl (636.7 kB view details)

Uploaded CPython 3.15tWindows x86-64

aioesphomeapi-46.2.1-cp315-cp315t-win32.whl (576.9 kB view details)

Uploaded CPython 3.15tWindows x86

aioesphomeapi-46.2.1-cp315-cp315t-musllinux_1_2_x86_64.whl (761.4 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ x86-64

aioesphomeapi-46.2.1-cp315-cp315t-musllinux_1_2_i686.whl (742.6 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ i686

aioesphomeapi-46.2.1-cp315-cp315t-musllinux_1_2_armv7l.whl (732.8 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARMv7l

aioesphomeapi-46.2.1-cp315-cp315t-musllinux_1_2_aarch64.whl (744.9 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARM64

aioesphomeapi-46.2.1-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (752.0 kB view details)

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

aioesphomeapi-46.2.1-cp315-cp315t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (712.3 kB view details)

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

aioesphomeapi-46.2.1-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (735.9 kB view details)

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

aioesphomeapi-46.2.1-cp315-cp315t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (729.8 kB view details)

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

aioesphomeapi-46.2.1-cp315-cp315t-macosx_11_0_arm64.whl (677.5 kB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

aioesphomeapi-46.2.1-cp315-cp315t-macosx_10_15_x86_64.whl (681.2 kB view details)

Uploaded CPython 3.15tmacOS 10.15+ x86-64

aioesphomeapi-46.2.1-cp315-cp315-win_amd64.whl (597.5 kB view details)

Uploaded CPython 3.15Windows x86-64

aioesphomeapi-46.2.1-cp315-cp315-win32.whl (535.0 kB view details)

Uploaded CPython 3.15Windows x86

aioesphomeapi-46.2.1-cp315-cp315-musllinux_1_2_x86_64.whl (757.6 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ x86-64

aioesphomeapi-46.2.1-cp315-cp315-musllinux_1_2_i686.whl (736.7 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ i686

aioesphomeapi-46.2.1-cp315-cp315-musllinux_1_2_armv7l.whl (719.8 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARMv7l

aioesphomeapi-46.2.1-cp315-cp315-musllinux_1_2_aarch64.whl (728.2 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARM64

aioesphomeapi-46.2.1-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (750.3 kB view details)

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

aioesphomeapi-46.2.1-cp315-cp315-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (726.9 kB view details)

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

aioesphomeapi-46.2.1-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (720.4 kB view details)

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

aioesphomeapi-46.2.1-cp315-cp315-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (724.3 kB view details)

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

aioesphomeapi-46.2.1-cp315-cp315-macosx_11_0_arm64.whl (633.8 kB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

aioesphomeapi-46.2.1-cp315-cp315-macosx_10_15_x86_64.whl (650.0 kB view details)

Uploaded CPython 3.15macOS 10.15+ x86-64

aioesphomeapi-46.2.1-cp314-cp314t-win_amd64.whl (642.1 kB view details)

Uploaded CPython 3.14tWindows x86-64

aioesphomeapi-46.2.1-cp314-cp314t-win32.whl (580.0 kB view details)

Uploaded CPython 3.14tWindows x86

aioesphomeapi-46.2.1-cp314-cp314t-musllinux_1_2_x86_64.whl (762.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

aioesphomeapi-46.2.1-cp314-cp314t-musllinux_1_2_i686.whl (784.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

aioesphomeapi-46.2.1-cp314-cp314t-musllinux_1_2_armv7l.whl (698.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

aioesphomeapi-46.2.1-cp314-cp314t-musllinux_1_2_aarch64.whl (747.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

aioesphomeapi-46.2.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (753.9 kB view details)

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

aioesphomeapi-46.2.1-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (680.8 kB view details)

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

aioesphomeapi-46.2.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (739.0 kB view details)

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

aioesphomeapi-46.2.1-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (770.5 kB view details)

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

aioesphomeapi-46.2.1-cp314-cp314t-macosx_11_0_arm64.whl (682.9 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

aioesphomeapi-46.2.1-cp314-cp314t-macosx_10_15_x86_64.whl (687.2 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

aioesphomeapi-46.2.1-cp314-cp314-win_amd64.whl (598.5 kB view details)

Uploaded CPython 3.14Windows x86-64

aioesphomeapi-46.2.1-cp314-cp314-win32.whl (535.7 kB view details)

Uploaded CPython 3.14Windows x86

aioesphomeapi-46.2.1-cp314-cp314-musllinux_1_2_x86_64.whl (753.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

aioesphomeapi-46.2.1-cp314-cp314-musllinux_1_2_i686.whl (780.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

aioesphomeapi-46.2.1-cp314-cp314-musllinux_1_2_armv7l.whl (684.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

aioesphomeapi-46.2.1-cp314-cp314-musllinux_1_2_aarch64.whl (727.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

aioesphomeapi-46.2.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (745.7 kB view details)

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

aioesphomeapi-46.2.1-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (687.5 kB view details)

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

aioesphomeapi-46.2.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (720.2 kB view details)

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

aioesphomeapi-46.2.1-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (769.4 kB view details)

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

aioesphomeapi-46.2.1-cp314-cp314-macosx_11_0_arm64.whl (637.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

aioesphomeapi-46.2.1-cp314-cp314-macosx_10_15_x86_64.whl (652.1 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

aioesphomeapi-46.2.1-cp313-cp313-win_amd64.whl (585.0 kB view details)

Uploaded CPython 3.13Windows x86-64

aioesphomeapi-46.2.1-cp313-cp313-win32.whl (526.7 kB view details)

Uploaded CPython 3.13Windows x86

aioesphomeapi-46.2.1-cp313-cp313-musllinux_1_2_x86_64.whl (750.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

aioesphomeapi-46.2.1-cp313-cp313-musllinux_1_2_i686.whl (778.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

aioesphomeapi-46.2.1-cp313-cp313-musllinux_1_2_armv7l.whl (691.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

aioesphomeapi-46.2.1-cp313-cp313-musllinux_1_2_aarch64.whl (718.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aioesphomeapi-46.2.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (741.5 kB view details)

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

aioesphomeapi-46.2.1-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (694.1 kB view details)

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

aioesphomeapi-46.2.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (711.3 kB view details)

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

aioesphomeapi-46.2.1-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (767.9 kB view details)

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

aioesphomeapi-46.2.1-cp313-cp313-macosx_11_0_arm64.whl (630.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aioesphomeapi-46.2.1-cp313-cp313-macosx_10_13_x86_64.whl (648.0 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aioesphomeapi-46.2.1-cp312-cp312-win_amd64.whl (589.0 kB view details)

Uploaded CPython 3.12Windows x86-64

aioesphomeapi-46.2.1-cp312-cp312-win32.whl (529.0 kB view details)

Uploaded CPython 3.12Windows x86

aioesphomeapi-46.2.1-cp312-cp312-musllinux_1_2_x86_64.whl (754.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

aioesphomeapi-46.2.1-cp312-cp312-musllinux_1_2_i686.whl (784.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

aioesphomeapi-46.2.1-cp312-cp312-musllinux_1_2_armv7l.whl (697.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

aioesphomeapi-46.2.1-cp312-cp312-musllinux_1_2_aarch64.whl (721.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aioesphomeapi-46.2.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (747.2 kB view details)

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

aioesphomeapi-46.2.1-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (700.8 kB view details)

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

aioesphomeapi-46.2.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (714.5 kB view details)

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

aioesphomeapi-46.2.1-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (774.6 kB view details)

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

aioesphomeapi-46.2.1-cp312-cp312-macosx_11_0_arm64.whl (635.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aioesphomeapi-46.2.1-cp312-cp312-macosx_10_13_x86_64.whl (653.0 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aioesphomeapi-46.2.1-cp311-cp311-win_amd64.whl (599.2 kB view details)

Uploaded CPython 3.11Windows x86-64

aioesphomeapi-46.2.1-cp311-cp311-win32.whl (535.4 kB view details)

Uploaded CPython 3.11Windows x86

aioesphomeapi-46.2.1-cp311-cp311-musllinux_1_2_x86_64.whl (773.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

aioesphomeapi-46.2.1-cp311-cp311-musllinux_1_2_i686.whl (808.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

aioesphomeapi-46.2.1-cp311-cp311-musllinux_1_2_armv7l.whl (708.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

aioesphomeapi-46.2.1-cp311-cp311-musllinux_1_2_aarch64.whl (746.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aioesphomeapi-46.2.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (766.2 kB view details)

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

aioesphomeapi-46.2.1-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (707.1 kB view details)

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

aioesphomeapi-46.2.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (740.2 kB view details)

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

aioesphomeapi-46.2.1-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (797.4 kB view details)

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

aioesphomeapi-46.2.1-cp311-cp311-macosx_11_0_arm64.whl (629.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aioesphomeapi-46.2.1-cp311-cp311-macosx_10_9_x86_64.whl (645.7 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: aioesphomeapi-46.2.1.tar.gz
  • Upload date:
  • Size: 247.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for aioesphomeapi-46.2.1.tar.gz
Algorithm Hash digest
SHA256 22b3aecf3b05c14a352c66ddb5de7ec104a688fc754777f1e8fca7c9db87c967
MD5 8f6ca826ae3187a5b5b85645e3b06064
BLAKE2b-256 3a5dbc99ab6a579ae4a6be6d4c72be3e7901d93db79cc8943695add041f84121

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-46.2.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-46.2.1-cp315-cp315t-win_amd64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-46.2.1-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 bd8d2b4eec657ba554e7c1ecd4bdb2b9ee7337f1e414171fb9418f9ca32bc2a1
MD5 ebcc1af32ba6e252f7000a6269290624
BLAKE2b-256 7567489d7a682d82631eb41837ee28c77d3f6dab37b6dd90b9f0f7105023c03d

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-46.2.1-cp315-cp315t-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-46.2.1-cp315-cp315t-win32.whl.

File metadata

File hashes

Hashes for aioesphomeapi-46.2.1-cp315-cp315t-win32.whl
Algorithm Hash digest
SHA256 03e72fcb1f4a1903dfb8fd424cbcb22630feaedce593460fad9133a0f16115b4
MD5 07750c8dfbbb2c6d2be686c6826440c4
BLAKE2b-256 022ff736b72f21ee8373178003719c4387f7e2b727b1aa833fd9310acb17d143

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-46.2.1-cp315-cp315t-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-46.2.1-cp315-cp315t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-46.2.1-cp315-cp315t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1fc61c51644be2574ab41e42212c6883f13c18b0d00d7bf45a053db4f439fd3f
MD5 f8eabd12e0c34772836994cc5fc92baf
BLAKE2b-256 507d160bcc014c450270023b7afe60eb79b1a555912c44380ccb1815dc42d343

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-46.2.1-cp315-cp315t-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-46.2.1-cp315-cp315t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for aioesphomeapi-46.2.1-cp315-cp315t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 36004df058171cd9fa8d42f6c505557ad1925388363c8253f38893fae817c285
MD5 e75e45c70e6aacc4db82f04baea912ce
BLAKE2b-256 e1f66ca24c4f0f1eab9267bdd5dfe1cd54852d5fd9645dec10b0947019abf6db

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-46.2.1-cp315-cp315t-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-46.2.1-cp315-cp315t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for aioesphomeapi-46.2.1-cp315-cp315t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bd98c41b725f4bfdb052483ab3d9b007f7b366c6f67becaf37ab82f97618eecb
MD5 0b6620f932423456959dd05c4a00add3
BLAKE2b-256 e9aa172dc178b32916de7107e601aa471958e81e0105635ce19277fd8b118f80

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-46.2.1-cp315-cp315t-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-46.2.1-cp315-cp315t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-46.2.1-cp315-cp315t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b5cc7c86629ec9e48c3fb92af7e4eb364b9772a4e6ae9aa485b4b7d55bf4347f
MD5 04050bfeb8225a53345dc8300a226ed9
BLAKE2b-256 76c7720acfae3caf42e358d23e47ef7cf2085772b32aeec42f6fde67154b834a

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-46.2.1-cp315-cp315t-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-46.2.1-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-46.2.1-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 21fbc86ad84c8ce002fb5da5b904ea7486951236bad9f541935e3b97a2c2b0b9
MD5 ce9923e661fcb7d7e850f162265cccb6
BLAKE2b-256 87a925072b4cd4d547f4cb55f74dcc8bb4e23af753af546b768079950162f9de

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-46.2.1-cp315-cp315t-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-46.2.1-cp315-cp315t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for aioesphomeapi-46.2.1-cp315-cp315t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 fb3ea5bbd036694b576947a7de33722f1840117936a1b02dbc6d2cc5f6050224
MD5 8517fab186ce1aaadba7893db4ee97b6
BLAKE2b-256 0edb76c5369fed7e0d9f19eef2c3b21b82001655521a054056dbec0327388623

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-46.2.1-cp315-cp315t-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-46.2.1-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-46.2.1-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cefc5cc9bbb44d4c0250dc11f2ad0d144b214add4ac19ba4eaf2fef7e80e4e2c
MD5 279b088933b5c671db63906998b9b8c6
BLAKE2b-256 772e92ccb5f2295a4d7f8f6ceb9a8dd054113a0406384800f0c1e91ea3aeb627

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-46.2.1-cp315-cp315t-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-46.2.1-cp315-cp315t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for aioesphomeapi-46.2.1-cp315-cp315t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 ebe40c031aaee7853a7768cf904801ed03337e814888ca67c861b8933aea12d9
MD5 83d4f79605737cfdf3a49d106301c1be
BLAKE2b-256 f23cf7bc125a229318674f2839bbf90faa12281a5a895990a4a0796e3f6f0fa5

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-46.2.1-cp315-cp315t-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-46.2.1-cp315-cp315t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-46.2.1-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d3aba5e9b4b66aea5ed506a48342a8e922b2aaf6e42b035d2e28516abf0ffc5f
MD5 b96b1354a952c6de909ee317940443a9
BLAKE2b-256 5661dec6c2c2c4868a55d2b512c9dab7afd93ca94463a9b0e5eb33d2ef5ca21f

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-46.2.1-cp315-cp315t-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-46.2.1-cp315-cp315t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-46.2.1-cp315-cp315t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 786ca6ff108785cf75d1517faacd79f4f87664fc803745186f2036934360f8a0
MD5 14431e8c573b9e6fc2d625fc29cb37c6
BLAKE2b-256 d379bfcd9aa0baa2499fbe2da837cd3f41f2b60b75f4110b881efb670c38bc51

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-46.2.1-cp315-cp315t-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-46.2.1-cp315-cp315-win_amd64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-46.2.1-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 f2e6e57c177e8616078e2f4f84f4db267b053ca3e8e54c26ad2247a140fd6fe3
MD5 d3d5567652e259199f8c65f97fea57df
BLAKE2b-256 c304654756a1d26c456b3f75be464e14ca5155220953007e0295c80c637897cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-46.2.1-cp315-cp315-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-46.2.1-cp315-cp315-win32.whl.

File metadata

  • Download URL: aioesphomeapi-46.2.1-cp315-cp315-win32.whl
  • Upload date:
  • Size: 535.0 kB
  • Tags: CPython 3.15, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for aioesphomeapi-46.2.1-cp315-cp315-win32.whl
Algorithm Hash digest
SHA256 dc4a11b97207fa4655eab2784c33ec3440cbab1b7926ec22ec45e9fab7baba38
MD5 f45270fa12c9dffbb621ca4685bc022d
BLAKE2b-256 c3f40a70711c7e329fc4075b6fd6c5bc7b4327acad2e88f85a16d6ec94b34cad

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-46.2.1-cp315-cp315-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-46.2.1-cp315-cp315-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-46.2.1-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d940119c1988b3a343c429d336d1b0186ae0ccd769717b64572305de30fcd7f9
MD5 52521e673df3d1679e9cff6c7274bd8c
BLAKE2b-256 6eb97796b1d64283571ba8928235b719622af5145bddf6e53f3803ddf303e805

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-46.2.1-cp315-cp315-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-46.2.1-cp315-cp315-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for aioesphomeapi-46.2.1-cp315-cp315-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 82a0a565d3ccf5ab27ece620bca39d13961db31af4b2ca77eaf227381dbe2807
MD5 59adc2ff096a80ebf356a7681eb90d1f
BLAKE2b-256 b9b857671ef43c77f3ecc68a3d1389c5ab1cb6b2d15fedebc0dc2ce0baca2b8b

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-46.2.1-cp315-cp315-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-46.2.1-cp315-cp315-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for aioesphomeapi-46.2.1-cp315-cp315-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 72c76ce19de6b5bc4c26a48df7da1929442af28ca90f46ff13a5f52cd03f7f3a
MD5 5b96e87c4b354fca365288ae0b94a3ee
BLAKE2b-256 75ec98c327ae502e342f2375808d58a98a1be6d31364e6168e25e397e6aa5f5c

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-46.2.1-cp315-cp315-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-46.2.1-cp315-cp315-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-46.2.1-cp315-cp315-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 400eef90d10be74d5372f9e0dee5a983998594d4f21240332c907aba6e3e4a96
MD5 807a66a5d3a3344a0a1c6d75b24e9830
BLAKE2b-256 6e17537c353b1574a89d1c275c5e3336419cd36416c64e3d96ad4245c6888e6a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-46.2.1-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f144b064ada61aed620d73317bd1fc96cad75a2b093745d5fe87ccd8500ce21d
MD5 4ee40775e058586f0b5ef49cb82ae5a9
BLAKE2b-256 b99f1dbf1d8eb34a36a96e5a6ba300db1220953c439ee6ffaad6831d25bba731

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-46.2.1-cp315-cp315-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 f52fed54d157fee5f69f593889a5c1b22c0a900c09adb8258e821466268d75b6
MD5 01b4636936b5f798dc412924dcf7c12c
BLAKE2b-256 387726445d93a9fc383ee369d2c7aa48147389aa272c5996a2c0b42307153294

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-46.2.1-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6e619c0070e4882ff57ee62d54baf3b071154479dacc622a263be08a1fe094f8
MD5 366859bed1e4fae6bda0e84c4bdb9314
BLAKE2b-256 8d64057fb6567097670959cf2ddbe9db754910fedb37db666ee261d5444cde42

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-46.2.1-cp315-cp315-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 3e963c4d7a55506eaa7347d0e657f9bef3c78b90bce78262163b3ed3a8df3b57
MD5 9768ad91570a3217fd9682ccca1da334
BLAKE2b-256 23cb0c0bc802052827167cc01df9d1cabdae387545f0130738323c9a3a4a499c

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-46.2.1-cp315-cp315-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-46.2.1-cp315-cp315-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-46.2.1-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b12db90e54db482efdfebd63dcc8f3f4b1eb4bb300a7d483c84389698409ddd8
MD5 383e08c0e7c25a4287dd98a17952a403
BLAKE2b-256 96beba353fa95ca19bd06271be4d2bb7e1696b3f5f5c67cec15f4160a354bebc

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-46.2.1-cp315-cp315-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-46.2.1-cp315-cp315-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-46.2.1-cp315-cp315-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 83ca2ba99e51d53fb43a7c17a4e62e631b2df33418df3f03de31295d896cd5e9
MD5 022ae26dc94f2f03d412e3a8cb95a700
BLAKE2b-256 c80f73858cf41129a5ccadc3419ecc9d0e166c296f0de24639dbc19c744c1811

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-46.2.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 683226a0c49b78f923395c5b934dd7ffa012d73c06e39ee853cbdc6ab8147034
MD5 83f88ac42a7798b2af95fad665877e48
BLAKE2b-256 f16bb0cdff924c6424a40b4f7e05c123036a6b5478caab30c76d4c542adc5ee2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-46.2.1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 df485497cf55f33cb8864f2a9f524169f22d485612500150f71724ab23a81985
MD5 ff2eff10ead89700a44662d8394515b3
BLAKE2b-256 404ec7e31426f1850ae3d2a53d9f4fbe4d153a163d81300cffa1793e46af1a2b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-46.2.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b27c4f1453f6a61ef2c7a1a1c34ba337d734b9b9e076349a054c4f91378f9c08
MD5 24fb0727b869acb2495caa1cb9813654
BLAKE2b-256 bb0afba3cb7b5f197cf6d3b5d9afb239c12a8f16e7429161d0c6d65a01897e1e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-46.2.1-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8ae50c90e14fa89197f96f2564c12801f81c77d33aa90bb4b1a9335a100d5621
MD5 d685e7c9bdc7ed7a8a3e405f543b4f14
BLAKE2b-256 61a5b976e33ca2580c192034fe2edbdb7e29b468a06675c1e4b259e7cda9771a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-46.2.1-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 829a343882b095fedee5619f4cd39c2a72cd80d89c949445f6d16221b3df0e6e
MD5 0fc24c35b33643da1bc1eebd108e2a0a
BLAKE2b-256 7a4bf510c646c4a772f1755b42586a33c10036e7d1bbf661d4bb6f9bfec46b17

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-46.2.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e5dd6c8ea3dc58b532c8d0a3a93d8f0a9f4631516eae46f68452ce68340839a3
MD5 d8fe19dd0516a656026036517d9f3977
BLAKE2b-256 23ee4651b3e7f3a05fd869b0f5c6774677ad12f3506706b96b9e48ecc9e34eab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-46.2.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c9badbc7f280f29e823583d7a9d56ac5e222e627d5f5742f8fdeefd56c72325f
MD5 2bb0d2ba5adda3f1d6d19beb29ad567c
BLAKE2b-256 38a6ff7b41aa081a9d4e6d903b1549f701f6315ed703cea907d4ecc2bfae4129

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-46.2.1-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 6466999ec86294aa95d498da4d63619341d5cc3a24b65b47ccdbd8a2a9df1ac2
MD5 217b0792ea2012fd283328d220ce865b
BLAKE2b-256 73ec960fbed6e1447c74693f01a0b868ed8d4e22182065b2a54035c657524d0f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-46.2.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 930409200a3bcf65baacf3230922b2c3027444b728342ab9ffa3dea51a1fda16
MD5 5f4e43956f25a620347a5da5f158b946
BLAKE2b-256 9d2f754b78ef252097c310765991fa2524ab142d87fa150c0e5d5ddac83717c5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-46.2.1-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 0a4f01d72df8116eb8b95c29c408c35e6053d4850db0ce0b4b4a00bb20baa3bb
MD5 ac84047fdf4f23fc3c6ae6673ab52e4f
BLAKE2b-256 f50bf3bba5419792a6d28a450061b6f5f220fccd0d76a5d9683d19121cd4e0f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-46.2.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d09572cc9c0c94234eb69475c2e24d129dce46a67bf915d70fbea7272b1c9dc4
MD5 05a95eea8f877126be2336379ecec585
BLAKE2b-256 8b7338a9cea70d67825c8a34a9eefb8308b234ee0ca8322fc087b96e3b89d886

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-46.2.1-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 6a0eb3e937ed4f881d88999b9ffbf768a66d468b69bec817152945dddfd7ed52
MD5 1bfb28b1f3e0a51a286e214ef26b5266
BLAKE2b-256 37621c9f0be7e93a862ded0511be8014c759bbd8dc413a7e135847319efd4f6c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-46.2.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 79c7f55dfe0f50b75b3dffb25b19f89ac5d977e912b9faf20ea16a6e2ce269ac
MD5 1bd15af3f888279250a32749ec097463
BLAKE2b-256 70d334a6acf30ab6dca43aa05bcc81194e6cfb07d1deb0a5837cd4c5c5492a76

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aioesphomeapi-46.2.1-cp314-cp314-win32.whl
  • Upload date:
  • Size: 535.7 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for aioesphomeapi-46.2.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 d6fcd055e9452a7e0a1bc5238255cead48191e01ddc22b74e63195d2d0877760
MD5 641b3dd85af8a970233a7d48d9ecd37a
BLAKE2b-256 0f4081c3e916983fe7d7877ffe9836173ef0da0513dd4677a671d75cfb813a5c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-46.2.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 daaa0fd6737d078d22edde5e1cae6acfa36613afdd6bb074780dcf920e17a429
MD5 093906ba8866546f3618a05e19df55ce
BLAKE2b-256 4aa8a84d9bc7e80f70964c0480d6da3aada5019ae358b4d4b69c8be7efac1abc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-46.2.1-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5214107d7c3cbe64f973bc0fa4414d262ac04eb6f77f6464e5875fa36b8971fb
MD5 3201c09ee7ab667b60db912cb5ff9b6b
BLAKE2b-256 f460bc620e1a5a8413c9badafc5a48c2d949cb330dd17df1d70eef28669c9da7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-46.2.1-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 49e2c3c2b80ae92549b0d2e955c6ea9d6dca73b8cef4e516d6f567ede4aea371
MD5 83ff293e9881f0edab96bde91deb3889
BLAKE2b-256 a51c72c3297b4fb8eac2d4cc3bca9d28fd73365a88b420a66c730e9a6e6a312f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-46.2.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f2324e7a49825e6bcf431a4a5582e2fa0bac3a1a7edd05d34b248bf84676e91b
MD5 b0ba4f209a0dedbc0524601b93f51c86
BLAKE2b-256 cf546ae1b16d4233726eb2dd3c9a57b714f8bb55a8f82fd1efbb3bb9d9ee1acb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-46.2.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 afb305f567885be6c936a9c8ccd1ec00485b07e50fbe7d8da68f5c4633b6c685
MD5 a99cab19c42771fa23e0e41e12bc8391
BLAKE2b-256 426c4032d19a389d0949e4f0b3f64127d49f4c529bf829a045aa8adfabd3aa95

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-46.2.1-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 35502c7a60b964ba356d267743c5f4f2f1ada2ebc96cc9295cb3468b90d766ef
MD5 5ad128e82902bcb1f0e63b0b3cef85f9
BLAKE2b-256 61437e4123d4b3b5a6a7dae698cdea820038e30fdfe88e336a18df852dba5db3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-46.2.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b7b5d8d0c8e4597eb6458d0c213f3ba88930e49f58f2ceedd7f76a1ae0183adb
MD5 2df72e54963da2301c18cd633e3120fa
BLAKE2b-256 5275b94fdb4d15162c8528e3dceba70201b480ae387252caca0701199a5cc6ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-46.2.1-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 ed864088a8a2dc121faae7caf2c4ea5df73ff4389a965148fed6f836cf2b8f12
MD5 c3f313ed923a42f09f46f7bce1f0e7a2
BLAKE2b-256 f980b9f3434e5aab814ad15c39a9104785bcadcb072177f513d8f2aa2345e51e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-46.2.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 46e7f1a491f6f98f47cca30a81376c9e8692a6dea2f9b2500a34ed437acc2af1
MD5 79410014c0625a26ad250f83915d40d8
BLAKE2b-256 c3637d8af16e43e6a829ff0d86f23e86e7b1b4d082939f3c9ca8cbee593ee86c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-46.2.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 d5c17f186d249ccd08b2c0ffbc19e8a263ff981886112b057484ca77916ad04b
MD5 a904447ec05615812aa7eeb6fffdc4ec
BLAKE2b-256 0a34c01f145d99da6174d59c1b1471a1fffa73953924e40eaddff791311c8a86

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-46.2.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8e689332ff488e64803d702e45ff50b61d61c602d93caca3dc2d499f801784dd
MD5 571588632ed72b0c12c2133d19f5101d
BLAKE2b-256 267a04b71c7d98085f83feddc7072405ac9db68a2a1100d61c90f352d9ea0fa0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aioesphomeapi-46.2.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 526.7 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for aioesphomeapi-46.2.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 b56d1e82d7d13ad4c484801015e23df747a7987f089e28753a1585aa189d4272
MD5 ff2d92a1ee7f9d2ad77985eb05a41d9f
BLAKE2b-256 43547d22acc8347585339aa854ef8d2fb5039c508132c76c0a9287962f3eede8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-46.2.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 25e5fc6e9b6ced160242476d2769b4cab9e46c9da925ba4358f4d3acfbec25a0
MD5 3a762d1f92b216bbc3f3ff773c5fd4e1
BLAKE2b-256 54805296b16c3f9d3694b285435f797feaaa43b3ab306752ad26561f7c73ea34

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-46.2.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ff12eac09cec75b0e8253145382f568ba4bb59db63594eb9c80e73cdcbefe71e
MD5 0dc6f93f08303681bf9264b2d6ead172
BLAKE2b-256 6161efefc2744d7279c613ad6df60a3c9809c1c1a5b6e856198a7cda97f2949a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-46.2.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0785ec7253a0ebdac59cf18ae83c58431ae4a7d19bcbba9a0e5aaeae1086f419
MD5 b2dbd3607e7888041c69171c3136df8e
BLAKE2b-256 41793c284756a46660f4a2cd32d76d9cb2105d88f543ac647d7926fc9929b701

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-46.2.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 896b398514f040700ee4f0104355ed81f6b3af8ed7a42fba888ec5ddeae07f49
MD5 ef3d3e161752da52c0600afabb541f75
BLAKE2b-256 5be62ee966c4e0c512c3296add9808f71380428ff2432d284f0e925e09d20b02

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-46.2.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 43646b9c5d68a3f60161728143af06ebbf7efa0300e351b80bf1740af95a1448
MD5 df8ab36ca4c438b374c922be0bca4b53
BLAKE2b-256 6b60745edbdb5e9f06a1c2ea764b57916cf2ea77d96df0a798b34ae713b17d29

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-46.2.1-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 ef9e993c0158be473c9d839db8e8610df8bfa8261d60c9b5e49d5ca6aff1a918
MD5 28e688fd2bd5c17f70834d4cb4515051
BLAKE2b-256 72c7dbe0f00fa64ecd916dba77b7ecb2483e39817819ef856070afb7c3a3eab6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-46.2.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ec847a8bfbb27f3a120894913687261e5f8c940d1dad492c4f89323a6af1e9dd
MD5 fefc59dae4da6cf45929aa164deac2f6
BLAKE2b-256 ab1a1bb4f433f6b15cd4d03b92c0bc2adbd7c1ae1ac4d96ed15647ae83d6a351

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-46.2.1-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 9afc2e64971d7f0b17fd52a3c8ef996ca164f03df119676aee37c5d90592b0ab
MD5 602d66a64cfd799467a24619b9c3cdac
BLAKE2b-256 aa00ff541b8668859321123e33025671b5245941dd4642fc26f64ae7783c82d5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-46.2.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 265f681c68f16b1918cb77f6e99e671713e36fe2a3ac6221e022b9dff78ffaae
MD5 f1c6e4cfe58ab16de7e48bd97e659bfc
BLAKE2b-256 fc6015001bcd3b540201436ce191f865831941441182595f039f7b8ea12f8a17

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-46.2.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 2a8e1df44137761d536ee392c8c6a51994723c89eac68bf6304123caeb413437
MD5 8209f87d3550bca9a9bb907075324f8a
BLAKE2b-256 dce3df99acd1248fe060cf2524f1d0c023e5d79717caedd14a7fa08b793a8fae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-46.2.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 12da22e7d5a87f6315a607049217985ce8debb9f72d2c998c34c1bac030f83c4
MD5 4e5e4005e41a6afdfe44613392a366ce
BLAKE2b-256 26e2be295ac674f8f7a81856ba452846562e5dcb33aae306ec89771043af680c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aioesphomeapi-46.2.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 529.0 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for aioesphomeapi-46.2.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 6043eb90b00bd96de5a0961771f2d09316222cef070b771bf5c815bdd5a281c5
MD5 d8ff324986d3d807df351a0b454f2284
BLAKE2b-256 c36ee6a3133f240a3ed1f14fc15bb9bfaf03bbbd237c9cbf902d74593a77f87e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-46.2.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 befcbfc65fc8ab8a3f57e98063c6adaf5fda7c605c2e3408e742462ffd28ce79
MD5 9348761a1afc02bb2b0a3e5dd2de17b5
BLAKE2b-256 d129277f5a67fe3b23f5080f6cb7010ef51920705b720a8d481387e97d0fc67d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-46.2.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 61c6a79f41e6f4c2f220b668e3bfd1e0bd19b0c0a9d1bdb8a19224f31132b01f
MD5 2903a0ef67b049c6d8d44b7e8a9a2256
BLAKE2b-256 9c601010e659ffc4ab967a0edd127c2d662f2fb0a234ef30f4bd0cf63f2f1441

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-46.2.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ce9a46190d6bde8e8ca5a736b0769812052151d168bfef46c20866f270518add
MD5 bc1eb21a3550ca1f981b15f8257f1a45
BLAKE2b-256 6b2bc5fc4c0c947b1ca540a0defd67575c1fb540c25b562c87a33b09d26bd2aa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-46.2.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a30a45168390279791ecce57d94a1c371c36c17743738c1b310c22b1a0d0889f
MD5 1047fecc9f6227970722bde2fc6a0ad9
BLAKE2b-256 2657d82c2a5f0c7a2c8daf549eedd3d5c49d3dec24c02600981a93e335c59846

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-46.2.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1890ef0933a6d0fc312a58c533800a42b053750d68e30c03732a028cd5fb5716
MD5 19ff6b6e4c2ee535da2620a4d570a75b
BLAKE2b-256 26f2022c19b6d4dc633669d56e61898a232e1b02e117564dca022a34338c42ed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-46.2.1-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 0c7a9c898641d19cfcf1ceb219ba29b438ef43ce403b23ddc55d31f0f7c2de31
MD5 d1ae1ff4197e29242d443ddfe12edd87
BLAKE2b-256 86a7119408a2259cb3fc61d18401dc08fdd189498431312016ab99ecba6c4fee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-46.2.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5442bd452422b5deb8a8a310e5211f0f02e0b6cd9c0b2f0d27bb92e5597c8dca
MD5 b4657b5f96ead2099c31518c9abf405d
BLAKE2b-256 27aaa6a1af7e3ef5372bee4a0b0522fd5c9d4a37fb615aade83bfdc9e7666062

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-46.2.1-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 bb3eddff94b522736c3d0eb90c7bbf3088c7cc091bb08a983785315935d277dd
MD5 7b224712e72ca0435aa0a59f3a0213d7
BLAKE2b-256 a5f7f402be9c172e1da21f63a32809894b2dfab62ef83a00ff67682bb5496428

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-46.2.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6e50a30d53c73d6a6feaa9458f9cc3fb54298b207a5efecbf010632d13bffcd1
MD5 1a0f372ce2bbab06c93a0e199f492651
BLAKE2b-256 c745056f354521c6bf759f1cb897c30e9a415bcc4fc458d6f38caac90d666b41

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-46.2.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 bb3775f618f44404b6982144dc01a9c833cf755a7e8272cd7145014f2ff94d37
MD5 7cf6b2101f9270a4a6496699d949f26b
BLAKE2b-256 61e85ab5c37f87151949918f7d79676a4fab97d89e251c276fe0cedaf4f84f39

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-46.2.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 35f0b2d8a109efdeaf39eb70b59591a3f6f6c4b59f3841995b7be0446d7b6f79
MD5 06e86c52dfdc15abdc68b3a058e5d073
BLAKE2b-256 fc211c88af5cfda9f20a1045eea5c731282b0cf436745f55f414a6e06ba3c445

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aioesphomeapi-46.2.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 535.4 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for aioesphomeapi-46.2.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 78fcf338ba8d7945cbf89d9ae58ad96e42dfc8db21df4965c8cf31f579dee207
MD5 75be00a479009599b927523a5c749712
BLAKE2b-256 87cb196a2318d31114546f4f2a91dd750503736db24f98b5e8869ceb0f0172f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-46.2.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 659e1a627c1189a4e1ce435dd285b4841021370caa2f9972cd7c6dd39a12a2f1
MD5 2f4c2acaee33871d9781ba9c21fc70e5
BLAKE2b-256 663eaed97bce15224de66c09493d89ec4fb5c371d98ba65aa61f67f71a2bd1b1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-46.2.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 81fe87da7849393edc13b1fde61ecb629732342483a578cc4169cd0f5aacb1e2
MD5 33601246704cc0abc955d600067fc5f8
BLAKE2b-256 d6634b797e1e6cdc5f20e63908998e357f1f50e6eba8d30bc28ee51956aa6aa4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-46.2.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a363488c9dc435bdf5f6c8bc36305bcdc4d475c26ef7e040d3c96fdb2a88a1d0
MD5 71c66b60b22705049c5df53f86a861db
BLAKE2b-256 4a078ac00befcd85a2b775f9c36cb947b4cada258159e20547eb8a9bf88aea8b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-46.2.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3f67a871a4d8f42daab30b73be4f961fec9d4dc570b0b936fa13437caf0a725d
MD5 914a5fabaae8574e8656a4fe9147c17d
BLAKE2b-256 a726da0710c3c96f5888c4c8dfbe1578cc182b202994f08f83100052da951e5c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-46.2.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bb5fce5ce5222cd0e645202dd30ad04e1788d82f5d7a267ee85edb7af3fdaa37
MD5 96da41a193640e1c5736124e0e904492
BLAKE2b-256 ed28873f76fd1125c6c3ccefda16ced77900406d878a128bf9816fa143a2745d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-46.2.1-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 0ff2fca7d4fb394de53a0941054e6b6ab326ccdde4844c1210ff9e1b5c0a1b89
MD5 2a48bae057c1f48b1da7aec6106aa594
BLAKE2b-256 483f4032b934745c91f32048c62daa32e2fd0c48c6c3eea56a6c56c788f180f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-46.2.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 02ae48518fc18cf3a08be18c642fc95c5366626572ce19e2f007daa61172294a
MD5 2cf6f6a3d816f51c810095aa6676b14e
BLAKE2b-256 e8fca781465c1ee2ef770a945e5113f08a32e90aea69c7de1707ec87c909e8e3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-46.2.1-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 7ba1184513280bd90533521d11ea86ac4f9289b9def9adf4a176b4f0942da71e
MD5 7b998c254d43102402cf1ce7b8e561da
BLAKE2b-256 30025c9972f4207846361d4e04aa6e4eecc86d2e35dfa44efd243bdc9b2f2c82

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-46.2.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6862e63172a9657463a5e86b890c810f0481bfff49f5fe06b9489086a2f80c80
MD5 171e7af50925b83ac60c8840cf16917d
BLAKE2b-256 e07a236b788dcc82ae568282320aab1a578d53f766fe265dfb80967acef43ec9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-46.2.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1a8c9d612c6044d2c5bca0dd5efef35135b96aa6b824248eead9d0e567b71c2d
MD5 c67247dd0cca9a0819cbd1472b5f4f7e
BLAKE2b-256 8b287ee471eefba788d0e418f64a05ee138e141c262f290c2dfbc09844d251a0

See more details on using hashes here.

Provenance

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

Release history Release notifications | RSS feed

46.3.0

85 files

This release

46.2.1 This release

85 files

46.2.0

85 files

46.1.0

85 files

46.0.0

85 files

45.13.1

85 files

45.12.1

85 files

45.12.0

85 files

45.11.0

85 files

45.10.3

85 files

45.10.2

85 files

45.10.1

85 files

45.10.0

85 files

45.9.0

85 files

45.8.0

85 files

45.7.0

61 files

45.6.2

61 files

45.6.1

61 files

45.6.0

61 files

45.5.2

61 files

45.5.1

61 files

45.3.1

73 files

45.3.0

73 files

45.2.2

73 files

45.2.1

73 files

45.2.0

73 files

45.1.0

73 files

45.0.4

73 files

45.0.3

73 files

45.0.2

73 files

45.0.1

73 files

45.0.0

73 files

44.24.2

73 files

44.24.1

73 files

44.24.0

73 files

44.23.0

73 files

44.22.0

73 files

44.21.0

73 files

44.20.0

73 files

44.19.0

73 files

44.18.0

73 files

44.17.0

73 files

44.16.1

73 files

44.16.0

73 files

44.15.0

73 files

44.14.0

73 files

44.13.3

73 files

44.13.2

73 files

44.13.1

73 files

44.12.0

73 files

44.11.1

73 files

44.11.0

73 files

44.9.1

73 files

44.9.0

73 files

44.8.1

73 files

44.8.0

73 files

44.7.0

73 files

44.6.2

73 files

44.6.1

73 files

44.6.0

73 files

44.5.2

73 files

44.5.1

73 files

44.5.0

73 files

44.4.0

73 files

44.3.1

73 files

44.3.0

73 files

44.2.0

73 files

44.1.0

73 files

44.0.0

73 files

43.14.0

73 files

43.13.0

73 files

43.12.0

73 files

43.11.0

73 files

43.10.1

73 files

43.10.0

73 files

43.9.1

73 files

43.9.0

73 files

43.8.0

73 files

43.7.0

73 files

43.6.0

73 files

43.5.0

73 files

43.4.0

73 files

43.3.0

73 files

43.2.1

61 files

43.1.0

61 files

43.0.0

61 files

42.10.0

61 files

42.9.0

61 files

42.8.0

61 files

42.7.0

61 files

42.6.0

61 files

42.5.0

61 files

42.4.0

61 files

42.3.0

61 files

42.2.0

61 files

42.1.0

61 files

42.0.0

61 files

41.18.0

61 files

41.17.0

61 files

41.16.1

61 files

41.16.0

61 files

41.15.0

61 files

41.14.0

61 files

41.13.0

61 files

41.12.0

61 files

41.11.0

61 files

41.10.0

61 files

41.9.4

61 files

41.9.3

61 files

41.9.2

61 files

41.9.1

61 files

41.9.0

61 files

41.8.0

61 files

41.7.0

61 files

41.6.0

61 files

41.5.0

51 files

41.4.0

51 files

41.3.0

51 files

41.2.0

51 files

41.1.0

51 files

41.0.0

51 files

40.2.1

51 files

40.2.0

51 files

40.1.0

51 files

40.0.2

51 files

40.0.1

51 files

40.0.0

51 files

39.0.1

51 files

39.0.0

51 files

38.2.1

51 files

38.2.0

51 files

38.1.0

51 files

38.0.0

51 files

37.2.5

61 files

37.2.4

61 files

37.2.3

61 files

37.2.2

61 files

37.2.1

61 files

37.2.0

61 files

37.1.6

61 files

37.1.5

61 files

37.1.4

61 files

37.1.3

61 files

37.1.2

61 files

37.1.1

61 files

37.1.0

61 files

37.0.4

41 files

37.0.3

41 files

37.0.2

41 files

37.0.1

41 files

37.0.0

41 files

36.0.1

41 files

36.0.0

41 files

35.0.1

51 files

35.0.0

51 files

34.2.1

51 files

34.2.0

51 files

34.1.0

51 files

34.0.0

51 files

33.1.1

51 files

33.1.0

51 files

33.0.0

51 files

32.2.4

51 files

32.2.3

51 files

32.2.2

51 files

32.2.1

51 files

32.2.0

51 files

32.1.0

51 files

32.0.0

51 files

31.1.0

51 files

31.0.1

51 files

31.0.0

51 files

30.2.0

51 files

30.1.0

51 files

30.0.1

51 files

30.0.0

51 files

29.10.0

51 files

29.9.0

51 files

29.8.0

51 files

29.7.0

51 files

29.6.0

51 files

29.5.1

51 files

29.4.1

51 files

29.4.0

51 files

29.3.2

51 files

29.3.1

51 files

29.3.0

51 files

29.2.0

51 files

29.1.1

51 files

29.1.0

51 files

29.0.2

51 files

29.0.1

46 files

29.0.0

25 files

28.0.1

25 files

28.0.0

10 files

27.0.3

10 files

27.0.2

10 files

27.0.1

10 files

27.0.0

10 files

26.0.0

10 files

25.4.0

10 files

25.3.2

10 files

25.3.1

10 files

25.3.0

10 files

25.2.1

10 files

25.2.0

10 files

25.1.0

10 files

25.0.0

7 files

24.6.2

7 files

24.6.1

7 files

24.6.0

7 files

24.5.0

7 files

24.4.0

7 files

24.3.0

7 files

24.2.0

7 files

24.1.0

7 files

24.0.0

7 files

23.2.0

7 files

23.1.1

7 files

23.1.0

7 files

23.0.0

7 files

22.1.0

7 files

22.0.0

7 files

21.0.3

7 files

21.0.2

7 files

21.0.1

7 files

21.0.0

7 files

20.1.0

7 files

20.0.0

7 files

19.3.1

7 files

19.3.0

7 files

19.2.1

7 files

19.2.0

7 files

19.1.7

7 files

19.1.6

7 files

19.1.5

7 files

19.1.4

7 files

19.1.3

7 files

19.1.2

7 files

19.1.1

7 files

19.1.0

7 files

19.0.1

7 files

19.0.0

7 files

18.5.9

7 files

18.5.8

7 files

18.5.7

7 files

18.5.6

7 files

18.5.5

7 files

18.5.4

7 files

18.5.3

7 files

18.5.2

7 files

18.5.1

7 files

18.5.0

7 files

18.4.1

7 files

18.4.0

7 files

18.3.0

13 files

18.2.7

13 files

18.2.6

25 files

18.2.4

17 files

18.2.3

17 files

18.2.2

17 files

18.2.1

17 files

18.2.0

17 files

18.1.0

17 files

18.0.12

17 files

18.0.11

17 files

18.0.10

17 files

18.0.9

17 files

18.0.8

17 files

18.0.7

17 files

18.0.6

17 files

18.0.5

17 files

18.0.4

17 files

18.0.3

17 files

18.0.2

17 files

18.0.1

17 files

18.0.0

17 files

17.2.0

17 files

17.1.5

17 files

17.1.4

17 files

17.1.3

21 files

17.1.0

2 files

17.0.1

2 files

17.0.0

2 files

16.0.6

2 files

16.0.5

2 files

16.0.4

2 files

16.0.3

2 files

16.0.2

2 files

16.0.1

2 files

16.0.0

2 files

15.1.15

2 files

15.1.14

2 files

15.1.13

2 files

15.1.12

2 files

15.1.11

2 files

15.1.10

2 files

15.1.9

2 files

15.1.8

2 files

15.1.7

2 files

15.1.6

2 files

15.1.5

2 files

15.1.4

2 files

15.1.3

2 files

15.1.2

2 files

15.1.1

2 files

15.1.0

2 files

15.0.1

2 files

15.0.0

2 files

14.1.1

2 files

14.1.0

2 files

14.0.0

2 files

13.9.0

2 files

13.8.0

2 files

13.7.5

2 files

13.7.4

2 files

13.7.3

2 files

13.7.2

2 files

13.7.1

2 files

13.7.0

2 files

13.6.1

2 files

13.6.0

2 files

13.5.1

2 files

13.5.0

2 files

13.4.2

2 files

13.4.1

2 files

13.4.0

2 files

13.3.1

2 files

13.3.0

2 files

13.2.0

2 files

13.1.0

2 files

13.0.4

2 files

13.0.3

2 files

13.0.2

2 files

13.0.1

2 files

13.0.0

2 files

12.2.1

2 files

12.2.0

2 files

12.1.0

2 files

12.0.1

2 files

12.0.0

2 files

11.5.0

2 files

11.4.3

2 files

11.4.2

2 files

11.4.1

2 files

11.4.0

2 files

11.3.0

2 files

11.2.0

2 files

11.1.1

2 files

11.1.0

2 files

11.0.0

2 files

10.14.0

2 files

10.13.0

2 files

10.12.0

2 files

10.11.0

2 files

10.10.0

2 files

10.9.0

2 files

10.8.2

2 files

10.8.1

2 files

10.8.0

2 files

10.7.0

2 files

10.6.0

2 files

10.5.0

2 files

10.4.0

2 files

10.3.0

2 files

10.2.0

2 files

10.1.0

2 files

10.0.3

2 files

10.0.2

2 files

10.0.1

2 files

10.0.0

2 files

9.1.5

2 files

9.1.4

2 files

9.1.3

2 files

9.1.2

2 files

9.1.1

2 files

9.1.0

2 files

9.0.0

2 files

8.0.0

2 files

7.0.0

2 files

6.1.0

2 files

6.0.1

2 files

6.0.0

2 files

5.1.1

2 files

5.1.0

2 files

5.0.1

2 files

5.0.0

2 files

4.1.0

2 files

4.0.1

2 files

4.0.0

2 files

3.1.0

2 files

3.0.1

2 files

3.0.0

2 files

2.9.0

2 files

2.8.0

2 files

2.7.0

2 files

2.6.6

2 files

2.6.5

2 files

2.6.4

2 files

2.6.3

2 files

2.6.2

2 files

2.6.1

2 files

2.6.0

2 files

2.5.0

2 files

2.4.2

2 files

2.4.1

2 files

2.4.0

2 files

2.3.0

2 files

2.2.0

2 files

2.1.0

2 files

2.0.1

2 files

2.0.0

2 files

1.8.0

2 files

1.7.0

2 files

1.6.0

1 file

1.5.0

1 file

1.4.2

1 file

1.4.1

1 file

1.3.0

1 file

1.2.0

1 file

1.1.0

1 file

1.0.0

1 file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page