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

Uploaded Source

Built Distributions

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

aioesphomeapi-45.11.0-cp315-cp315t-win_amd64.whl (624.6 kB view details)

Uploaded CPython 3.15tWindows x86-64

aioesphomeapi-45.11.0-cp315-cp315t-win32.whl (566.6 kB view details)

Uploaded CPython 3.15tWindows x86

aioesphomeapi-45.11.0-cp315-cp315t-musllinux_1_2_x86_64.whl (749.2 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ x86-64

aioesphomeapi-45.11.0-cp315-cp315t-musllinux_1_2_i686.whl (731.7 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ i686

aioesphomeapi-45.11.0-cp315-cp315t-musllinux_1_2_armv7l.whl (720.7 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.11.0-cp315-cp315t-musllinux_1_2_aarch64.whl (732.2 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARM64

aioesphomeapi-45.11.0-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (741.0 kB view details)

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

aioesphomeapi-45.11.0-cp315-cp315t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (704.7 kB view details)

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

aioesphomeapi-45.11.0-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (724.1 kB view details)

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

aioesphomeapi-45.11.0-cp315-cp315t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (719.3 kB view details)

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

aioesphomeapi-45.11.0-cp315-cp315t-macosx_11_0_arm64.whl (659.2 kB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

aioesphomeapi-45.11.0-cp315-cp315t-macosx_10_15_x86_64.whl (665.0 kB view details)

Uploaded CPython 3.15tmacOS 10.15+ x86-64

aioesphomeapi-45.11.0-cp315-cp315-win_amd64.whl (585.9 kB view details)

Uploaded CPython 3.15Windows x86-64

aioesphomeapi-45.11.0-cp315-cp315-win32.whl (524.4 kB view details)

Uploaded CPython 3.15Windows x86

aioesphomeapi-45.11.0-cp315-cp315-musllinux_1_2_x86_64.whl (749.0 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ x86-64

aioesphomeapi-45.11.0-cp315-cp315-musllinux_1_2_i686.whl (728.5 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ i686

aioesphomeapi-45.11.0-cp315-cp315-musllinux_1_2_armv7l.whl (711.3 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.11.0-cp315-cp315-musllinux_1_2_aarch64.whl (720.6 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARM64

aioesphomeapi-45.11.0-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (741.3 kB view details)

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

aioesphomeapi-45.11.0-cp315-cp315-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (715.5 kB view details)

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

aioesphomeapi-45.11.0-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (713.5 kB view details)

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

aioesphomeapi-45.11.0-cp315-cp315-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (716.4 kB view details)

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

aioesphomeapi-45.11.0-cp315-cp315-macosx_11_0_arm64.whl (612.8 kB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

aioesphomeapi-45.11.0-cp315-cp315-macosx_10_15_x86_64.whl (626.5 kB view details)

Uploaded CPython 3.15macOS 10.15+ x86-64

aioesphomeapi-45.11.0-cp314-cp314t-win_amd64.whl (625.8 kB view details)

Uploaded CPython 3.14tWindows x86-64

aioesphomeapi-45.11.0-cp314-cp314t-win32.whl (566.3 kB view details)

Uploaded CPython 3.14tWindows x86

aioesphomeapi-45.11.0-cp314-cp314t-musllinux_1_2_x86_64.whl (750.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

aioesphomeapi-45.11.0-cp314-cp314t-musllinux_1_2_i686.whl (769.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

aioesphomeapi-45.11.0-cp314-cp314t-musllinux_1_2_armv7l.whl (688.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.11.0-cp314-cp314t-musllinux_1_2_aarch64.whl (734.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

aioesphomeapi-45.11.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (741.4 kB view details)

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

aioesphomeapi-45.11.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (671.7 kB view details)

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

aioesphomeapi-45.11.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (728.3 kB view details)

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

aioesphomeapi-45.11.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (757.7 kB view details)

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

aioesphomeapi-45.11.0-cp314-cp314t-macosx_11_0_arm64.whl (659.3 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

aioesphomeapi-45.11.0-cp314-cp314t-macosx_10_15_x86_64.whl (665.8 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

aioesphomeapi-45.11.0-cp314-cp314-win_amd64.whl (585.6 kB view details)

Uploaded CPython 3.14Windows x86-64

aioesphomeapi-45.11.0-cp314-cp314-win32.whl (524.4 kB view details)

Uploaded CPython 3.14Windows x86

aioesphomeapi-45.11.0-cp314-cp314-musllinux_1_2_x86_64.whl (744.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

aioesphomeapi-45.11.0-cp314-cp314-musllinux_1_2_i686.whl (769.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

aioesphomeapi-45.11.0-cp314-cp314-musllinux_1_2_armv7l.whl (679.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.11.0-cp314-cp314-musllinux_1_2_aarch64.whl (718.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

aioesphomeapi-45.11.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (736.5 kB view details)

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

aioesphomeapi-45.11.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (676.6 kB view details)

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

aioesphomeapi-45.11.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (712.4 kB view details)

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

aioesphomeapi-45.11.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (758.2 kB view details)

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

aioesphomeapi-45.11.0-cp314-cp314-macosx_11_0_arm64.whl (612.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

aioesphomeapi-45.11.0-cp314-cp314-macosx_10_15_x86_64.whl (626.3 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

aioesphomeapi-45.11.0-cp313-cp313-win_amd64.whl (572.9 kB view details)

Uploaded CPython 3.13Windows x86-64

aioesphomeapi-45.11.0-cp313-cp313-win32.whl (515.5 kB view details)

Uploaded CPython 3.13Windows x86

aioesphomeapi-45.11.0-cp313-cp313-musllinux_1_2_x86_64.whl (739.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

aioesphomeapi-45.11.0-cp313-cp313-musllinux_1_2_i686.whl (768.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

aioesphomeapi-45.11.0-cp313-cp313-musllinux_1_2_armv7l.whl (686.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.11.0-cp313-cp313-musllinux_1_2_aarch64.whl (709.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aioesphomeapi-45.11.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (732.5 kB view details)

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

aioesphomeapi-45.11.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (683.6 kB view details)

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

aioesphomeapi-45.11.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (702.3 kB view details)

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

aioesphomeapi-45.11.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (756.1 kB view details)

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

aioesphomeapi-45.11.0-cp313-cp313-macosx_11_0_arm64.whl (607.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aioesphomeapi-45.11.0-cp313-cp313-macosx_10_13_x86_64.whl (623.1 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aioesphomeapi-45.11.0-cp312-cp312-win_amd64.whl (575.8 kB view details)

Uploaded CPython 3.12Windows x86-64

aioesphomeapi-45.11.0-cp312-cp312-win32.whl (517.5 kB view details)

Uploaded CPython 3.12Windows x86

aioesphomeapi-45.11.0-cp312-cp312-musllinux_1_2_x86_64.whl (744.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

aioesphomeapi-45.11.0-cp312-cp312-musllinux_1_2_i686.whl (774.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

aioesphomeapi-45.11.0-cp312-cp312-musllinux_1_2_armv7l.whl (689.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.11.0-cp312-cp312-musllinux_1_2_aarch64.whl (713.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aioesphomeapi-45.11.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (736.8 kB view details)

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

aioesphomeapi-45.11.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (685.8 kB view details)

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

aioesphomeapi-45.11.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (707.5 kB view details)

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

aioesphomeapi-45.11.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (764.5 kB view details)

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

aioesphomeapi-45.11.0-cp312-cp312-macosx_11_0_arm64.whl (613.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aioesphomeapi-45.11.0-cp312-cp312-macosx_10_13_x86_64.whl (629.4 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aioesphomeapi-45.11.0-cp311-cp311-win_amd64.whl (584.7 kB view details)

Uploaded CPython 3.11Windows x86-64

aioesphomeapi-45.11.0-cp311-cp311-win32.whl (525.5 kB view details)

Uploaded CPython 3.11Windows x86

aioesphomeapi-45.11.0-cp311-cp311-musllinux_1_2_x86_64.whl (759.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

aioesphomeapi-45.11.0-cp311-cp311-musllinux_1_2_i686.whl (796.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

aioesphomeapi-45.11.0-cp311-cp311-musllinux_1_2_armv7l.whl (699.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.11.0-cp311-cp311-musllinux_1_2_aarch64.whl (734.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aioesphomeapi-45.11.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (752.1 kB view details)

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

aioesphomeapi-45.11.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (698.2 kB view details)

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

aioesphomeapi-45.11.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (728.6 kB view details)

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

aioesphomeapi-45.11.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (785.5 kB view details)

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

aioesphomeapi-45.11.0-cp311-cp311-macosx_11_0_arm64.whl (613.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aioesphomeapi-45.11.0-cp311-cp311-macosx_10_9_x86_64.whl (627.5 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for aioesphomeapi-45.11.0.tar.gz
Algorithm Hash digest
SHA256 43b541189580cf0778b46eb86880b9bc0a97f66c06b2675dce15fba33a2f4c8b
MD5 89e94e904e1a3369866120e83f71a122
BLAKE2b-256 0b793e8abcc829d3f2845f6c4d162887a1b327e7a042e778b59e057179dee539

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.11.0-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 c2607352c9ad3dbe27b7b56c19865d3eef1083a6493f1e583ca58aa7858a247d
MD5 be964f1f55f51a3bad1becd228aa0b86
BLAKE2b-256 209275e0103efdf1e3ed42756106c98cb2c6c52efc9e53a3e5f6b6377062e180

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.11.0-cp315-cp315t-win32.whl
Algorithm Hash digest
SHA256 a04e2a99cc9d81d13dac9756af6ca0fe6e9060125f30817c47d8709a40b24e9c
MD5 3488d2e7fc7134d8e95cc266fa7d084b
BLAKE2b-256 ff5011500ec2ce56f43657e749c28806c0fc5ad75c81013ba48507b49ae26711

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.11.0-cp315-cp315t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8c22840a922564046a8d9529e1ca6156a48b3edc7b10766ba235e8018ebd72aa
MD5 529fa4651b0f1d498e494595681370d2
BLAKE2b-256 904683b6c611b0430ebc235de660aff49ffde8260e57a166c1039d91dbfe37ec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.11.0-cp315-cp315t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 85b9722500d6ad261b85a175f280ae1dfd211566ae3b13972ab0084a9ed89709
MD5 5fc58fb0a36174fcd3b8824d5fbdb837
BLAKE2b-256 550a99a980c0378692a8bc8d1588adbcc9c6c28b64ee28eba5d11e7269e02734

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.11.0-cp315-cp315t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 dc4f3e0fe576f76313c4c5fc22063568d18d1bb68e4262ef67cd89eb7f00754c
MD5 2801f71414e2c42edcd202836871ac5f
BLAKE2b-256 82ef67aa34649145d126d5bd47732f7d966c329f3179ff1e3303ae1712603c44

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.11.0-cp315-cp315t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 db8049227008bcd4245c4bff6435094549502587d88db50d23a9e35f8b3306b7
MD5 c2cfd7ee19a5070a33461d87506cbb35
BLAKE2b-256 ff3fb697dc2b4fdf2f374f77886dc2a07f2698ae144b9a357399719444c00d35

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.11.0-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 452390d77644a7e383ab2461d9ea69ed7b212d42a95bcc0d03553cd751565983
MD5 4b92cc4e1ad2d3bc1702ee7d0b6b8610
BLAKE2b-256 6a510b8e98efc8b0706936e754f0306eec226da8175f1baf8e1ceff06cf500f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.11.0-cp315-cp315t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 08f861b51e057ce825beea4b7b58eb1979e892fc13bb9961140c2e3e9cd01ff1
MD5 a13b4d438ada675306d6b3c23328ce51
BLAKE2b-256 f4122bb8ce832e71d27076f6976bfb8f76489de57c7326c4afbf68a5ff76bfe6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.11.0-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 79d34455ded97af88465d68f8fd5de6a8684651fe14f5ce0d0d00089d7b8bfca
MD5 b60aae98a1179306e47fbe7ef99e4814
BLAKE2b-256 31032a8231f806b6b072d36fa04d9b59ed9830376a0c872dfa9c0e4f0a2f8aa5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.11.0-cp315-cp315t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 dd1e697a32539e9d822c54191017fc30633960280fe86f0e5580317bc36d7d1d
MD5 f2db7277797fb6ca2dda66b67f050875
BLAKE2b-256 cd395819b120524b80ffab5a2ce0c15af4d0773fe7a6589b04addf200d0b792b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.11.0-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 358a9fc215b8e3737254b261ee7723392726423e56340713e8257ca01975b550
MD5 28f95ba3d8af13c736aca8afeedebb7e
BLAKE2b-256 690cd6d3f6d6f79378e021f967cfc59e6aaad1152bc7d92500d8b5656bbac612

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.11.0-cp315-cp315t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5be9ad03ce8c8cda94a1cc8203b3b4da4ed1c8bd76a635aea0d405cdd6e3326b
MD5 11cb8ce96c2aa02d92bb157f8af1b349
BLAKE2b-256 cdf0c6106302d7b6ac02f302b4059a05722dc7113e2e49670812929cf0e25f5d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.11.0-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 68ed1ba5096a8c1453455f71749e97f37ebbc16b68b169528bc9507e90bc9d83
MD5 3d8e803a36d639e28e886131ba0281a7
BLAKE2b-256 89c2b5d636e3a8cc839e06a134d3f1ae1a8b236e90d6948644253733a1fb5a6c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.11.0-cp315-cp315-win32.whl
Algorithm Hash digest
SHA256 514a3fd2a73ccfcaa3e4b75364dd7bd08b62339cda3110431054aa0f793abe1c
MD5 85b6ed956e7faeb2f5afd7407943df20
BLAKE2b-256 5e079b3fb7de1b401151c6e504ff323c894989b24c0230b2ea3a4787bb52b5a2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.11.0-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2a22f69d6674b22069515f4aa422ad797ce9fa1963b6ba7a532df3cafc9414b4
MD5 3f018662e5a0c740605bd2d2c93dd9f9
BLAKE2b-256 fd908143ae71b5146535ce6fbd1a4591b914d19d3bc03aa5e789c1baa327f326

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.11.0-cp315-cp315-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 182a7c2faa16882a9b18af3e3e2a83f7c26670f5b16caacfdfe5b8edf70b0fdf
MD5 fe702e1ec5a13f64b15781ab42136788
BLAKE2b-256 ceba165c3cfac6b6515d998887a9f7b9810310965ea94044898716fb4a4e189d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.11.0-cp315-cp315-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 27089365901b43fd1e088b488b092347d0212194e2bcabb63d81736419cab8f4
MD5 5eeb161616ad02b5bd4278f8d690dfee
BLAKE2b-256 51f647bcebdd0ad2c33df42e056d4e36a8b82f34e4589437c5242413402dbdb7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.11.0-cp315-cp315-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8e925cffc397c0c3e959b2189805d84f2d4d6a49a9e2045bc469a12570e3102a
MD5 edc85fbe15b87b8126c56d2b1ed29dc4
BLAKE2b-256 c40fb804ed37ed5e658960319ef674b4a155dc0d7c7939fb5945cb3f831199ce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.11.0-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 716bf52ad1cd0e0e7f1c74a39c3258f4dffd1a3e04a912e74a89821185f88e4b
MD5 2ebc55b500dbdc8179ccf4d6a00cd35b
BLAKE2b-256 4f22f983adeeea37fe186d9c3b5f27c85916f00610e767c1782e63503e1aa1ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.11.0-cp315-cp315-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 e108cd7387e6ae867e808fbaac705726cced59cbc20c25ba907f4557c082efa2
MD5 1a3420ba96f7a37fe54a2e094cd579f9
BLAKE2b-256 3436a52949ed24e28f4106af73797e5a8e7d291904cf2fdf474212f747582851

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.11.0-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7eaad449d19e7f89c4c7a0211772798d213daa5e2bbde0298713d42de0e7ba16
MD5 c696e0da43f2ed400cee81cc968a2626
BLAKE2b-256 bd17fff2a739691eeca4af61b67e63b60b1c7db748129ec7b40fd92a790d639e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.11.0-cp315-cp315-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 9bca6c93bdb5927556ab4e879ed6d7565e846e5f4bad9307b7bd9a10619d3305
MD5 3587c0c1b649792a51511b8e6a649033
BLAKE2b-256 0aba23ef54f7d3ff0c75411b86d8b26cd07f9336d57683e2719b5511625628a0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.11.0-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 793a14989b1bc80df8ec9dc7aa05130009e8672d74606a347ffb0f59a09f4a0a
MD5 b33089ec96ed8e16dea3d2982bcc1506
BLAKE2b-256 4477ba5be7704e07c8a71fa196aba1c4478fd4bbbf2e58154b025698ecb7e54a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.11.0-cp315-cp315-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 158385a8759a83aae321dfef6d6b254999f617c8953d54093a6e305efa10f1c0
MD5 8c74940c59ae48d7038ef2661acf8b38
BLAKE2b-256 c7b3b73aa6ba5267836b78afbbb7b26782c69f9c447e635df2c7916b1399cc61

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.11.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 ff1136eb40a729cf7abfb5b8639e734a77fbf08da06d8718f5f4d0fda05f34fc
MD5 a35e62ff17b7adc4e503c9308a706555
BLAKE2b-256 fa2f1152602f9c02941461f1a95955be043211a865e5bfc7cf46432ad1512f11

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.11.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 66cd1607cc7c559d6af300ee816d91c14a672ca1c8c84c462855260dee47c8ea
MD5 79786c8a09193abd8061dde36bc68dea
BLAKE2b-256 a0f912a52d2b59734832c164714be4aa2c31e2ee101a02c13f60b0d5dd6f8d84

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.11.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8bfcce791af789e0e05571ec453ad649ac0d9d74682c474a32aa72099bb5ae20
MD5 3bc638e75cfa1898870a917ccf730c40
BLAKE2b-256 fb0ec8b35fa1c0b76f5ea761a4889e5f18308687fbac44de6e4dcb5ce77fe134

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.11.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 522b2c61c47dcc5f57810a279d84a86facdc405f758ab838b85ff5e348d5d694
MD5 2e4a394db90febde02f80e6b854af5cc
BLAKE2b-256 2e7836db5f5a6e70a4f5ed91edb982973cbfae8634a81078b061e2eb7e72cf1f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.11.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 06724db53a16c181b154d0564dd8b5d503e53882189feec4e3674bef90d8ffab
MD5 a5764bc87a0d9bd907063e93900c1fd9
BLAKE2b-256 c2ff1c9fedecabe93d1e8e50614141261ce56d75e48160037df33b2a0e32d69a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.11.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b9a5f556f2981e13603e3b52fa35fe0723f105d94711b6f2d78faee6355c4bea
MD5 95d3f9d958470c725c10016c90d4d6c4
BLAKE2b-256 4f0d7d572a782e1bd2cda1858d3b3baed57f6119d8a182bf894831a17f6597dc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.11.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6e530c1d4d062ed3f156f5bfa9a798f9ab6f51e5cff24789572a0ab988af5c2b
MD5 d2f6e6f3fe686d938e8e2909e044c6b1
BLAKE2b-256 8ad9e0862bb9aec04cd392b718ec338a1c0b2bd0048845db3f22238e4160817e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.11.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 ce379bcdcb71eefbbaa5d29ecf6d10a5b71b7bf27b1b9a92fe9252a8821a95f6
MD5 c2d21aceafae4fd9189eadf59a54d8e9
BLAKE2b-256 176253c7bb45e0a7c916de19bd43d2ffdc270fc4bf2d7aa88b91ac71f3e14521

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.11.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c87bc39ba47db850df5c64c4ee36765b08b45bb93bfab006e24430a294c4a49f
MD5 cb83f21aa3b530d9a45118b94dd26b54
BLAKE2b-256 cbfa047f1cc132ca80965b520bbc603b4bd477ea2ce79c5bab4acfd5268130d1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.11.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 445818321a71578d45bdd2835a2f17c879b288dbf0cd3b190ca53a3a3cf6fa40
MD5 a0abf5d5d24bc377c23c33a008ef17eb
BLAKE2b-256 71dd77aaa981c6886a73f811e6762ef7c58d0dc37a4cb0d1ce1fe0cfa13f9769

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.11.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ad5d77fb13551542dbc7ebf6c5734461a65a0193d7b637c16505511207eff1c2
MD5 1f5cf8f0f9529a01515b7e3b75c5fc4a
BLAKE2b-256 6b2c34700b36b5d70e778d1aba32575a9c926f5171b3c612641918d5a6a11494

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.11.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 66faa555d91a1d7cc991e41a52e8ce729eebde251d5439a455fc7ef3ff34ed69
MD5 f040d0892067dad1a59420b85bcbd705
BLAKE2b-256 18be1eb3c0c984f0e6bfbb5435fde68de4d335f146330663b999f57c5b3c91ea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.11.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 35d8ab2a604ed98ed6ad8d29cafec36d41ea9d89cf6dc4e1b1d833b13d7ca9be
MD5 7307914b7eb00a6da50e0f7942f6147c
BLAKE2b-256 3b535adeab7fbde9bae49b9887693e0dec5acf1170886c96336bc262a9c25816

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.11.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 0cb07a4ad80d52c74525a64a0ea4252610d766131852a286810c422447224722
MD5 0f1b0454e837af4e9eb461693d6b2529
BLAKE2b-256 d91fc30194cbdf6a12e01eb9a2fbbb05742f79254ebecfd30a4fb134a5278505

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.11.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e8a318f5b71b4e8419ac0a18767326bcfe7821d587baa21a00f827f304654bb0
MD5 508efb6d9560bddfbf9c56da242d2beb
BLAKE2b-256 5b25a47138ddd727a22315638d808fe7a6f91454c1084414cf4bde5709e5e33f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.11.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9665b14d49b4e4e8de99c491a5e2d0848e4439deefce774794c05ce8318c5e46
MD5 4b037bcd28df2f11e331091cbf4877a8
BLAKE2b-256 111df5eed28e6055b64c52f435608fc881f1e178328bde69950612b7385609e8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.11.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1ff4d2bb61da734b6456eef12963496484f872bd703f6e83d3dcfd06fcbc892c
MD5 5541585dc6b060687423e9e60004b7f0
BLAKE2b-256 285d785d2318a03e3346214266dfe237ae1fd80bfe98e0c66721088642cb0621

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.11.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c17e87e8578350fd689f9669a7c9a56d6f38f96cff9128fa823433c50714c090
MD5 27171f1ee2957ce78e0b48b7ce274fc6
BLAKE2b-256 77c208261ac98351e77f35420df9e6bb746fc9bf6d018dc719a8c51cd7f1ece0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.11.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c1182bd84fee3c8ea604034329cd8ecc5ad5333585a5a4002902dc1e8977984e
MD5 f6803c0fa4c0146a4f5a00cec53614d4
BLAKE2b-256 39255b942fda8c1065f38046bdeb6fd39a84f78e4fe35b826f34efe6b72a10f8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.11.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 6a59863d57e1129bffe4c2825d77ef27be7918a2dc0435876c823f25e3d8c355
MD5 e88621fabfac7b89deb4def9593c0288
BLAKE2b-256 d88d6e5cca9eface20b24fe94470e3a2819a424fafbd4d94ff981b0c983f2f7d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.11.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e71b6238aff6aa84dd2490ec76cf974289c7a9e022ab8387e81ea2a8509ab76f
MD5 00876217fa0efd46dba230693a1f46d1
BLAKE2b-256 f4c7c23785dc2f73cee122bfc0dbf7f7f3749f24a6a80c5ef8870552f9537863

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.11.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 90a060617a560ccdd93ca711d9ce5408226e2a9b81e85daea845d316955025aa
MD5 fb240ff8a92ba851c4bfba1c048c008f
BLAKE2b-256 0142b0788adb10f6cec98fc3d1968cc5bd5e3b8c55e6c306e3ce61b2c985c4e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.11.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 33b6e30248e8e9108b9cbbd84d62495eef3b24ea8860e5c4e2fe33d6a3065030
MD5 d650779934c4bb115a1bba821f4f8d1b
BLAKE2b-256 2295e90b26b368bfa0950b5a2c34811fd7932739b58853a4f2b307a194db949a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.11.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5a55659f2703596295e711d800b1c874b475ee25685c47c20c50b836a371f71b
MD5 e454c2c7ae8c0029c2d47f4edaebb423
BLAKE2b-256 0b176f85cc152cd7a6f82b942ebe9e28aa15ec5ac68828ccc2e49c2760add95d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.11.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b32ad7634ac5986194d8aeb9e6f712cc82ec3ed4031230ce1e1fbd5c44439b84
MD5 6aefcd71a14e894b0c7d21b05a9b434c
BLAKE2b-256 ce6681aa19476bc8e302d4fb3967bd66b3df78876d63666a2c4a8dda12672966

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.11.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 c455dd805e2cc7b5eeab25d0f109dc9885f6d162ea9c74efff59434c31856a69
MD5 42dc7f25af5a14aa45a067430958fc79
BLAKE2b-256 ccc8a1881a027172583e61284a8a3a8b0b17098d60c6fab0377be7d4669b92a3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.11.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b71d8dc03b9517bf0c47f70c47b5feafc6fc7e87820dcd19f9575d3171ffbc6e
MD5 0a0aa4d6a2e02e835f4584238ac5bad0
BLAKE2b-256 e917c13ebf116a26a3d3cf9c642f700a376ff7dcddb4b290f761178d663243ec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.11.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a6cad7b148597acc1e4b20729272f7235329a443e10f8815754c33bd9e229a3a
MD5 3c094b65d6ae4851a0d8aa325fb38158
BLAKE2b-256 0583d35966f54d66f570a119e2602374bf3a4285875b5174e0f1aaa98f3c6f86

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.11.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 164ca53d50b517cdb7c389a205ef2ae0ea26aa0dd109979ad93041e4e513a6ef
MD5 d335348e65b1a27e32860ccf71446790
BLAKE2b-256 52be5a2d14bf4517df8184d90fb7da85d2d99aac5f72e0e64bddb9de5a977b1c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.11.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 19145c83344c0fb494e154e0b17d05a5a24dae8fb167287f8b3a19252d8f0797
MD5 61b1cca5d364f8ffeb1b2c2061265a37
BLAKE2b-256 1979aa9b6b728814fe1d58f7c8498495bee50463449f809eda1035e2c9f49f76

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.11.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0b1650db059e922b767456526a1f327d5507e23ed345156555545188675f35cf
MD5 010aff8ee7971af55b077c6e76d41837
BLAKE2b-256 2f8eeaf4693737586b6f38d9deb174d635a1a3a8d6932f0a15992b109f1b34ed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.11.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 7dea42432c948e7f387ff652e4339f8d179b1178f266c19c8c8ad102d273c4e4
MD5 f6665b17cdae5a7de6ce8d766030647b
BLAKE2b-256 336c2510c0ae50cfdac207522e1240d7ad26e028319459ab0f7aa6fcb8ca4a37

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.11.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c81905067cc911697bd828dc6a063b45454dda185fb7091734e3046ad7db51b3
MD5 cd1ce9e0dc280845b9da86ab7294fd0d
BLAKE2b-256 7ba4388dbcaa34f745a132a72a46c0380d11db63d5253250dba41ccaf1fbac68

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.11.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 7315b192ea872316eeb8bf5200dfe79468f893934b79aadda6e347a9e037f088
MD5 f60ed1de0a6ccd426b6d30e2e9d4206d
BLAKE2b-256 8d3c8dfa996bf0304e258455d7b4bbf23a16047bb6eb72f511d8b767c06984be

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.11.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6be3ae9aaf8e677ec8fbc4a82647c0d7f997c451d9b4b951330a93cce287394a
MD5 94c00c18ae8f48a1efc39a80681859a7
BLAKE2b-256 7bd44181700fe3779f3bdf312300b1df13a4e6b23ef5731cf964918be7fad6c6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.11.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 db6e9b717992f447c38807bb307192f507dfaf0cfbbfbd3831863fbbb36f1c8f
MD5 4075a62f5ddded98a6e022a3a2710669
BLAKE2b-256 60c23ba3242491a0124abdb9d9ac15cdf984447609a58145037f8f8e1bc452a1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.11.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 5ddd4ee775bc6a0bb369dbbe7c4562da1abf762d1a5c6bb582e2d0af12f485a1
MD5 a81dd1470f508dc5ce4e58b2158ce83d
BLAKE2b-256 44a91ca86347cd83268fc90130a3ea56aec179618dabf34bbcf49fd3efd77b9f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.11.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 4ba8e45e27e5760803458436a22aad9b19d7d14242b188c94ad08e4aec46c7b3
MD5 1e0898ad732537cdbe6e47f79a0c2dc8
BLAKE2b-256 30231925cb59de34f810fa395d77534b29a86930469220626214b91ef978f6ce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.11.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 98f10014f93c87eb481d21484be3635f7df06e7093e7464b1c631bd6d3b2d447
MD5 003212f3f70b9f9ecad6f67c99289024
BLAKE2b-256 0f5df9c1dfe8110cccab17c36f0749aa0fbf23bc604c2c9e72844ff45c7d74e7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.11.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cdd9c8f0d7ef2aac881e32bf9fbab80059cb801e1824933379fb501d346b2aa8
MD5 1cc386e4bed0506a0586915941acdfb1
BLAKE2b-256 b844a46620e3b2efee5355ba4170de25b7f0258eed8ccc9ad4a9e9b42d24c78a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.11.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 17aae5dbd45520cf72309ef9fe3454cc81542cd21c8c12c86e14687fd72c446c
MD5 fdbda171b0f034965ba9873f357185ee
BLAKE2b-256 3f818abea787be23c8cbe76eeac9fd0548f563ad7870dbd5077e365ca6ae874b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.11.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8d8f68adca2cc58640992b6a7d545348962b9c34f5bb1dc747bd595f0d8ac155
MD5 d778b2ac76f5ea80ad8028a230a6306c
BLAKE2b-256 bb89ca9b9e11126d6bf9d3d44bc89cbb98666b8d849b1e69970cc0faadf1972b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.11.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e31738e3d4466517ad1a795fdebe172798ab7620b1e313025326afd791377f42
MD5 d5b21b92df25cf7738a2930d86679826
BLAKE2b-256 782e9e0e008ad071538e344ea76fec2f430e6eac05c364453467a2912f909b8b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.11.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 214b91305d50af1d7a3c6db8ed6e0f6ed9d7a361a136af9010fc3405c43d831f
MD5 d7fdd8ba2afa3cb1d70ca33356a44dbf
BLAKE2b-256 7f218bc68a1d0c6e99674edf6ae3788367dc8814f1c5ff8aa4a3cad718c3afd7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.11.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8223079f4fa0f3361f32796f70710382741e5502b6a84c9ad9e6b5fad2e808b2
MD5 beece0b476dc4bb9478e3266d98cd5d0
BLAKE2b-256 50af7b72a5d5cead74306c7f08f19891343cf8817b1e07f3045c107c7d46d14f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.11.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 f0b91f5ac13bc245bf6950c54bec65563194fbb66027c27e4e2fa21915b63bdf
MD5 78c2e69637fd6c891ac83f225c877cd6
BLAKE2b-256 57b2abb9933068f01a7be25fb5b3e30026b13d7befe3d0812c39862cf51309e4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.11.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 842fba569fe63319352976eee312894553d63feeac465b7a92a29d5f6fc3be1f
MD5 854822abe410d620d19924fe5b5502e0
BLAKE2b-256 f5a9025e19753662f333f98584422cb6a57d11c531505ff10250ec854f581bcb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.11.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 efff2e0b6e11547d879e7b000d41ea3c188edd419ddec2aefb9c6ec7889d4edf
MD5 c26b3d611a4fba1e7e984fe0b820e25f
BLAKE2b-256 6e93c16e7dae750fdb71e3646a0382e34e08afbd8cb124575de6cf3341605289

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.11.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ecf668cf432b037697594810d46923ed2581fd1597f13b5069e52fae089f38a8
MD5 22f5435169d968bb98ac703ed5f49e5d
BLAKE2b-256 631474b7a569c1c0e64fd8382f06d0e9457f6bad760205ec7b61e0785b54d664

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.11.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 a50d05a6828b83272f27ae239392c259d2054e377c5fee36eb729eb2cb3ebfb8
MD5 c62cf8dde9bc0b7a96724fad990067f0
BLAKE2b-256 1a6357abaa7e99a18a1956f7e194a2e44c0938b07eb455f20c5b6e700af25f2d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.11.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e76287631811f44d28d3f05e1854cacff87679061768cebedb86cfdca4fb9035
MD5 14bdc2a450a3d3a46427b04cfde2acbf
BLAKE2b-256 d60fe9bca177392b9eeb61bbe0d050d87318599726357269db04deb18104014f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.11.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 457626990aba10ac20339d16940d2ae17c97e3a6ea40ac346e51d6a5b1c06c4e
MD5 4902f9612072b40a6691b59aa2d4c4cf
BLAKE2b-256 6cc7f5078fca217e3b7b0020cd4d8ae7137c7c8ba4bc0172c8af6591beea16d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.11.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 abd6229990ed9625813aaa53ce4ac9611d4de51b86a8478552e769cbfa0f2be4
MD5 aeb716862e9025c7aad1599fa42863f1
BLAKE2b-256 dd29b6899c737c7066b0d17f9def499aecb472f4619874f8fe41967856637b12

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.11.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5d37b82ee7cb43a40052d80348436f71eaf5ffbf94a7fb9d21d60f7a222780bc
MD5 93348b44bf01db62e89344b75ce40916
BLAKE2b-256 c061ebae9d969dbc123f45b605121199b14081dc6568a06bc73d7f24f997f636

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.11.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cdaf4ef7d7fa964c22442903f3248f88e889c9d053454a6bfc0992f917b2a35d
MD5 c14aee01998fbdf27ce49b7e436878f8
BLAKE2b-256 785c20d757441517c27c7b677df671b2a2be797b95430188451a609e35fc2053

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.11.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 7980a6bd957dee4db5dc85578333b9a88158f24c04c807936136792518959c9f
MD5 0b8add0b666d9478a1ef680adbb5becf
BLAKE2b-256 9e0609e8631b436f00d450c8387defde03d7d79c5ecfba3fc066b5ed6e764f43

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.11.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 730d35ce0c23257a3f1c9fbab1b27ec0c0f260eed04ba44612455d4f107bdb8f
MD5 392609a2ff47d79574dae3ef037c9250
BLAKE2b-256 daabedab0a37d33e106a16517972474b3c735e9fc7bd7d04fc23eb3cd9f7201f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.11.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 565dea31287f85d4394bfdc223494080994ae4d45177dfdac22a06df2b8e053a
MD5 7e671f58bbbb70f13ad21669bf5d8995
BLAKE2b-256 1566af541122c5e4371159c042db74eef5fa9f1f39da3d14fe586e103db5d0c9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.11.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fcb4eea9ca714a88249765c1726db904ca3f6596fec6e7afde09e9546372ae0b
MD5 0f6a0e091c43dc8658cee454c1448b5a
BLAKE2b-256 3d956f5826971fb423b397f85db27a5b08301eabb051b67d85f13a79eae95c0a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.11.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5645c9e0442f37a04d4f4d0d543c373f5a10a7e2ea444b533038933123945968
MD5 70aa38096117e39b84a67beeb0249025
BLAKE2b-256 f5b17f2abf25a06d75f48ed7f9db495aad916300dd1b13afb13f9a1e8dc7e833

See more details on using hashes here.

Provenance

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

Supported by

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