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.13.1.tar.gz (242.0 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.13.1-cp315-cp315t-win_amd64.whl (625.3 kB view details)

Uploaded CPython 3.15tWindows x86-64

aioesphomeapi-45.13.1-cp315-cp315t-win32.whl (567.0 kB view details)

Uploaded CPython 3.15tWindows x86

aioesphomeapi-45.13.1-cp315-cp315t-musllinux_1_2_x86_64.whl (749.6 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ x86-64

aioesphomeapi-45.13.1-cp315-cp315t-musllinux_1_2_i686.whl (732.0 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ i686

aioesphomeapi-45.13.1-cp315-cp315t-musllinux_1_2_armv7l.whl (721.0 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.13.1-cp315-cp315t-musllinux_1_2_aarch64.whl (732.5 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARM64

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

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

aioesphomeapi-45.13.1-cp315-cp315t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (705.1 kB view details)

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

aioesphomeapi-45.13.1-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (724.4 kB view details)

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

aioesphomeapi-45.13.1-cp315-cp315t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (719.6 kB view details)

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

aioesphomeapi-45.13.1-cp315-cp315t-macosx_11_0_arm64.whl (659.6 kB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

aioesphomeapi-45.13.1-cp315-cp315t-macosx_10_15_x86_64.whl (665.4 kB view details)

Uploaded CPython 3.15tmacOS 10.15+ x86-64

aioesphomeapi-45.13.1-cp315-cp315-win_amd64.whl (586.6 kB view details)

Uploaded CPython 3.15Windows x86-64

aioesphomeapi-45.13.1-cp315-cp315-win32.whl (524.8 kB view details)

Uploaded CPython 3.15Windows x86

aioesphomeapi-45.13.1-cp315-cp315-musllinux_1_2_x86_64.whl (749.3 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ x86-64

aioesphomeapi-45.13.1-cp315-cp315-musllinux_1_2_i686.whl (728.8 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ i686

aioesphomeapi-45.13.1-cp315-cp315-musllinux_1_2_armv7l.whl (711.6 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.13.1-cp315-cp315-musllinux_1_2_aarch64.whl (720.9 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARM64

aioesphomeapi-45.13.1-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (741.6 kB view details)

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

aioesphomeapi-45.13.1-cp315-cp315-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (715.9 kB view details)

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

aioesphomeapi-45.13.1-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (713.8 kB view details)

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

aioesphomeapi-45.13.1-cp315-cp315-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (716.7 kB view details)

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

aioesphomeapi-45.13.1-cp315-cp315-macosx_11_0_arm64.whl (613.1 kB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

aioesphomeapi-45.13.1-cp315-cp315-macosx_10_15_x86_64.whl (626.8 kB view details)

Uploaded CPython 3.15macOS 10.15+ x86-64

aioesphomeapi-45.13.1-cp314-cp314t-win_amd64.whl (626.5 kB view details)

Uploaded CPython 3.14tWindows x86-64

aioesphomeapi-45.13.1-cp314-cp314t-win32.whl (566.6 kB view details)

Uploaded CPython 3.14tWindows x86

aioesphomeapi-45.13.1-cp314-cp314t-musllinux_1_2_x86_64.whl (750.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

aioesphomeapi-45.13.1-cp314-cp314t-musllinux_1_2_i686.whl (770.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

aioesphomeapi-45.13.1-cp314-cp314t-musllinux_1_2_armv7l.whl (688.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.13.1-cp314-cp314t-musllinux_1_2_aarch64.whl (734.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

aioesphomeapi-45.13.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (741.7 kB view details)

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

aioesphomeapi-45.13.1-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (672.0 kB view details)

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

aioesphomeapi-45.13.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (728.6 kB view details)

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

aioesphomeapi-45.13.1-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (758.0 kB view details)

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

aioesphomeapi-45.13.1-cp314-cp314t-macosx_11_0_arm64.whl (659.6 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

aioesphomeapi-45.13.1-cp314-cp314t-macosx_10_15_x86_64.whl (666.1 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

aioesphomeapi-45.13.1-cp314-cp314-win_amd64.whl (586.2 kB view details)

Uploaded CPython 3.14Windows x86-64

aioesphomeapi-45.13.1-cp314-cp314-win32.whl (524.8 kB view details)

Uploaded CPython 3.14Windows x86

aioesphomeapi-45.13.1-cp314-cp314-musllinux_1_2_x86_64.whl (744.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ i686

aioesphomeapi-45.13.1-cp314-cp314-musllinux_1_2_armv7l.whl (679.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.13.1-cp314-cp314-musllinux_1_2_aarch64.whl (719.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

aioesphomeapi-45.13.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (736.8 kB view details)

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

aioesphomeapi-45.13.1-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (676.9 kB view details)

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

aioesphomeapi-45.13.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (712.7 kB view details)

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

aioesphomeapi-45.13.1-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (758.5 kB view details)

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

aioesphomeapi-45.13.1-cp314-cp314-macosx_11_0_arm64.whl (613.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

aioesphomeapi-45.13.1-cp314-cp314-macosx_10_15_x86_64.whl (626.6 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

aioesphomeapi-45.13.1-cp313-cp313-win_amd64.whl (573.5 kB view details)

Uploaded CPython 3.13Windows x86-64

aioesphomeapi-45.13.1-cp313-cp313-win32.whl (515.9 kB view details)

Uploaded CPython 3.13Windows x86

aioesphomeapi-45.13.1-cp313-cp313-musllinux_1_2_x86_64.whl (740.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

aioesphomeapi-45.13.1-cp313-cp313-musllinux_1_2_i686.whl (768.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

aioesphomeapi-45.13.1-cp313-cp313-musllinux_1_2_armv7l.whl (687.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.13.1-cp313-cp313-musllinux_1_2_aarch64.whl (709.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aioesphomeapi-45.13.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (732.8 kB view details)

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

aioesphomeapi-45.13.1-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (684.0 kB view details)

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

aioesphomeapi-45.13.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (702.6 kB view details)

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

aioesphomeapi-45.13.1-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (756.4 kB view details)

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

aioesphomeapi-45.13.1-cp313-cp313-macosx_11_0_arm64.whl (607.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aioesphomeapi-45.13.1-cp313-cp313-macosx_10_13_x86_64.whl (623.4 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aioesphomeapi-45.13.1-cp312-cp312-win_amd64.whl (576.4 kB view details)

Uploaded CPython 3.12Windows x86-64

aioesphomeapi-45.13.1-cp312-cp312-win32.whl (517.8 kB view details)

Uploaded CPython 3.12Windows x86

aioesphomeapi-45.13.1-cp312-cp312-musllinux_1_2_x86_64.whl (744.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

aioesphomeapi-45.13.1-cp312-cp312-musllinux_1_2_i686.whl (774.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

aioesphomeapi-45.13.1-cp312-cp312-musllinux_1_2_armv7l.whl (689.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.13.1-cp312-cp312-musllinux_1_2_aarch64.whl (713.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aioesphomeapi-45.13.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (737.1 kB view details)

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

aioesphomeapi-45.13.1-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (686.1 kB view details)

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

aioesphomeapi-45.13.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (707.8 kB view details)

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

aioesphomeapi-45.13.1-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (764.8 kB view details)

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

aioesphomeapi-45.13.1-cp312-cp312-macosx_11_0_arm64.whl (613.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aioesphomeapi-45.13.1-cp312-cp312-macosx_10_13_x86_64.whl (629.7 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aioesphomeapi-45.13.1-cp311-cp311-win_amd64.whl (585.4 kB view details)

Uploaded CPython 3.11Windows x86-64

aioesphomeapi-45.13.1-cp311-cp311-win32.whl (525.8 kB view details)

Uploaded CPython 3.11Windows x86

aioesphomeapi-45.13.1-cp311-cp311-musllinux_1_2_x86_64.whl (759.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

aioesphomeapi-45.13.1-cp311-cp311-musllinux_1_2_i686.whl (796.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

aioesphomeapi-45.13.1-cp311-cp311-musllinux_1_2_armv7l.whl (700.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.13.1-cp311-cp311-musllinux_1_2_aarch64.whl (734.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aioesphomeapi-45.13.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (752.4 kB view details)

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

aioesphomeapi-45.13.1-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (698.5 kB view details)

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

aioesphomeapi-45.13.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (728.9 kB view details)

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

aioesphomeapi-45.13.1-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (785.8 kB view details)

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

aioesphomeapi-45.13.1-cp311-cp311-macosx_11_0_arm64.whl (614.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aioesphomeapi-45.13.1-cp311-cp311-macosx_10_9_x86_64.whl (627.9 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for aioesphomeapi-45.13.1.tar.gz
Algorithm Hash digest
SHA256 551a21450f6cd1cba8f8abf9909cb8d6c3cfab24cf2ff2fcaf42502aedd7664a
MD5 cb563b7daf02999eb29bb7b189c7f05f
BLAKE2b-256 41c724ac719e8b7c754a7a95d86a542cb7778e75025875431f83503f4a599d23

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.13.1-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 4b95e0fff83d06fd22d8f01dfd35d19d89daa5384f36f6bf061f835fb1c4e5c2
MD5 60bd62a3d7857ba8373fa573a3eddcd3
BLAKE2b-256 0b3eedea66a182a9eea28df96a4999c1c688b1c7746766a56167a51a15c74390

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.13.1-cp315-cp315t-win_amd64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.13.1-cp315-cp315t-win32.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.13.1-cp315-cp315t-win32.whl
Algorithm Hash digest
SHA256 2aa7efe943b835d859d5b516cd28a849535ccf5d20a5d0189a5063ad3a2b770e
MD5 ce097a5eb4e4aca417080547463a1ac6
BLAKE2b-256 b570841e936821460cd58fb267a41cc901c5b5df1c76e3d9df9895b9ae473654

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.13.1-cp315-cp315t-win32.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.13.1-cp315-cp315t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.13.1-cp315-cp315t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b123d327b63851ceb3f06baa25d195fd510a7c4b40c64a8129e32150f9300d70
MD5 67a79f7c77f1e05f5865f38cbd823149
BLAKE2b-256 5d567e92ba98d90eea861f2719118d570138d0d182b7996dec628fca92df06db

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.13.1-cp315-cp315t-musllinux_1_2_x86_64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.13.1-cp315-cp315t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.13.1-cp315-cp315t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 dccd9a2be43647baeefe37cbe00916fd7f1c99b81fd4e74149d4c48ea1339e10
MD5 af3f104d97ae66a7b2bd847fc5b11368
BLAKE2b-256 9ddfd6bf389e3f842ba9bd604191a09fdf2a707de8091d9770b297589747d4bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.13.1-cp315-cp315t-musllinux_1_2_i686.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.13.1-cp315-cp315t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.13.1-cp315-cp315t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9884e5e87efa28417ef7331eab5212de247343ceeb531fa65ed8332bd77e1d2c
MD5 51b5ab220889169ba0dae26aa1a5c383
BLAKE2b-256 b393544cd192b91064c093e7be2040568077c1cc5a381151a81554e4dc6598ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.13.1-cp315-cp315t-musllinux_1_2_armv7l.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.13.1-cp315-cp315t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.13.1-cp315-cp315t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a0e9efb82838473e0a13288c4b125ac4462fdfa45f9df85f7489169a3ef30811
MD5 525c746422867e94cf0afa0675be5ad5
BLAKE2b-256 be0b8bc5bfe505ea6820f6985fb05b7387f7395f535c25d87f21b0ddc29de542

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.13.1-cp315-cp315t-musllinux_1_2_aarch64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.13.1-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.13.1-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c5cce2be61d215fb2832cb99a1a882ea46e6a38fbe671d842fbc618ec6c8ec95
MD5 6789f078eb80aeb8155c1c522969a18a
BLAKE2b-256 6adb254acc6e2a16df51e2c1f92e82477bf3567c3b37c4c702f62d8248dba912

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.13.1-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.13.1-cp315-cp315t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.13.1-cp315-cp315t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 ea048e13de3a5a1966032ecbea789513c97d7d6d33665add4b03d69729d1838b
MD5 7cad5fb824d9882435adbf3e09ea2970
BLAKE2b-256 0b3a0ef33cfc590b35aa0a6ddf4a9580688b3d3c2a21e00ac0c66c01d0535e74

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.13.1-cp315-cp315t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.13.1-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.13.1-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e813b1ac57825112b1cf5f1bec80e375c32dc7de8c79a1a7fb90dd17b6166332
MD5 6f215cf0194a7b993ffe72490950c8d6
BLAKE2b-256 200bd02a0f2e23ba103e4697386d3b94bd10d9bc01d1e4cfbe9209b1b95044a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.13.1-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.13.1-cp315-cp315t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.13.1-cp315-cp315t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 5c364851972c4355005bddae5335a32ecb555aedf7cedf054fd774297685cb48
MD5 31a17e9c9caa9bc910be627eb12689fe
BLAKE2b-256 abdf2bfa3ce3376676cac3ac3a3d36b822e181e51edbe9d3f8915a315d218a2d

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.13.1-cp315-cp315t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.13.1-cp315-cp315t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.13.1-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5cf0f887c01b2049e9dbb84524b66aa0b77150f51b04d595ae95b6776fcc1b92
MD5 293f56583a193fe0626b9d3758000587
BLAKE2b-256 59ba01cd5b969562528c7096b5d7cb999c42cbfa44080a966de7da565d30e207

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.13.1-cp315-cp315t-macosx_11_0_arm64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.13.1-cp315-cp315t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.13.1-cp315-cp315t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ba7bacd46675715556c338f9e62c5a08dda415d25bfa07927bf11fd48901be82
MD5 ac958c9a842e1871953f816f5f30ff57
BLAKE2b-256 400dc07372f35237e0a342c403a5c21a6f7d66e630758f071aa94cd1ef4af24f

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.13.1-cp315-cp315t-macosx_10_15_x86_64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.13.1-cp315-cp315-win_amd64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.13.1-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 1b3e736075efccfae4cc87241ab49edbb200c4d4c436a1badc063bb06dd7b638
MD5 69659865637dff98edb59a6430e8cffa
BLAKE2b-256 6fb3062aa2ee6dbfdad66ac1a40599531ced9ba19d0cba10b3501d7952ddbba8

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.13.1-cp315-cp315-win_amd64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.13.1-cp315-cp315-win32.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.13.1-cp315-cp315-win32.whl
Algorithm Hash digest
SHA256 6deaac0508538cda5cdc5a1dd213ed20d4e4de1611108423b2580d751d77b2b2
MD5 16f209ff9cfbf74c8e2da8c0296d392e
BLAKE2b-256 7e4c25908a896ac350aadaa5614f869fab040302891e7ae84a03b08cf97d749a

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.13.1-cp315-cp315-win32.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.13.1-cp315-cp315-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.13.1-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5df91be797209b5a192c8c5e885cf915adc93d3b470ec64f752081ee358460af
MD5 2292333a9ac9cac4235ae59eb7e9a3c6
BLAKE2b-256 4e98c7ecb0eb4cc7e2ad2c96f4c946e52154998ac8eee8795fb234f347ae8e6b

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.13.1-cp315-cp315-musllinux_1_2_x86_64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.13.1-cp315-cp315-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.13.1-cp315-cp315-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b58cbbeb6f69cdfa0288229692c0dfb9e1affe180f246894a91dfa4a91ea8aa0
MD5 ce94ecf029e660e1f5ade73699e79a1f
BLAKE2b-256 97b20a26b194eb55e9385ce65717e36ca559962ba2e660dfe8449471b961788f

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.13.1-cp315-cp315-musllinux_1_2_i686.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.13.1-cp315-cp315-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.13.1-cp315-cp315-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0a93a8ec279472059e598c3ce9d3c9e7f1af85e1c303ea42873378d6c9880c6e
MD5 11a2dc388d533596a206abb456579463
BLAKE2b-256 609152d3b80743f18ec30046048f619cdb1954b996730f13c5c39d2caa30638b

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.13.1-cp315-cp315-musllinux_1_2_armv7l.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.13.1-cp315-cp315-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.13.1-cp315-cp315-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dfa3da5e49869924da306166b34cad9cff48db81d6fdeef46e71600730e0d3fb
MD5 a4f0c70e8e7da8c98adda7040038a4ae
BLAKE2b-256 664127825190b95c0ebe8aa5fc4883fb3445e71f9f9b71b5444293ec3c59c5a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.13.1-cp315-cp315-musllinux_1_2_aarch64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.13.1-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.13.1-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b721ce944369c41b0309d60cd31ae037a3ed2c00f25f711b265ff69e30469fc3
MD5 488d66d93f4aec069c9d828b3bcd111a
BLAKE2b-256 14849979cfe9c639f2297bb81035ef8da868bd7ec074d16cb7f34df1b88728b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.13.1-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.13.1-cp315-cp315-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.13.1-cp315-cp315-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 a1d549c861411cfd983c8914c5df62c41d95491904d8cdcecc2f2421aa0b61bf
MD5 a5dd637a7477e82e2cf007a3a0982a94
BLAKE2b-256 6b97f7f3c8974c8f209607b21828f54fbb6e61317c3183885c48080e6e32231f

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.13.1-cp315-cp315-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.13.1-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.13.1-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ac758d2e204cd14104072cc4dc01726f39e557172db801f7e4872726b4dde3b3
MD5 2c0edd75f94ce71679abac4968fcb4db
BLAKE2b-256 a17d5b9a391f042067c111d91d53dab8ea03eb3b24c4a2b538c84e7893a08bf5

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.13.1-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.13.1-cp315-cp315-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.13.1-cp315-cp315-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 31c467173648129d7383c28a58767ecca089df1338eb1d23c177028e93ff69f4
MD5 73169b1427811053544a0cc0a0fa60e9
BLAKE2b-256 cceccafdd1a0238320af1cae52c57ab78a15b6b08c42d6d23197ded7077ee93a

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.13.1-cp315-cp315-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.13.1-cp315-cp315-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.13.1-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d7a9c2ca9b941e4bd96ae125c497479bf863fe642dbf75fff61bd948e42d621b
MD5 f37ad94a109cef62c6e6f16df7f2dd0e
BLAKE2b-256 22d1d45c9aceea61a918eb75306733478ae4d9e3ce21ff776520f2c712f39446

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.13.1-cp315-cp315-macosx_11_0_arm64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.13.1-cp315-cp315-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.13.1-cp315-cp315-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 4cfb3e8bebfe99adf9db22abd238a1ef1434388456723dc609610a0df07636ff
MD5 1fd1df2042fd5b661f33d00a68f20b64
BLAKE2b-256 2bd0710197744e51966dc0a0ef634785948dcff1f1da550905f9bb901ff23891

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.13.1-cp315-cp315-macosx_10_15_x86_64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.13.1-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.13.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 58974100293aece8be00838e27e2dcce5d8e730d1fdb2f9f09bdb9dd70019096
MD5 c3f71dce59a209edf960ab342075b40f
BLAKE2b-256 a0e179a9eacf1d40035d30ebb8fcb3b89c77bd4b23d072367f57eca39391702f

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.13.1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 d3a77ea3cb59f3fd3c97af370b17bf1a2ce20a4fc2705e495477917014ffaa5d
MD5 5e0e381be5ae612d945b7714c8afae2d
BLAKE2b-256 711759676906bd673eb9b356217aa300b41fc2fd5ca1771d82c5bdd61e8675ce

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.13.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 23164635bac7737d12db2997f9d14044159fa444b0d75770b46536732f0421e4
MD5 47587967c831a748619278a5196a0bf8
BLAKE2b-256 20be3fb1239fec6dc380107a2a67e570318f33c5856e2cd2977633d84a7aa075

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.13.1-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fb81faf6f62dd39cbbbe8d5c3b1986ff37a7c5d76a6bf290282dfd68577a16c0
MD5 efc2e2dffb8ebdeaca0b3d5936c9d4ab
BLAKE2b-256 0d23850f1709c60a41b20b06bbc5398bf73c3ab223d2cfe4aba27f01e5056123

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.13.1-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ee73bd045aa5e58bbdac20c3b1a660f4a929f77efa8f5874036ae9df10ff6a66
MD5 9b76a324079dc89ada10e1664ff8cd16
BLAKE2b-256 5e1b8bea50fc6733c02fbefee15f34ce60361482e8600069379e01bb9e86140f

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.13.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f783afd046f1308d2ab44db96479f7d821358a88a997db6ee396f5f395457aa0
MD5 3ecdc5d1fe78321a424ab46aa4cdb9d5
BLAKE2b-256 e165e86243689644521f4ed1d2b317f8a79537288a1aa976d8de9d2c3ed3d72b

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.13.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 07d54b27710d8b57e086683af72efa8cd62a0cfcece1a76e07f9ed2231073ea7
MD5 4d23b0415ad7ecc87b40332de5a835a0
BLAKE2b-256 6bbc3697bca118a5d8f03fa64566d168bd7a80ab56a9c6b87ef8e24487d9a8e0

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.13.1-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 bd085d8c3f096d31872eaac05932f2d08f38c5ead289e8d9af3448906fb42089
MD5 af4a43bfe9edaa0d5ed1d8d9dcc99bfc
BLAKE2b-256 3e1e071aeec4c7ab0e97a1442f621e5fc4a972434ffb20134bf3d00021545b66

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.13.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 901a7c9a9a2ceb718bab21ddc26639b88cc9c85546e49f9ba1023e36ec612311
MD5 6672b9baee32960670225b016fee050f
BLAKE2b-256 fb6b515a2b1daf6c73c2971c2b0ccc37ade039f8000952fd141bc6194f7370ae

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.13.1-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 cbe86700a5ee5af48c94c819da9f0cb423b03043b77317e06c13459c4a1ed479
MD5 1fcc11613640b5dffa2af983619429f7
BLAKE2b-256 f73b26b5e8f07abc51e768d33aea9783b563d11013aa3bfeff537bbba79d834b

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.13.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ecfac521383dd19188c62859d987187e656b796a036136ba664df9a1fa441c80
MD5 989bdfe8ef5aa7d6f3d8146bc5d46d67
BLAKE2b-256 00b9a4f3655a1f76b72b23107ca28c79fcc3a4f2bcf252ea675f97c6e2c5b7d8

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.13.1-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 be9a681bc9387aea38544306653f7adf4f2a65385a8f446791824d510330433d
MD5 11fc5a77a4fb8ba319c5750538f9f7a6
BLAKE2b-256 58eb9ea9ac4ba16667d26fa7d5bd39f2df8dccfedcdbfc439890445f89089b00

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.13.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 55838104d8cd91c28b6adb396a70f5c16b5479232653a2e1afedb17f07eccf78
MD5 a1a5313f7a48bf08efb6a686e1e4c068
BLAKE2b-256 85f3eddbd1eec042cd106b59ba0211b78b771619acfa3d43ff43b7467ead5444

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.13.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 f5569f71e8ccc30d9ddce0d37f279bde8cb6d10d28178a529deeb3bcb1200995
MD5 976714a6e396477335a0ddff0ed83ee7
BLAKE2b-256 16289bebc3d6099c7449cf6bc45deae640f66f7b01c22c09300a097ee4aa8e7b

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.13.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 142c34d5041f6824a757e1af0a4da5e12cd74e1c3ccd721695b298eebd1c93a0
MD5 886e92d5b26f3109c2b8e619df1e9c3a
BLAKE2b-256 2d96a9b8135354b7c5428cc20322f03612a66c60b1fafba29e02fb10339e97d0

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.13.1-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bce80672816c433c687fe8bb0d03ea6464b634ed40ab4745df007dca27c91024
MD5 e114a2e86ac7e798786666654e37a162
BLAKE2b-256 7a6df7c36a4b387dd18b50901207d082b08adfbb613c00b7a573633292396ee7

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.13.1-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 feaffed7f547a54cf5101756fd90fd606862b5e253cb33ba8f80e9b14134d993
MD5 02aefb8f2946fa03495ba8fcfb2c0e08
BLAKE2b-256 d6211b6dbebad42e425680321e3dbc30f6adcd88aa162b5706a3a5a32e573be3

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.13.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 27857ba7cf7e010bfe94660590e292d1c6686b493e6d7469efa8b74d3cb74ade
MD5 462de7c205b274c47d097b756360cdcc
BLAKE2b-256 5a814219e904496e17dc15362c3f7e9df5ae64ef3405d527588bc6426159b1c3

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.13.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3e351c1d3fa6d6909db0fed24c15ec8939b5b7a96c535b2056b37651b0c732ec
MD5 c85a151b49612af369a4f2296ba2a04e
BLAKE2b-256 3cb6ff2b06b3e7de14f973a93b8b99e3d0a451a91366f92a6117110119ccfd4c

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.13.1-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 915f1734e2e23f48dc5293132e8c92ce5300ff25ba2324af463b5452f0e141e1
MD5 c4aac48636b643941673295b2ecc3c09
BLAKE2b-256 db4b7230dafc0177f94701c214798905c72de3a457f87ca95b1f516ce953e8f4

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.13.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9b86f1c49fe3bcc424e6857fb74161d29f01ba5f1c8f599aaadfc4cb7313fe6a
MD5 1b1ba018bbf2c1e43d6514fd93258871
BLAKE2b-256 d276915a36a3818a92a1c14bdbce78861ccb08919a19f4391cde5d88a3ffbff4

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.13.1-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 89723abb7562afb698b9496b062d53092c91930dde19e7a2ff23ded33dc0b36b
MD5 53afc5133ed54ff1ccf52678d032e463
BLAKE2b-256 c004859c7131f5c1d4522fea5d16eab2e1150871ad64db052694bb2b7d1a5776

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.13.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 176aaab9dd62b5989bc673b109fea45f58e22e9aaf5a88a7ce76eb79d8e690ed
MD5 10b8a346178dcfaa63dbbb83f5d06cb9
BLAKE2b-256 8f510869d14ff22dbe997996528faded9cb79a7b86ac7e2522512277d11e5457

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.13.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 948cabd801f9b01ca235c8dc3709edecde70cb622f2654ceac3dd085af2528a4
MD5 5dab1af7c472656e099140f59d7875d0
BLAKE2b-256 fb2865fa85cab6ba3220a27b675b4f89ce257e8ce011f53307fb627690caa758

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.13.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e9fc7743b006dc154afadc5b035dd1e98e0864c7124346739a405e24500b8c3c
MD5 860bf4c21ab7964159bd3591ccca255b
BLAKE2b-256 064cb3a159a41234a0e482d2bb6543b5322be31142eaadc2a5249610ddec03a5

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.13.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 d66c3adaf19ca373124197a98c0cb5cbe51663d551c71ccaa81708db4c50ed5d
MD5 1b4c3ffdfd4ead5554c1808ef88f808a
BLAKE2b-256 43cbf3ddb296e9270f48d8153a6667eab824c7a95cef640a57963e3350cfad2b

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.13.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 59b01ebb352061231ea0f9e3188a9b86c72d649452e2c33b761f7c5430186200
MD5 eeeead5ce90ad823074281683c77b372
BLAKE2b-256 aaaf4fb1a197ae957ae6f457434800dca9cb5849d81bc9a1b9ef958eacd45b75

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.13.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f525d1e2114939164666beaa57bc911df2e056380d0049e2bc0cedb1ab70dfaf
MD5 6d4dce2336d2ad2ca63821ce2edbc930
BLAKE2b-256 88edbbed66d8ccf8c67116bfed39c121ca1d72f5386d07650162f23c5fb8065c

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.13.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b65d2ed7b569783db8548d4c18500b5728c7e48f901a55d1a09298f0b0e7bb3e
MD5 c59058713ea4dfe2b84fd9c2bd84ef1e
BLAKE2b-256 1eca4ea24cb4a94e7c3bf4f4dc57da175a39b4af52cb528200d3e1b8b5f7d81f

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.13.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 32da8ff921148e336fea4863746b0bba09109b60c7bbe6f3cf7eed23fe45e49a
MD5 4999e6a6e4f68160070a1ac2e71a0e47
BLAKE2b-256 10616621cff20833edd3a6d35fee868dbfe14e977af1f6d2e76b96c9b7cde9ba

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.13.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7e9316cfad09d0503bdaec430a23051c874541e99a4ee975b6384d4463da0879
MD5 e77d0bdb869afe9800d8545279921a07
BLAKE2b-256 1cc81c52316184ddd93e71a64a954e3c150f20b7c655cb1ca49bd4ac269cec47

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.13.1-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 835219e3223a30ff2691c8c3378da75af186257f5968e97a4c71a9adc3307ea8
MD5 949d5bf61ea2a7c1f0ad14b5eeab3f3d
BLAKE2b-256 8d8d8657bbb72822e5380598be86134cb17c5034e34a9d2147976bbf654a5484

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.13.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 dd401233459a0753857cf8df39a2978df2c42646664ebccde21fc8a7c0a21c01
MD5 b55db7b5b7cdf2590c660c7e4b7a60a2
BLAKE2b-256 60a8e2da55adf0be2c0084185cf2370e4a5f4d688fa71837d6e1245e511148b1

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.13.1-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 dff17219fee1bb22cce75a9ad5b0360b715db7bb71e0317d69a2bfb7f68d1c1b
MD5 be38a4507c878247f5806a9a504d19cf
BLAKE2b-256 b6dc38f889ff4fb0d21329e3e3faf31c44e93fff9625bd13eb2450535f98df4f

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.13.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b708afbf2cca0bca27b79ce1a261f2832f6197d4b2a06c3a79d2aabf605b3718
MD5 dc27810b5c4cb0cf3ba7ab1934e33a67
BLAKE2b-256 d1ac8cac803accd728a8d535024d8d2a4dfb11543974edb86dd729998ef8eaa7

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.13.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 128c7736c68b7d3b4e64579efeb919f7be6b6a8f6ac82e6d2b27cd50c810b3b7
MD5 e4d5eee192fcc91995b1a44eb9c376cf
BLAKE2b-256 60587afbc1fcae21790b5e38ce993dbe7eeed1efb52291638b3dc9c05e935920

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.13.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 08d754d6abc610c635266f0a0b3cccd5e99028fbe7e48d5889b13270cd100c8a
MD5 e1732e2d31c2fc76fe37a29208a032b4
BLAKE2b-256 be6941c5b43338d92a97fd52ee75cf95c0efa6570ad7ce84a8d72de6d5aec476

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.13.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 636bea3964293e3902e1bb9f62305ac78e3d4fbccecca4d90d62d018d3d45296
MD5 b6be6affa957817679f3280c70aaf931
BLAKE2b-256 31938bd7695032859d49b2fe8176f2abf9e7eb0333535dcb6fc188396798d8ae

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.13.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8255f6414b3b300063b90f86aaaab8026794b79267cf644854912356b8140c0f
MD5 1f2c18fa1ef9f4f5b31fcee609e89c7d
BLAKE2b-256 6d52adf9e5ec3798e50e8242f2c39063177945433e8ce487309d5e2f7e7d0d8f

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.13.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2c090260b1b1b6cada579a2dfd5a93304345f9ac4a472dd671334de673757f94
MD5 147dd26bfb79a39ebb66bd618ea6b946
BLAKE2b-256 5498286a7a38eb46d9e9e957246cecf15135db5b1e34cd92e10ae5e56cbf1b2b

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.13.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d01a1314e502e41c67f1174326daa32a3392a7ff76e60bfbde322e8d313b90d2
MD5 92bf0b986cef98c25bd19e852bb4bc65
BLAKE2b-256 5fa690e845083080456dbb09df793c861785ad93c582f41c3721a0e1ad6a98f9

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.13.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d0ea3c4ff7506347e34c8c235b75c9ca7b3716e495a8329b2b435e80cf74af57
MD5 5ec5444bca4b903e416176896d8e0c5d
BLAKE2b-256 71c0642314965a84936e21efa1a268be32116da7dc8f80aadea4dd402b86c7c1

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.13.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e5dfed9fd0a726220c4d3e631e3f53a1ea9b992baa5df6174aef0bfcfe4cacc9
MD5 c1a847a59bcbf503a1e7851d6ce7c29b
BLAKE2b-256 ab9e72b45d976d1409102f20c1b438df3b1efe75374892c7bd1e60eeedcbd133

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.13.1-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 4d6e22790f5198f7e6a26b4eb461c7eab09c1ea9dfeb22f954fe71feb81ef9bd
MD5 4d3a8b575b73907dede65779cdd41d96
BLAKE2b-256 b93b986c378dcff84650f3983d75d14045769e6efa0346f3e74363b9c658fc92

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.13.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8534b928d4e5708aa5cf8f61026fa7b43d89a7b79d494f22ac94b256cf47de8e
MD5 018a14364f6de5b50e05fa9ea9f5e4e8
BLAKE2b-256 d4f7ffa2ff508057c210de42a25582ed99ad648c02dd2f6bcd93470203d5d9de

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.13.1-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 a20f950182f1891fb4c13a7152dd0b43a7ac17eff77c5b3740d61dc04d027ecf
MD5 4f76cfb0bc3e4ca8262d622ffc2685c9
BLAKE2b-256 a96553a74fa03bd17f52f49758c5bcbeebb571d237cd58db69b7036c023ad18a

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.13.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8533d9eaa9d283617358041e0f6f8a64ea9b0000d956f6419294bab24f447db3
MD5 331a754f3e06e47f4f7a0642c1422405
BLAKE2b-256 e0240a671a7519501a29dd1dcfc5fd097dda2d0fdcd717d01f01945c0c4af14b

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.13.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 ceee1deab9202dcb7222fdcfa08b171094b71d6bfbe481c3322f0c35b42ccc29
MD5 8e32dad5018ca8d08e7c28afac7a74c2
BLAKE2b-256 65afcca4852309430a54a7df4d076170b1b9d1d93d72f022163618975a550865

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.13.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 014be2680197b848522ee73bcecd599b4e3c10675df3d21a012f60adcb28cf64
MD5 80639211624da38758ac22dee36ff857
BLAKE2b-256 ee9e4b208271aa0661d1ad7b0898cb4e097e2f2d7e7100517dcf77521fe3d1ed

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.13.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 163090f08dc52ec6f36ea8b72cf15b6b970499f5566d8db5aee05d49a4e84596
MD5 48f944e65e553cf6706aac4ec95bbdbc
BLAKE2b-256 1c3965331852663c4ace874f395c337edce75d526957607419788a028878859c

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.13.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7194bee7f8f6b89fe20384a1dce2be39bffd64bfb15602ef06e02fe4c84b42ec
MD5 4e081a39a43a09c113ffa9cb15b973c3
BLAKE2b-256 33de5fcedea00f5e2b753dab4aca97964668953d893f938d3f1cae9e7ffd7886

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.13.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6257a11c62754d87cb1522cbbd267377a2f6ca76a4ec422ecc44d0e08b6c6ba6
MD5 d609594fcfa63770b3b3fe2e3adfa766
BLAKE2b-256 ce36363e31e9089f5075f1b4367ced744477c6b32ac358301cc9869a1db41a7e

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.13.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a12204b2b0c95f22e1b1b4910bd2ea36ead70910da84fff4543acd62f9dc3398
MD5 060ee7c3b4cf6eaf6974aa99cdf0866d
BLAKE2b-256 626c2c3115cd3b0545637f37039bdd650eea0e537208ebbbfaa3a4273ddbe065

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.13.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 feee3a8fb6a99c6e6f8e3f8d6b27b24d02628c33adcfadcd3e21b2156962f917
MD5 f9fb1bc318891fb6c867c763013499dd
BLAKE2b-256 8f79a1e5e97b423c642b7b5b907b1e77dd6dc9551ef04a711dd9159d587970a2

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.13.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f272fbfac3d6881e40626bf7cf645fac2642a1790e741754c503d1d34c8c4722
MD5 1fb50f55ed2070a9b5dbb9eefb5f3d6a
BLAKE2b-256 da99fe9db26b2122545f91a2100a1b4083354d7f585cd6d3fe08919c99b54b2d

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.13.1-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 284a012eb6bbbc5a468db15c509d257e79dd4920e6c2b4cc373d350e250fee01
MD5 a334b7b59210895e57e46feb8c0be938
BLAKE2b-256 8d5b9bb9e5476256d234b866c52faae4b58c87e9c221a331783dcd65698e5476

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.13.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c66180ebe28abd97b8166174dbfd74d1b13807271954bf2bd68f8248f1254c8a
MD5 025a0d06314082b657595690b3c65eff
BLAKE2b-256 62ce65c620c6b4eb9f7941e6b55e9f32bdb45bb4a9b41280e7ac3db7915e33f9

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.13.1-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 85a61da5cc578c84eb2529f351efcc7e63188aae1361d0f5d732ab2594241737
MD5 63b9a71b8b485a97841a599bebbd1fbc
BLAKE2b-256 67f4c6690415442b8dc719eff812069d57b8fa8f3af1cd73619ce73e0b55b936

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.13.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cce8b7e3f756adf6c41b8ce9c6c4f7edd1214fc043cca1ba8dcdac889250196f
MD5 11711e5831628c7b2a8bf715165dbf18
BLAKE2b-256 6037653b0a512ccb18bd3e05c33b2c2bb6db116a196e2dfb1b5b9275d322a69e

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.13.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4813a03b42bd2ffbb13bbdb338292a38b9228069e25c28b8ecb3a6d23d625311
MD5 6e18494c9cdb180c3e43ca7e839b26df
BLAKE2b-256 4779f8ffa117de58d521142146a60904ce827706e0f1d326660ca2a7bf68db6d

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

Release history Release notifications | RSS feed

46.3.0

85 files

46.2.1

85 files

46.2.0

85 files

46.1.0

85 files

46.0.0

85 files

This release

45.13.1 This release

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