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

Uploaded Source

Built Distributions

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

aioesphomeapi-46.0.0-cp315-cp315t-win_amd64.whl (635.0 kB view details)

Uploaded CPython 3.15tWindows x86-64

aioesphomeapi-46.0.0-cp315-cp315t-win32.whl (575.2 kB view details)

Uploaded CPython 3.15tWindows x86

aioesphomeapi-46.0.0-cp315-cp315t-musllinux_1_2_x86_64.whl (759.7 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ x86-64

aioesphomeapi-46.0.0-cp315-cp315t-musllinux_1_2_i686.whl (740.8 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ i686

aioesphomeapi-46.0.0-cp315-cp315t-musllinux_1_2_armv7l.whl (731.1 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARMv7l

aioesphomeapi-46.0.0-cp315-cp315t-musllinux_1_2_aarch64.whl (743.2 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARM64

aioesphomeapi-46.0.0-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (750.2 kB view details)

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

aioesphomeapi-46.0.0-cp315-cp315t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (710.5 kB view details)

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

aioesphomeapi-46.0.0-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (734.1 kB view details)

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

aioesphomeapi-46.0.0-cp315-cp315t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (728.0 kB view details)

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

aioesphomeapi-46.0.0-cp315-cp315t-macosx_11_0_arm64.whl (675.7 kB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

aioesphomeapi-46.0.0-cp315-cp315t-macosx_10_15_x86_64.whl (679.4 kB view details)

Uploaded CPython 3.15tmacOS 10.15+ x86-64

aioesphomeapi-46.0.0-cp315-cp315-win_amd64.whl (595.8 kB view details)

Uploaded CPython 3.15Windows x86-64

aioesphomeapi-46.0.0-cp315-cp315-win32.whl (533.3 kB view details)

Uploaded CPython 3.15Windows x86

aioesphomeapi-46.0.0-cp315-cp315-musllinux_1_2_x86_64.whl (755.8 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ x86-64

aioesphomeapi-46.0.0-cp315-cp315-musllinux_1_2_i686.whl (734.9 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ i686

aioesphomeapi-46.0.0-cp315-cp315-musllinux_1_2_armv7l.whl (718.1 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARMv7l

aioesphomeapi-46.0.0-cp315-cp315-musllinux_1_2_aarch64.whl (726.5 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARM64

aioesphomeapi-46.0.0-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (748.5 kB view details)

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

aioesphomeapi-46.0.0-cp315-cp315-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (725.2 kB view details)

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

aioesphomeapi-46.0.0-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (718.6 kB view details)

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

aioesphomeapi-46.0.0-cp315-cp315-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (722.4 kB view details)

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

aioesphomeapi-46.0.0-cp315-cp315-macosx_11_0_arm64.whl (632.1 kB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

aioesphomeapi-46.0.0-cp315-cp315-macosx_10_15_x86_64.whl (648.2 kB view details)

Uploaded CPython 3.15macOS 10.15+ x86-64

aioesphomeapi-46.0.0-cp314-cp314t-win_amd64.whl (640.4 kB view details)

Uploaded CPython 3.14tWindows x86-64

aioesphomeapi-46.0.0-cp314-cp314t-win32.whl (578.2 kB view details)

Uploaded CPython 3.14tWindows x86

aioesphomeapi-46.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl (761.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

aioesphomeapi-46.0.0-cp314-cp314t-musllinux_1_2_i686.whl (782.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

aioesphomeapi-46.0.0-cp314-cp314t-musllinux_1_2_armv7l.whl (696.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

aioesphomeapi-46.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl (745.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

aioesphomeapi-46.0.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (752.1 kB view details)

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

aioesphomeapi-46.0.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (679.1 kB view details)

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

aioesphomeapi-46.0.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (737.2 kB view details)

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

aioesphomeapi-46.0.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (768.7 kB view details)

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

aioesphomeapi-46.0.0-cp314-cp314t-macosx_11_0_arm64.whl (681.2 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

aioesphomeapi-46.0.0-cp314-cp314t-macosx_10_15_x86_64.whl (685.5 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

aioesphomeapi-46.0.0-cp314-cp314-win_amd64.whl (596.7 kB view details)

Uploaded CPython 3.14Windows x86-64

aioesphomeapi-46.0.0-cp314-cp314-win32.whl (534.0 kB view details)

Uploaded CPython 3.14Windows x86

aioesphomeapi-46.0.0-cp314-cp314-musllinux_1_2_x86_64.whl (751.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

aioesphomeapi-46.0.0-cp314-cp314-musllinux_1_2_i686.whl (778.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

aioesphomeapi-46.0.0-cp314-cp314-musllinux_1_2_armv7l.whl (682.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

aioesphomeapi-46.0.0-cp314-cp314-musllinux_1_2_aarch64.whl (725.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

aioesphomeapi-46.0.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (744.0 kB view details)

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

aioesphomeapi-46.0.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (685.3 kB view details)

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

aioesphomeapi-46.0.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (718.4 kB view details)

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

aioesphomeapi-46.0.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (767.6 kB view details)

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

aioesphomeapi-46.0.0-cp314-cp314-macosx_11_0_arm64.whl (635.2 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

aioesphomeapi-46.0.0-cp314-cp314-macosx_10_15_x86_64.whl (650.4 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

aioesphomeapi-46.0.0-cp313-cp313-win_amd64.whl (583.3 kB view details)

Uploaded CPython 3.13Windows x86-64

aioesphomeapi-46.0.0-cp313-cp313-win32.whl (525.0 kB view details)

Uploaded CPython 3.13Windows x86

aioesphomeapi-46.0.0-cp313-cp313-musllinux_1_2_x86_64.whl (748.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

aioesphomeapi-46.0.0-cp313-cp313-musllinux_1_2_i686.whl (776.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

aioesphomeapi-46.0.0-cp313-cp313-musllinux_1_2_armv7l.whl (690.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

aioesphomeapi-46.0.0-cp313-cp313-musllinux_1_2_aarch64.whl (716.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aioesphomeapi-46.0.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (739.7 kB view details)

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

aioesphomeapi-46.0.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (692.0 kB view details)

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

aioesphomeapi-46.0.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (709.6 kB view details)

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

aioesphomeapi-46.0.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (766.2 kB view details)

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

aioesphomeapi-46.0.0-cp313-cp313-macosx_11_0_arm64.whl (628.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aioesphomeapi-46.0.0-cp313-cp313-macosx_10_13_x86_64.whl (646.2 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aioesphomeapi-46.0.0-cp312-cp312-win_amd64.whl (587.3 kB view details)

Uploaded CPython 3.12Windows x86-64

aioesphomeapi-46.0.0-cp312-cp312-win32.whl (527.2 kB view details)

Uploaded CPython 3.12Windows x86

aioesphomeapi-46.0.0-cp312-cp312-musllinux_1_2_x86_64.whl (752.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

aioesphomeapi-46.0.0-cp312-cp312-musllinux_1_2_i686.whl (782.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

aioesphomeapi-46.0.0-cp312-cp312-musllinux_1_2_armv7l.whl (695.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

aioesphomeapi-46.0.0-cp312-cp312-musllinux_1_2_aarch64.whl (719.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aioesphomeapi-46.0.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (745.5 kB view details)

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

aioesphomeapi-46.0.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (698.8 kB view details)

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

aioesphomeapi-46.0.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (712.7 kB view details)

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

aioesphomeapi-46.0.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (772.8 kB view details)

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

aioesphomeapi-46.0.0-cp312-cp312-macosx_11_0_arm64.whl (634.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aioesphomeapi-46.0.0-cp312-cp312-macosx_10_13_x86_64.whl (651.3 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aioesphomeapi-46.0.0-cp311-cp311-win_amd64.whl (597.5 kB view details)

Uploaded CPython 3.11Windows x86-64

aioesphomeapi-46.0.0-cp311-cp311-win32.whl (533.6 kB view details)

Uploaded CPython 3.11Windows x86

aioesphomeapi-46.0.0-cp311-cp311-musllinux_1_2_x86_64.whl (771.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

aioesphomeapi-46.0.0-cp311-cp311-musllinux_1_2_i686.whl (806.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

aioesphomeapi-46.0.0-cp311-cp311-musllinux_1_2_armv7l.whl (706.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

aioesphomeapi-46.0.0-cp311-cp311-musllinux_1_2_aarch64.whl (744.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aioesphomeapi-46.0.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (764.4 kB view details)

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

aioesphomeapi-46.0.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (705.5 kB view details)

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

aioesphomeapi-46.0.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (738.4 kB view details)

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

aioesphomeapi-46.0.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (795.6 kB view details)

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

aioesphomeapi-46.0.0-cp311-cp311-macosx_11_0_arm64.whl (627.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aioesphomeapi-46.0.0-cp311-cp311-macosx_10_9_x86_64.whl (643.9 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for aioesphomeapi-46.0.0.tar.gz
Algorithm Hash digest
SHA256 b256097cb3e8ea6b4f7e10cce07e5b4ce396477cf732451700948ba4bb825d21
MD5 9dd214bd1fa01fecfcbed3a93efffe27
BLAKE2b-256 6d5ad26670c6d2b7d2d2d59a5c29c6b148ac0ce9c482655c1d4e05a2a4b3d87a

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-46.0.0-cp315-cp315t-win_amd64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-46.0.0-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 8ccbe1e1d40f76c391e670b6286d5075dde34b837a832f9714cddfd561bb8aa5
MD5 4387a093643e5b7a53e60a2e8ba9130f
BLAKE2b-256 f92c99d82016bb12e865450f3cb2828d6b33d31753c55caaa3be21b56c6a3970

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-46.0.0-cp315-cp315t-win32.whl
Algorithm Hash digest
SHA256 25489440df496d1a99a4cda2f77bc3b3dd42f681bc85da934268dcf7a75b2143
MD5 be1994a189765e33bee476caec710537
BLAKE2b-256 71d96d34cd095737bc131b3f3942b766b8ff9c9092b6d7e82395740eae53ad1a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-46.0.0-cp315-cp315t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c16ed745186f46c82ff4da1b5fe761dceec2ac59cbb807eaa388ef2db7c389ed
MD5 d0b59cc64aee31ddadaa8ff800fd144b
BLAKE2b-256 369ba976882e596beca78e458fc790f2c7b9446e81651c80538b62a32441bdec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-46.0.0-cp315-cp315t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f171819e8c129fc07feb81953a6b9180dcba8291ca7d0e4f39779d12a0add3e7
MD5 940efb615e629665316f2ede84599c24
BLAKE2b-256 f25c2887969f36d80e5ca87a28e976c2f1f2efc26fb4e16df290d10ee42fa886

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-46.0.0-cp315-cp315t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8f1a49a28d8f8d7975bffa867341292866bf58f33041d0e550baea32fd85a2ae
MD5 653c476273bd09005ff891356473a732
BLAKE2b-256 75af9fa458d92446eb714775babf34385d2022be53fa60c42ea7d97a039fee56

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-46.0.0-cp315-cp315t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1f496a29e38b43af01650a210d31b798118d08369fd8ba31516a1f0b11bad93a
MD5 609f7cab8ab975241deb0717ce73ab03
BLAKE2b-256 32aae7f17952d526d1baf90bbff9e42562d60ef9b9d3be140a26f87fef3dad39

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-46.0.0-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b239fb0cf06fdc6c6fd1dd9b4eb3bb2531392afb7964a30b93d46bbbe62cf667
MD5 fc5caf3c727bd8d244ad5b7150d8a441
BLAKE2b-256 784cc42d88c4859ab45dd2365fedc1ef41d16eadbf8a27c0f1356b818df020a6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-46.0.0-cp315-cp315t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 cf6686f51717a270b08f9bdde9e1e228dcabcb4f02e2fa0d4d0093d9439acd1f
MD5 de2f59ce2540aba3adffb3d65df3632e
BLAKE2b-256 70501e466c08592b719ef5f35d9223b773d6730a18ff4d881493c4ca5da403e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-46.0.0-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c222f2d04cb19e261db6354e243ba09650e7a79cd7755c176e681dc7783086d4
MD5 e5e981c9dcd79801d7f06d61ef129470
BLAKE2b-256 a181d8f545bfe8e9d42697844b2676d54012426c5dcf95170afd3e8cd6af5ccb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-46.0.0-cp315-cp315t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 0f10006abe6ec944a50510acef1cf13b4f86eb0a54db3b68a361bcfce5ffd1b5
MD5 ceb57c99cffc340e676039236ab0b12d
BLAKE2b-256 f43442ef80f0f8fb13cfe60c78af142a83893a5828e6659cd64f7470d7558e91

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-46.0.0-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e686eb8da4048adca7e90c10db054384fcbe2c14973d3539d1e6f04dca8bd414
MD5 4a971504a70e82f2cd3bb27e84454bbb
BLAKE2b-256 eb9204aaa6c5d625b421762a1557ca3c471b645179e33f74e9ca0c12331d314e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-46.0.0-cp315-cp315t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 06ccb5dba82a725bfb37364741f2a32c85247bbe44f3ba6bc2702bed878f1ca3
MD5 078c14c73bd1769c29bb03a566c50699
BLAKE2b-256 04b4d6c44425a1c353f4e98566beeb0f555eda985df72d8455b0e5759d15ef85

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-46.0.0-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 4adb496f7cda314af307aed3bfbf796e9db75424e6633de192a99bc0dbaefd08
MD5 68440cdd47b8cedee063ef24800fde4f
BLAKE2b-256 495399b5ba9b0acc5aa8e246c1287c71a494c206118f80678b7b6592c3c9dbf7

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aioesphomeapi-46.0.0-cp315-cp315-win32.whl
  • Upload date:
  • Size: 533.3 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.0.0-cp315-cp315-win32.whl
Algorithm Hash digest
SHA256 8d47d8f39d47ed6128cc1b8abf803f21a6ab6de34ee327d2af8ce157d9692943
MD5 486b67af8f5ccde0149d5c6ef487150c
BLAKE2b-256 91092c02a23b89307fd70b0db83ae81ac3a0d8222c932a7bf59f0ddeb0c92a58

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-46.0.0-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4310bbd7e7d7928e522e038d27b4934a7bdd963440e98c37fb21b7017d47f54a
MD5 a2a06041efa5b64b8bad2e3cdbc0bc9a
BLAKE2b-256 7350d393e2a896f8764b2befcd61f7561f49bb77eca4b85f04c6967f19b57b85

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-46.0.0-cp315-cp315-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2872d474110d2917011c8b38f6e8edf399212c0bfbd800a6ab124be5340ce4b1
MD5 b1864721509b619954f0f2a1c568c20b
BLAKE2b-256 0c80c8cd9abce880cfe1179e07a1c9b96e00e510f3a2da2cc97a202c45239f0e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-46.0.0-cp315-cp315-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0bbf98c8260ac18bb270f6a84da7f2f111ceffe868f4171e8999207fb46ecb06
MD5 cf6da08267186360b2dedc78db16fb2b
BLAKE2b-256 6e253eb6d9ea3d425d586fccbed0bda545c3622cfb7bbdf2993c19ec41ce2536

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-46.0.0-cp315-cp315-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0d1f3e5afb8ec147a420a24d5d258ab35dd09f2b72f688ce7297be725201a61e
MD5 e949a87982f2aa40277a3b47d1654719
BLAKE2b-256 155e81b7f262ddfc99277083174bf866d125ad3a74616861206e75e5109f957f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-46.0.0-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f1f53c00e258e0724c8cd860ef78119566e120d5c3aa517a78eede312ce73d16
MD5 7a1e5a35d5106edc3be2bf1fbd036118
BLAKE2b-256 813ae8c58d5241567f3b3e8fa0a18201540a37d19c554ffd2f399a855490cc5c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-46.0.0-cp315-cp315-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 58a363e04451f9828c6619d7e12558f150f253c29aa423696874244d81a4a2d5
MD5 766048a9df15a709c581c259b7ae09f4
BLAKE2b-256 a8670f4b20ae51c059da7a9caf190b3b60ed15150c67cad2b55031364f75b8ae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-46.0.0-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9585f63135f75892d7545274dcfba4258d7ed5f64627573e30074fb40cb32efc
MD5 0afadbeb752bfb92f63196f07a4b1e9d
BLAKE2b-256 6b91c3c84c0d83567064260328f0a7afac064e3c86b93e54c4348a7efdb4936e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-46.0.0-cp315-cp315-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 8c42fc75fcd330c65e7cd44098246197943bb7513ec9949a4ee34fc7fff14bf7
MD5 46505ac604c35681689e19377ca10f49
BLAKE2b-256 2eb614a3682aa497c41898f56ae4f8c732df31710ed6df234bb02656f2e25b4a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-46.0.0-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 40ce50977d1b387f81c043685c0f67c5172f9578753a7315439e93d4cc5cf96f
MD5 535eced9a42dc2ae644f1b428ee3288a
BLAKE2b-256 7ce33616a656b317c5f50be5668c975274b562824d69cfe5099b04b0c60b1916

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-46.0.0-cp315-cp315-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 b11ddf9d11ff52a73e9d78a01498649c6a6cff5c6b75d9ec44a223ab24031d69
MD5 ffc5b45c89f786cb6e4e597142f90ced
BLAKE2b-256 7c5681730e6e4f8fdf7a4f12d84f400b3fc38106779778c23b7945fee11043a6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-46.0.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 35fb78e02a1dc732fb826cc411d307c4b3c14e571fd038b4ef0bad7a6313d448
MD5 955541cc6e011cf7ee3e741664fdf059
BLAKE2b-256 3b39769db7115501da2d8c73a1e3e7a4185e1204e8e2b8acc1aa8fb61176372a

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.0.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 5ba7b69e44e13a4a97c893d6d2d81609ee38be713612b93d38c33edf2b762ff0
MD5 cd7b6366fbd71e40cbce3ac5037834cd
BLAKE2b-256 27dc9970503cb2ced3b26a5d71469073bc5debeabed4e7bd6216800fd75cb8e2

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 692e1ccccc6e7dd969527768da61752985f08c5a06cb307cc33cc8e6cecbb149
MD5 713c4f2efdc8e0653809c99eb94abc83
BLAKE2b-256 1e5093ec90b69972155e9e7d46ffcacf4adb04b2bfb66d7801963d277e4bf5ee

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.0.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9cb4f10a091f852523dcae28da4dbdadf72b6a8ca5fc887a699c644b0f158132
MD5 24718295a737590f1334517831b0ce7e
BLAKE2b-256 e30ac5934ec325028221c029d2000f97d8f1edebe3d6d67dfd705adb3b219e98

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.0.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 09eb1dba8576acb2bad151d8c0120916e914330cf8dff2ab01195a6aa1c42e97
MD5 06b209d4fbb54b762e7d6078482ec5b1
BLAKE2b-256 d3b92c875f77528b19d5aaa154d2ccfba400f9956f080ca288355f7ebe0f7e63

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 78f1418c1dcb3115d178405538e672be21c07410f3d5e325115d80bb21be2ffc
MD5 6e9d51c3d0234f7c788ff70425324397
BLAKE2b-256 6cf3f572c8796419a9a285fa9943ed5abb4c3553690d3a8e49e21103fe934418

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.0.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 617bfc3229e90f9e6d64346b1ba6966bb7f6e697b0d9e3570311029b7f0bdede
MD5 69781e33bda71d8ba3cda24ec2389f42
BLAKE2b-256 3a64d8d171dd3effb0131bdcbf0174e7c7dabea4d2b64d2891b9c975316ed897

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.0.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 e4d261abe007eed7fccfc4195d453cce3e60d548827ebeb9bab358e22b78a4dd
MD5 816152a4a5911a680dba75ff82991306
BLAKE2b-256 b419f58208b86be53281aebbedc55846e9cdf2cea7442a151622480448346719

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.0.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 316a85c6276adbc2e9f3712b46da2aeea8bf31aa78440703e03e34cf2cb0cf3e
MD5 ba6ab3dd5fbc6206bc19afd0aec7db59
BLAKE2b-256 6e5f6fdbdeefa462a91aae1eb1c53046e89c64078feb4141afc3af56e0c31920

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.0.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 55ef299f9a53044e38a27b19f96ecf6234f4d13d1b34cd2937184bb25242a6a8
MD5 8e8187f1d514cb35d9c32af2735d68c9
BLAKE2b-256 c752613be9fadbe9345b22201503015e4e5debde6c537c9c7cfb2eaee0dcbd46

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.0.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3f7621bdcc3ebdcd14ad1aa3f372aa98e15ed82ea51323acb2a54203c4e2180f
MD5 62af4277056ffe748c291d9a2c74a413
BLAKE2b-256 4fb7501608fc2ec3319ab6d19c64f4411d0479bff5d65871c6cb4723f2127dad

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.0.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ebdfa5bf223a2fad293ed8c6fc9463310e5bd39596153abf855c5493e9828ee9
MD5 5be799ca07f37928cdfba5e3190665a9
BLAKE2b-256 49f3398466f52337c31664c00ad2f84819b199aa98a6e009f92a9c752a1f5bf7

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.0.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 001f391edc1db54f0d14beb6dc85e156ccba697e4f7b7daac2ead5ee47c58e85
MD5 15494400b7d69caf56ce5684db4175c0
BLAKE2b-256 07a1481bae3332590e360b1755f181fc55162a9b4d06d8366b97da4256473d64

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

  • Download URL: aioesphomeapi-46.0.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 534.0 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.0.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 8a28abc55f5607a3ad2f106fd1e0e669baf1b986a2cf3d69db7356ece768d7c5
MD5 7d5b79f618b9c07a792424bccd1032e1
BLAKE2b-256 14d97ac390e8c92e0a963caed56124d84d886b009592dd3a1e302b558f483a7a

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.0.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fb848fdef64ecdbb0b9f5306cbc282c18636cb3e0da5bb933d2af0a17fc48979
MD5 04517972f9b621a1d4efb16c3f55960a
BLAKE2b-256 90cd4f0ddc7dfc0cf7ccb72a7e1826711b852606c1e313c9a2d26942210eefd3

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.0.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b71452d93028396130ffa896bb15a4f50f5dd177b67d6926dbdef98d44884458
MD5 21653958c3a608c59728f15c80e9ce79
BLAKE2b-256 b22d4a9de2bcde4188319f5abc958d130d927989d4ee534f741b73fb13eef708

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.0.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b4799626f185d1c82a8e9efbf73d77b87f9678436643d15961194682ffeba903
MD5 be5addf8b3c3efd32ae5ff318d7e84f3
BLAKE2b-256 a5034af5f0417312908ceb16d4750afca2539433e461623c6015e68787179318

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.0.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5d81d9fc6033719ffddea1cb95afaecdcd0284585f2b90b0f8bc75882e8b613a
MD5 8998bca0885ef400fb0c926a09908771
BLAKE2b-256 ecf294d0a00dd22812e6f68c6edcb8528baf86e0707b19d7919a9eb08addee07

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.0.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d2a5ab9aa001cd637edd26e0bc75c3a7f192e51e9e992013fafc613ff05e624d
MD5 509b2c480db1ca36b42f30e38e124780
BLAKE2b-256 41f28cc099c84601b2e6f3fc739b9c68e73b22328db86db28575aa0b161b8c21

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.0.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 930288d9626097e6d416c44ea4c02c0cdbd1ef3eeed35d2e77c381ab0806543e
MD5 5eaf1b596b1a5f6a7045e7eefc297400
BLAKE2b-256 6b29ab8f033091a4a6d6a7da7784852d86d234afd8d06cbc150b2ef0547de302

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.0.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1639664e178e04a45a234a26e88a2030f4bee2f918fe5d1bdee11022103421f5
MD5 286ae90d7d2177cae57166485f147870
BLAKE2b-256 34500ff49de661a900b3e0657783c4343035186f39cf829041421154a9acda21

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.0.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 0cfc53170e37e0fb22bf6b02438914cff793c4fe3fd96402e1eb5ba7ea686111
MD5 63f4ec932194d9794ec8becc0ce12966
BLAKE2b-256 6d3f038f23d802f20b9651adec50a64965b6f9702f46c37623e753c0007d741b

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.0.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 35f74d916fd4153ffa15b5aaec2d14db0ad977501ed7efef43cdb7ebcaf09d30
MD5 0872d945895c6e8fba53c68ff1f821a3
BLAKE2b-256 0972dbe46f4270480f87635d41b5b29028388fabe2040420fd63a14c24eaab23

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.0.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 b90b77f7823d1300c08911a014dc3763eb7a7f5debbe26e994da6f3edeedb8ef
MD5 4579213352f9749b037c04d6fb9f6f54
BLAKE2b-256 5cf3840e48d7b284b3e161ac613075e3113858fd9699b3077901e65a7195412d

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.0.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 89777c2338abf397089a56c901fdb511671345b30de207905e0a402c08fb9df7
MD5 81f23ebd0578feb8e58418f1e88fc0ea
BLAKE2b-256 5b507be1d78451e1be8bdfa587efc352cf92d5f03bc609b3f7fe3ce051d97fa2

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

  • Download URL: aioesphomeapi-46.0.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 525.0 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.0.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 5833d294d82475c17f4e0e3dc28d05e102e8b8f7f6cbfdd5dc143e13d1a61b27
MD5 0383fd694b64e69c079edd976da52ada
BLAKE2b-256 7a1d5208c44384bf950636d9c678004cbf9bc30cc13d2396e008daacfc4109cc

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.0.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 389b6215214c0192ced8972f73a465735a65c7ffa324698e3615d954daa7919e
MD5 128c136471c83e306380c3555307dc96
BLAKE2b-256 0422f5e832b834c3d1bc9300cac5b0d04d50f687986d586b3c8fdffc3d10d0c0

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.0.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c06d934248792a208fe5d858797247d46c74d442c0777ecf742d8fd750e06a51
MD5 fc26ce7378b96069dd0a611eb1d31e30
BLAKE2b-256 89fd83ccfb8c5bf55f77be71e6e6c3807b49c45a93f58e9931b4f26544ce82f4

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.0.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a3d6f0e40f2eb057383ef722bfcca3cf106b3e012000e1a5791d9449d580f2f8
MD5 44f20fd1f4c2dd0205509de06668d272
BLAKE2b-256 198d01dd4175e4fb1eb5e2ffe59c7b6b044e7a72e35a04b51919c194e6756f94

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.0.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6519fe83c24ed06081cfbafe2ab0fe41941aa90719cd4fb1c6d675e916c8a729
MD5 cb5767e4a1bcc7f1acb7262a6a8e9587
BLAKE2b-256 06dfc4837c8bf8f718da571047a46683ce867becf800e6e8988c84e6cccddd55

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.0.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 094cf5936d2e56ca998b3764639cd1cd93643a54f14f20f08289d8da120abce2
MD5 b1f997f8a9a90f506f5c8e207e040b32
BLAKE2b-256 a89b9de2f1a5bc9079b4d0efdb52ceb009ee7f832fc5b6519d92e09edd5324e9

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.0.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 85de83038e5b9ea0b2cdf91b730f4d5430b7f837ef1f0eb92456afad57729878
MD5 ea900f219fbabf126042cae776ead969
BLAKE2b-256 a0dcc03fdb1a136bd3e4d220303be52d5b04cca820cc243b8886fbf18502b0e3

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.0.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 50ec37ff62c8757f07ec1cf6b7db6e44b61d9c0cfd7830d5a27c107cfaad96f4
MD5 d23905fe5656ff1dd6e2aedec5e7a96c
BLAKE2b-256 8063275c7337f61bdee390816719321560397f65a0236fd5880212125b77c815

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.0.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 6f3aad66e8198394af5f382442d1af597b4a21d7151d9339d1825bd94b2f8744
MD5 57624f1a48968a8959e47b8db3b80554
BLAKE2b-256 4bffd86fd6a0b537c19e836f864e2ba7b1182d473b52bbb80c332b878086b98c

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.0.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f966a99a696cb57319488942b9d1386b9cfa6e3d03c1b75b09844864645bf93e
MD5 b06e57f06f37daf84f250c67b48238bb
BLAKE2b-256 79a45fce7f821f831251fa2ff25363f88c059d0772f2919fb6cc80278dbaf270

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.0.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9de4889f35aadffa0b165d0aecea61b9e690d81e3a11ee99fe7ae303165df177
MD5 509607bfb3f8e9561d17189635df03d2
BLAKE2b-256 2b90308b491c59e4781f5635e3fd45cd20138cd601d1d6dd731eed00a084bac0

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.0.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b8eaa5d280ed1b713e1c6b3f6a12d94b0e78c34ded405d532cc226a70d3ca752
MD5 4c0c708d99546849a7fe7fefb919be40
BLAKE2b-256 2f2d6008d151a07611f038d0aeccb4b4cfaeb5a1bc52be95831b009a27d44ed0

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

  • Download URL: aioesphomeapi-46.0.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 527.2 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.0.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 712d232c0866e5d061a91db7a881d7feb605f6284ff166278cff0470b89277b7
MD5 3a82dd60dfefdb46f1a37b67d40f014f
BLAKE2b-256 ab90db3cda2ed6deb814f00a70f3e7b6368fa2ece10e762804f657347b686e48

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.0.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 769bff4c81ad7cb7df793d571ade81e85772ff5ee5688d02d47d7a7478c5456b
MD5 f67f8e6e6fd9578f36ccf72867858fb0
BLAKE2b-256 808df2d02c09f9784d1177a7f7a976db16909b2162eaba54f02d060fa01c2e43

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.0.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bc5ed615833d77f577b6731a487b78c75d000cede76385e9c84a3cb101e4777d
MD5 94e84a34d497643118f354faf7a1a09d
BLAKE2b-256 0af9f2a2a745e55f3d395c03238f69a72474b9ac2aaeff343d431ec22b5a0736

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.0.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3bc7a449f62339cec43980ba722809fde239450b13599d981bb62d6bee9bb73b
MD5 284953b216a2f5459397d1e3b5b479f9
BLAKE2b-256 bb0bad2b2aae5d0ddeecf27f0f06bc592e6cb45f582a8525b8d582f5c60779c8

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.0.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4c0010ec9a0568407345260e72557ce21db8b006aa0d683e102cf1fbf28c276b
MD5 4d1bcc813e210adeab65681dff9e023d
BLAKE2b-256 76f73f719001c0766a90131e6ed56f601cbc79b310ba0425205fc1a7aa38bea0

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.0.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bcc3ba6162cf8c47f88c149fa0daf04bc35b9b0248c091e6dc03b249859485c1
MD5 04fe75867ffad3007bf0b25b11176d4c
BLAKE2b-256 abd597fe01ae517199d4d73f1b1332c5f56208695175b05e1adfc8e9c10da411

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.0.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 635b9a9aa23868eadc93025cbbdb3ec774bfabb0ae2fe7555f4b0ba3cc677cc4
MD5 661ecb4f152eb27640779546a4d02d25
BLAKE2b-256 1eec0523466c515c3f94d86c1e48789c27fee46e573b5630414e0578bf57bc6d

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.0.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1753ee556746f90f3b4608db2be2a74b90eabbd13f1e6192e12678c840a7830c
MD5 1d3c7e109db9deacefff2c8f36921d8f
BLAKE2b-256 fa122eb369c14cf00d655174ec3d22f873906887af09ef9465dcca20342cde7c

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.0.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 cfd9d2b9662aa6224c5df3428088ccd0f6681fecd68975d90519f7497d7d1345
MD5 4e8ecc5517f8016f345d5cf13b123687
BLAKE2b-256 da76d41c0f65ae90b19081c9659f054befd61dc74accb9765394afdffafd7bfd

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.0.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 48bd258ed03ee6c7396c21de82406c00d03798c6ab88889f3c95ee1988544a1d
MD5 f605d542a03f256cf509a4291a9a5a51
BLAKE2b-256 d33245b0e44283b3aa9f1502051e0736170a9681e04733f5f2d88a07c4a363ff

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.0.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 87e252fc40c68b95e66960c6b71dce6ee6271a46b4cf6139c9c2bc93c87894cd
MD5 dc96620eb3a25bd2f98c3903da181723
BLAKE2b-256 6b3c0164b6b04d2bd756202b27f1f050c54328d212f8b8c6e0ca824eff6f2fd3

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.0.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7febcb7b55957678ab5b795335e08c0b380120a7e228b2ae729dfa7c1897a783
MD5 2b628fdc3331584ae963cde0811aca7c
BLAKE2b-256 b3e1a0288e1fac77f908a7bf348fee9302923ed556b9c851ca3e10dcb8e19472

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

  • Download URL: aioesphomeapi-46.0.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 533.6 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.0.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 dea08890575f4fc335c3b87b20fd7eac8110cc778b7eff5a12aa1a01861f055d
MD5 326693a493b9e57a460addd80f11d38f
BLAKE2b-256 288626a5937b887336d7a9ef8c4465aae378b14c0c67e082879377d9e5318f09

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.0.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c2d12a76e02c3ef76d7a4ca4b53ec80932474676c643586eacffdd380d681db5
MD5 503022bbf3c68bd90acfca559713c80c
BLAKE2b-256 1193b459bb44e10eecc6f40685b243ab55bcc13105e3774bc4391be3ff446465

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.0.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bd61ff50cd82cc4acf405d5f0c526e0a7bf1dcd4a04893be7edb796ebe0530b7
MD5 789248976fcb8bd23fb37656290c8d94
BLAKE2b-256 d94f59d87d2dada6bedcdd0735d10df4b672f3d81ecc74180280d0ab5a7126ad

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.0.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 baa351fee0679b518e12e250512787b8a9d274fbd9f477850cd76f30516ccc8a
MD5 b56a5717f84fb8e899ebb98ae54da307
BLAKE2b-256 35ce8556c1aa661279d290539f3d6c494a44846996538d6748e6f726c1b3da16

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.0.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e3102672019466de8dc777766169e1421e5beec7991e28398b9d8586d93a236a
MD5 8e9319252010cb43e9c04291762f6973
BLAKE2b-256 7f4a1f24d00b722440ed1d826788d6409933f6af396cf92c6360722cf356de0f

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.0.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 155dfe758520749b32c9b25f613b61460098b7c7b9ac9d27930aacce00617295
MD5 9848a92d6bc1fe88fa552762267af7ec
BLAKE2b-256 9a27bfa683ede9f6f3999b606a8b3c71c160d32ed6e680d7ea62c66150d10259

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.0.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 aca5b832c2ec63fc715f3c4f15665ef057f3414022a26d1f66e3dd54a53fa34a
MD5 f8cb6d2fd7eb4f7c3fc936d0098cf40e
BLAKE2b-256 7f66743a99ac5852d7cd01cd59cf101bc972be6818a06e82751fda5f2498f8a8

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.0.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8e594802ae01bc1fe52fc09630b2b830ff77f95ece95b6868b5e0f9fadced393
MD5 f29bcf57153c5d1be6adbffce89015e5
BLAKE2b-256 f4207197464bee28b53f9e02cadc44de927d226180537c50dfe32052c2ea41e9

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.0.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 5617d1a1c32cb270b3b4b87c558804ccfc833310513a0c3d36d5ef2e46c1502c
MD5 34ad14b1d7c5fda7bce1447faae4d97c
BLAKE2b-256 5f289c6505cf3b6ddc207a58f851567937ed706712b5d7e7b873bd5ab02224a9

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.0.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 616ebd7518b74ee6effa032cec8a4c6a0ab8750c366c718d15adf894ff770a43
MD5 8989b1e6f59af92a50b8b40022aef94f
BLAKE2b-256 89e5480b13a92481f9c1d937690c1576de721b68d38a83bedce2d18505ad8236

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.0.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3949d9557da4cf9e07c85615a021edb839a9b5c9d3f48569d52bbaf82c6390ae
MD5 aeaf5aaf077e6621e34f50045ba6b1fd
BLAKE2b-256 6d6f62e8fc5bfd5439eec16d1433836b89c2b9cb4030f0069689cc7ba096ca08

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

Release history Release notifications | RSS feed

46.3.0

85 files

46.2.1

85 files

46.2.0

85 files

46.1.0

85 files

This release

46.0.0 This release

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