Skip to main content

Python API for interacting with ESPHome devices.

Project description

https://github.com/esphome/aioesphomeapi/workflows/CI/badge.svg https://img.shields.io/pypi/v/aioesphomeapi.svg https://codecov.io/gh/esphome/aioesphomeapi/branch/main/graph/badge.svg https://img.shields.io/endpoint?url=https://codspeed.io/badge.json

aioesphomeapi allows you to interact with devices flashed with ESPHome.

Installation

The module is available from the Python Package Index.

$ pip3 install aioesphomeapi

An optional cython extension is available for better performance, and the module will try to build it automatically.

The extension requires a C compiler and Python development headers. The module will fall back to the pure Python implementation if they are unavailable.

Building the extension can be forcefully disabled by setting the environment variable SKIP_CYTHON to 1.

Usage

It’s required that you enable the Native API component for the device.

# Example configuration entry
api:

For secure communication, use encryption (recommended):

api:
  encryption:
    key: !secret api_encryption_key

Generate an encryption key with openssl rand -base64 32 or visit https://esphome.io/components/api/

Note: Password authentication was removed in ESPHome 2026.1.0. Encryption is optional but recommended for security.

To connect to older devices still using password authentication:

api = aioesphomeapi.APIClient("device.local", 6053, password="MyPassword")

Check the output to get the local address of the device or use the name: under esphome: from the device configuration.

[17:56:38][C][api:095]: API Server:
[17:56:38][C][api:096]:   Address: api_test.local:6053

The sample code below will connect to the device and retrieve details.

import aioesphomeapi
import asyncio

async def main():
    """Connect to an ESPHome device and get details."""

    # Establish connection
    api = aioesphomeapi.APIClient(
        "api_test.local",
        6053,
        noise_psk="YOUR_ENCRYPTION_KEY",  # Remove if not using encryption
    )
    await api.connect(login=True)

    # Get API version of the device's firmware
    print(api.api_version)

    # Show device details
    device_info = await api.device_info()
    print(device_info)

    # List all entities of the device
    entities = await api.list_entities_services()
    print(entities)

 loop = asyncio.get_event_loop()
 loop.run_until_complete(main())

Subscribe to state changes of an ESPHome device.

import aioesphomeapi
import asyncio

async def main():
    """Connect to an ESPHome device and wait for state changes."""
    api = aioesphomeapi.APIClient(
        "api_test.local",
        6053,
        noise_psk="YOUR_ENCRYPTION_KEY",  # Remove if not using encryption
    )
    await api.connect(login=True)

    def change_callback(state):
        """Print the state changes of the device."""
        print(state)

    # Subscribe to the state changes
    api.subscribe_states(change_callback)

loop = asyncio.get_event_loop()
try:
    asyncio.ensure_future(main())
    loop.run_forever()
except KeyboardInterrupt:
    pass
finally:
    loop.close()

Other examples:

Development

For development is recommended to use a Python virtual environment (venv).

# Setup virtualenv (optional)
$ python3 -m venv .
$ source bin/activate
# Install aioesphomeapi and development depenencies
$ pip3 install -e .
$ pip3 install -r requirements/test.txt

# Run linters & test
$ script/lint
# Update protobuf _pb2.py definitions (requires docker or podman)
$ docker run --rm -v $PWD:/aioesphomeapi ghcr.io/esphome/aioesphomeapi-proto-builder:latest
# Or with podman:
$ podman run --rm -v $PWD:/aioesphomeapi --userns=keep-id ghcr.io/esphome/aioesphomeapi-proto-builder:latest

A cli tool is also available for watching logs:

aioesphomeapi-logs --help

A cli tool is also available to discover devices:

aioesphomeapi-discover --help

License

aioesphomeapi is licensed under MIT, for more details check LICENSE.

Project details


Release history Release notifications | RSS feed

Download files

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

Source Distribution

aioesphomeapi-45.3.1.tar.gz (222.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.3.1-cp314-cp314t-win_amd64.whl (657.3 kB view details)

Uploaded CPython 3.14tWindows x86-64

aioesphomeapi-45.3.1-cp314-cp314t-win32.whl (580.7 kB view details)

Uploaded CPython 3.14tWindows x86

aioesphomeapi-45.3.1-cp314-cp314t-musllinux_1_2_x86_64.whl (710.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

aioesphomeapi-45.3.1-cp314-cp314t-musllinux_1_2_i686.whl (732.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

aioesphomeapi-45.3.1-cp314-cp314t-musllinux_1_2_armv7l.whl (654.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.3.1-cp314-cp314t-musllinux_1_2_aarch64.whl (699.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

aioesphomeapi-45.3.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (702.3 kB view details)

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

aioesphomeapi-45.3.1-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (639.1 kB view details)

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

aioesphomeapi-45.3.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (692.0 kB view details)

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

aioesphomeapi-45.3.1-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (720.1 kB view details)

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

aioesphomeapi-45.3.1-cp314-cp314t-macosx_11_0_arm64.whl (620.2 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

aioesphomeapi-45.3.1-cp314-cp314t-macosx_10_15_x86_64.whl (626.1 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

aioesphomeapi-45.3.1-cp314-cp314-win_amd64.whl (563.4 kB view details)

Uploaded CPython 3.14Windows x86-64

aioesphomeapi-45.3.1-cp314-cp314-win32.whl (503.4 kB view details)

Uploaded CPython 3.14Windows x86

aioesphomeapi-45.3.1-cp314-cp314-musllinux_1_2_x86_64.whl (698.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

aioesphomeapi-45.3.1-cp314-cp314-musllinux_1_2_i686.whl (722.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

aioesphomeapi-45.3.1-cp314-cp314-musllinux_1_2_armv7l.whl (637.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.3.1-cp314-cp314-musllinux_1_2_aarch64.whl (675.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

aioesphomeapi-45.3.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (690.8 kB view details)

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

aioesphomeapi-45.3.1-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (635.0 kB view details)

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

aioesphomeapi-45.3.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (669.5 kB view details)

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

aioesphomeapi-45.3.1-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (711.8 kB view details)

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

aioesphomeapi-45.3.1-cp314-cp314-macosx_11_0_arm64.whl (576.4 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

aioesphomeapi-45.3.1-cp314-cp314-macosx_10_15_x86_64.whl (590.2 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

aioesphomeapi-45.3.1-cp313-cp313t-win_amd64.whl (624.3 kB view details)

Uploaded CPython 3.13tWindows x86-64

aioesphomeapi-45.3.1-cp313-cp313t-win32.whl (557.7 kB view details)

Uploaded CPython 3.13tWindows x86

aioesphomeapi-45.3.1-cp313-cp313t-musllinux_1_2_x86_64.whl (707.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

aioesphomeapi-45.3.1-cp313-cp313t-musllinux_1_2_i686.whl (729.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

aioesphomeapi-45.3.1-cp313-cp313t-musllinux_1_2_armv7l.whl (652.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.3.1-cp313-cp313t-musllinux_1_2_aarch64.whl (696.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

aioesphomeapi-45.3.1-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (698.5 kB view details)

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

aioesphomeapi-45.3.1-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (637.6 kB view details)

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

aioesphomeapi-45.3.1-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (688.7 kB view details)

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

aioesphomeapi-45.3.1-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (716.9 kB view details)

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

aioesphomeapi-45.3.1-cp313-cp313t-macosx_11_0_arm64.whl (619.1 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

aioesphomeapi-45.3.1-cp313-cp313t-macosx_10_13_x86_64.whl (624.1 kB view details)

Uploaded CPython 3.13tmacOS 10.13+ x86-64

aioesphomeapi-45.3.1-cp313-cp313-win_amd64.whl (552.4 kB view details)

Uploaded CPython 3.13Windows x86-64

aioesphomeapi-45.3.1-cp313-cp313-win32.whl (494.6 kB view details)

Uploaded CPython 3.13Windows x86

aioesphomeapi-45.3.1-cp313-cp313-musllinux_1_2_x86_64.whl (694.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

aioesphomeapi-45.3.1-cp313-cp313-musllinux_1_2_i686.whl (720.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

aioesphomeapi-45.3.1-cp313-cp313-musllinux_1_2_armv7l.whl (644.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.3.1-cp313-cp313-musllinux_1_2_aarch64.whl (666.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aioesphomeapi-45.3.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (687.3 kB view details)

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

aioesphomeapi-45.3.1-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (641.4 kB view details)

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

aioesphomeapi-45.3.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (660.6 kB view details)

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

aioesphomeapi-45.3.1-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (709.2 kB view details)

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

aioesphomeapi-45.3.1-cp313-cp313-macosx_11_0_arm64.whl (571.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aioesphomeapi-45.3.1-cp313-cp313-macosx_10_13_x86_64.whl (587.0 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aioesphomeapi-45.3.1-cp312-cp312-win_amd64.whl (556.6 kB view details)

Uploaded CPython 3.12Windows x86-64

aioesphomeapi-45.3.1-cp312-cp312-win32.whl (496.3 kB view details)

Uploaded CPython 3.12Windows x86

aioesphomeapi-45.3.1-cp312-cp312-musllinux_1_2_x86_64.whl (699.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

aioesphomeapi-45.3.1-cp312-cp312-musllinux_1_2_i686.whl (725.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

aioesphomeapi-45.3.1-cp312-cp312-musllinux_1_2_armv7l.whl (647.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.3.1-cp312-cp312-musllinux_1_2_aarch64.whl (671.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aioesphomeapi-45.3.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (692.8 kB view details)

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

aioesphomeapi-45.3.1-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (645.3 kB view details)

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

aioesphomeapi-45.3.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (665.8 kB view details)

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

aioesphomeapi-45.3.1-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (716.2 kB view details)

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

aioesphomeapi-45.3.1-cp312-cp312-macosx_11_0_arm64.whl (577.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aioesphomeapi-45.3.1-cp312-cp312-macosx_10_13_x86_64.whl (593.3 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aioesphomeapi-45.3.1-cp311-cp311-win_amd64.whl (558.9 kB view details)

Uploaded CPython 3.11Windows x86-64

aioesphomeapi-45.3.1-cp311-cp311-win32.whl (504.9 kB view details)

Uploaded CPython 3.11Windows x86

aioesphomeapi-45.3.1-cp311-cp311-musllinux_1_2_x86_64.whl (712.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

aioesphomeapi-45.3.1-cp311-cp311-musllinux_1_2_i686.whl (747.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

aioesphomeapi-45.3.1-cp311-cp311-musllinux_1_2_armv7l.whl (656.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.3.1-cp311-cp311-musllinux_1_2_aarch64.whl (689.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aioesphomeapi-45.3.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (705.3 kB view details)

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

aioesphomeapi-45.3.1-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (655.4 kB view details)

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

aioesphomeapi-45.3.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (684.5 kB view details)

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

aioesphomeapi-45.3.1-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (737.7 kB view details)

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

aioesphomeapi-45.3.1-cp311-cp311-macosx_11_0_arm64.whl (577.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aioesphomeapi-45.3.1-cp311-cp311-macosx_10_9_x86_64.whl (592.3 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: aioesphomeapi-45.3.1.tar.gz
  • Upload date:
  • Size: 222.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for aioesphomeapi-45.3.1.tar.gz
Algorithm Hash digest
SHA256 a88947c09878b0cf94a59cbe3c8af75fe479ff82f1ba497fd4fd651661cad735
MD5 17600bfbf272edbe5a1a0263fbe52e76
BLAKE2b-256 0991eb22ee6d5fdf7e847cb62e8631baf6807241b829b12bf07862d17f3cd267

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 da85f810de03d63b66248e7ee253156ac8e9edca7160deed8607659215afbf55
MD5 3b90d34bc3a95714b3f812545db2c098
BLAKE2b-256 9f8bf4cce2040e145fdb25311ef5695250e5cb3234eff45b47f08ad5365b5c80

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 91eda8b6c528b91d053a6c3124150f5a9c06d3d6a35fa0a7a1105beafa7e7b1d
MD5 4f431404eea67684d04c44f37e38d747
BLAKE2b-256 52f690fe18f3068a5a74ad92cca323fa84e7b4d4a3e15c70c48ef561b84bc352

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4a43e9f386bebfa9f2ef5e77b5ddea8768cd705e85417b21a1de3a0044248031
MD5 7d604d6590f68b15a747dace970cf919
BLAKE2b-256 6346e82a52917ac32608009e7f4233c768a84727082564694ec85424d1766e47

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.1-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e4ed1de28fdb73d6b880f2d7fac8bea0f099d55f11bcd79ab5d92d5f2adcc865
MD5 c5b72ceadc5ce451b81a9e6436fcb9c6
BLAKE2b-256 60addb28970229dbe9b052d7d7355e792f874c0dc9e90516f65b53e237940037

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.1-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6e2cd221ee190a3fc2f538ea2ca843d9eaead50d9cd8ce127419310e4a9c7c04
MD5 04c7af791c56c00a5bc9c75e08611880
BLAKE2b-256 a69b61a028bf4615cadec8532cb09c1ab5e77e8e3a19de7f42767f459ed7699f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 099f076350af6d6b2140117dbc418315bb968c99d6c72018b4acc9d136f3c703
MD5 93af8d033193b3c905a5f4df15045866
BLAKE2b-256 a596db15ead84f585b03196ff650d4ab2fe702da3204dc45c71b06acb62dc895

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.3.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.3.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.3.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 31efce9af7cfd57612b516ef4cb3ec370b970b3de9f303ba9b9a9138bdbdd8d0
MD5 f79a073c9ec2d2b3edd94e76acd8dc03
BLAKE2b-256 bfd20b007e5928f1a55a81944871d8dfa300f0981c8792fc76597704cfbeefcc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.1-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 d7feaf53929c5860284cebfb51f68357fc7ce15450fe58b1fb219589a0d4eebc
MD5 27083b30541313eb295d4f9b61b2e933
BLAKE2b-256 b23777fd9122d6bde489f498c61f6eaa5a255337f252a11d6d557ad726a78155

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4f8acbcc6e9b0008924d702a02b6926803e97b4ffe0d359e2e6c624ab7c1c388
MD5 23168189e9f4218d9867eb02687e171c
BLAKE2b-256 fe511547915c54ec24d7c20881fa362c554ba35294b3ba1d9a26f48e6ba23122

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.1-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 8e4d0812ff268e390ac681a0cf369a130b77cb309c6f7519223a126a408a33d7
MD5 350917cfa4c030816e15a05ed0f0e6fd
BLAKE2b-256 75f34a116eb475979b17540f6ecc34809a6942ca50bb3f848883b9510985e718

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9521e3e5813fd179ba15b9abb9f67bf56177e5a9c636eda01496e97fc8cac146
MD5 f08e063a6ab99d63ee80ca88737986dd
BLAKE2b-256 2218e486e0b3ae3a2903d08db11ec362a47928d3369d81b1efc593cf7856dc5d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.1-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 395b5277836ba292dbf79d53188e16192471d32c93d788309108efcc5cb90875
MD5 3f13fe8106792604f56b649a66fe5ad6
BLAKE2b-256 1956b4f5d5cd0fecc6075a2669f654b030bc36028bae61f5f8ff15c5611eafe7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 6cbf59331225ab387f21212d738bbc82963f584d78ae960c41f82d004dfa83e2
MD5 d9c57ee6bbc91d4721bc5443dacc5275
BLAKE2b-256 f14b3e92d7b147d239306e27c501947c339ddbd395a100b9531bfd090bf45fa5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aioesphomeapi-45.3.1-cp314-cp314-win32.whl
  • Upload date:
  • Size: 503.4 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for aioesphomeapi-45.3.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 10c84a1dd70df0a964474231271e88822df86fe421183cf617018271f313f503
MD5 ce2a222996767278adcb6111664b6e4d
BLAKE2b-256 f0f4bff922075932ff0df4d610880316a3a3face08c28d237671cb88258887d4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f7cac580dda0e4cdd7873863ddffdf66cd97f2a7cd71ff20fef0dce816f2ebb6
MD5 1d55c5a38d7c2f6d601aff349ac4e5d7
BLAKE2b-256 d0171f773c2e24d70d7c1ad49007a394d403a548874716338ca1b86c72761d10

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.1-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 34c8f966c7a0c686686c47dea4fa26ca97f8672f11dd1691c6163fb3b73fec44
MD5 c4e437e3541f4530ecead5943611919a
BLAKE2b-256 eb5d1914c422b9cfc15c35fd77cfa4a57909a13de41c5d5efb416e43119009e5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.1-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 95d70a740ab15be4fed5c850d8161c9ee37f641184b30b8a39d64ddefdae81d8
MD5 1b3f39f50e2f8a61dd2e89152e1e8e6b
BLAKE2b-256 0b169d55765807a7e9c318e4636233c0d8b84768df366b5469a9727349109d80

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fcc7eeee35ccf7cbb8593c2f7059d0173058d307297fdc1a741508c370579189
MD5 87d8c5b6f606fd3d9462d301fec8c735
BLAKE2b-256 e1b2e0205b2e1d9a3235edb845d7b52e0fb6c882166ab4a9370c61f5948747bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.3.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.3.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.3.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ceac60b668733caccdf0280868fc6dd44d7d2c0e83a06df4524f06b8e890d493
MD5 ffc94d87e259aa564f531d662da53a63
BLAKE2b-256 18886d826f6e362df6eec3698848ac123e251f31ba12952c89227aab6e1055a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.1-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 26b4dfd8ab8310d75b2208e72be64f8dde13c5a256111cd8096121ff86de1d74
MD5 7ad5aeaa00104a54ebd1e5c0fcebbc16
BLAKE2b-256 dc21f4fcec7f590808632b519ddc8de34a17a14dd6b30988500566809b90829e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 11df6d3dc28fd3b19c0c1dd77e27b6334b5832e57a574d3491ba06163267ff22
MD5 8143cf4c4c0f765db50b13f7646dfb62
BLAKE2b-256 b458cd8a15bd474c86f93ba444756531405b2982b1d2fd63a160c1ad6a776d21

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.1-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 7c9cf2059ea4507222c8e3ad92a1c25deeb8e7e663ec8cb804590ff135a6d6fa
MD5 c6fbbe142687962c738167fa8b5594b7
BLAKE2b-256 4b0882140f159ec55cf2c9f0e8bbe801de2ea3792c7520bd23b3bc07353a32fd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4fc069707750442bf952d6a22a2349d4a5a28988a9d8d4a2e951193fc3227deb
MD5 f90df54bce940f4e29f33c706be3d077
BLAKE2b-256 0982685516c491c87548eec788f81954a3637e3748b060fe0428b3720ab72ad3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 c5342db59fc6f66c91c0ad95810e7817e08d6607a17075b181530d3877104c19
MD5 7bfdb860a6437992d3bc375a7975e830
BLAKE2b-256 03c4b1354455339a5219543fb8af7dd96eeb3e19b9ade5a37ff2c8c1979d1bde

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.1-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 70b69006dbc9f90d783a5ac6fde06b04aa57bf91580322f0143d2175460563bf
MD5 d03aaa19b80f14b5541242e529c52812
BLAKE2b-256 dd8c23ac96f6e1fcd98b869c1e14e7b1012a4fa01eff7794696e300374f94956

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.3.1-cp313-cp313t-win32.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.3.1-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 1e35d9e686a6a8e7bb81aede546a8ce7826fae9eb0a8a4fde288bb71283c3fbd
MD5 199672901fc36945b28c9a9d8c8e05f1
BLAKE2b-256 da1a1ea2b67864fc074184d0b2d9ca680ab37954dd491d0e9ff329fe3df280ed

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.3.1-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.3.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 325a218d9739ab610b9551b44b2eb189f5926b8705219152fe8ed3a7d2b8d236
MD5 25c4ef0d176226da516dc9b1f054aa8d
BLAKE2b-256 45a12d03f53bec3f69578dc6c1a303c6ea5fdda7552501cd88c9ca2070eef625

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.3.1-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.3.1-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6f167bdfc3351e40ef0774d3d75de016fa7dea011d43d6106c0a52d888b37297
MD5 d1011fae0ccac2f2c2d068cf9481c976
BLAKE2b-256 a95bb1d32cc34efa783a730c8d545cdafdfc766a5a0af62540055a8c984b7b0b

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.3.1-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.3.1-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5f8d0b36864ae4d98ec0385e945b607cbd27d9a37ec30865a262a012fa9ae145
MD5 ba728f9b70b455315c512b0566c3e6d3
BLAKE2b-256 ded8b68cd685d752d75ee6ad381627a5fb546e686d27f6126e378ee4c7e6e4ed

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.3.1-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.3.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3626d87d99ff8dfeab98e44752b4863820294bc56f5ffdde4e550c1a2aef4f5f
MD5 ca03e3b0543be4cbf03452ee27384b46
BLAKE2b-256 5d1ecd6e1603237f742ed80657100386a17c660e9972e4ba3de79730d31317be

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.1-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3fc730e2e1171412be4dc5efe4bb234e7e04a61928bd92f2613d85920fbd921b
MD5 e743fcf8624da708d332cb936a4d4f0c
BLAKE2b-256 e2e4138cf4a3a296b23eedc5a9a42ec5bf4369fd5f1b7644fe3cc6d806e958ed

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.1-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 f53cf6cad6e3432476ebfb93c8ff92b6f4c0a152de557d0dc80d199991070adc
MD5 83caa1fac8eb3375a218cfd6fbc01a2f
BLAKE2b-256 dd68a605a46aac3badbe388c8d7a5f0fe4e0aff09f9af682507f1e12618a0c50

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.1-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ad0e7a7c6e6567a3bb1f7a809a1d42c553527cf1f4d03c8347c5e2743446c13c
MD5 bf4e34d7fa479ec04df996fddff91a55
BLAKE2b-256 da0e849bf769d108f88caf799857840131741d8f0f82c4e008b694ec69158f57

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.1-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 3254d68b8fc5dbb1cf336b278c6d96fe09cede886200fc06b6cab706a3c53664
MD5 2b0c3f24d425f752253f901d6862b9ef
BLAKE2b-256 8b85a42a6a8e85dcb20c4c860e2b018e01555ed83fbf67a9b4d9f6bf6fd7a0d0

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.3.1-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.3.1-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 08fe9613715e424f14e9360ec21ee553e9ad82f5f78e4bf1902b7f39c3858d96
MD5 d167a32c022427dc45e6f1bed0e4ae1e
BLAKE2b-256 8ff0dd938e08e181fe38631b2c830ed48f6d9e91c9a1e0be6ccfeb67bc22fc24

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.3.1-cp313-cp313t-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.3.1-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 92398fc51f4720844128823e9d56e63da9dd506cdfe550781aff29fc8ae7185e
MD5 f4b1307b8e75ff31c7bf53d18056663d
BLAKE2b-256 50f0f799b7031c340f53fc8263eec5a779e73334ab63987e8d23b9f6546707a4

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a09ea77e5e4f12a8e1740246fe0802a78edb61509e3e28d2665bf612f227da4a
MD5 08cfa7b04e53b0e69618946120fc873c
BLAKE2b-256 a948ecae3d9742397f3476da42c97136074d8082f7d414db227d7bcd66b07c5a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aioesphomeapi-45.3.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 494.6 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for aioesphomeapi-45.3.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 d17e3b04e837b81bb59a767605ee5fce761498fd4d92425c77f7ab7fc13e4569
MD5 24c70331f741183eb9d90d4da43729be
BLAKE2b-256 9ab86be68a794bd0de5fe9d8782dd58f9c4511d5fef8a7ff8d0c5255084d277a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 34097a51e385faef6a1f8114cff82cb9d8c662deab3739dbfc945bdf2c216d5f
MD5 a3d1a978bf422d17b5d418ef844ee000
BLAKE2b-256 b1ba2ab2b33b8ce88c04fadd237b47bb4b23b5e1c86a8105c777ced47b770540

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 43fb2e9de80dba1e381b62ddeabc67b09732abeb4a5282ba9be61a079c5a726c
MD5 00583d144a313dcec8aed2ee9ba6e29d
BLAKE2b-256 c2cea3bd100a1e7365371227d4bbb4b7308ea68856c56660f1cfbf7df0177457

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4bc29f2aee78f0dd079b4ed4c1f50fb94952ef058a521f8748c666e6fcfc5144
MD5 1ab9189d89693c099c06ed227b2fbd86
BLAKE2b-256 4b29fca33c521b4a8421f7a292d014aa7b554cc42fa4a68a20d0410ae9b22339

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c30ee93e91aa09ca58d79bbdc6316dd6f68e0c7f5b31930d8555b91f8816f483
MD5 209f86a72d6b39c64ba02736740e5c02
BLAKE2b-256 e0f0299f53810e343c27dff2f7d4c7a7e798f026944958433bc4f47f8da8a6c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.3.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.3.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.3.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fb67eb344832f8cf441693954fab816a77fa0df4df9f3d2ee30213d3bfd86ea3
MD5 1587448f79f2205c02397e5ae88f9c34
BLAKE2b-256 c585b5f903ce09b25430f9a7773b659e0700e382c7609df7ebc7796d85f9102a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.1-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 5167da9879c22a1e9036016460690cf5e2b1a78d1571fa6c7933cb92232ade2d
MD5 78b8b5b7a5e491f79facf95354b8e4aa
BLAKE2b-256 3bfd0ff80c40914705c0c22973d309feb7cc7fd6463245fef3c7bc61dfb09148

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 eb369e80b8198c467214cd738bcc2a0184eef7d2f56c440ae807b1db892b6dfd
MD5 32cdb778e9ba1a54eda63ce0e575940a
BLAKE2b-256 2339af5a91f628e7c8537f506882462d13e5c7b40daa2e61d4abdb418f8315a8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.1-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 67dec5f0e0855c0915cf5dd7cc4d539424365a8fcf5c80252010848bed938f7a
MD5 b4acfc7000d88623017a65bccebb9cb4
BLAKE2b-256 05e43596ccb8d22f9d4174514ca5842ef4d1ed4898de104c0a3042177a99c728

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5657a45f6ed8432b8d114d617c1213ee9ae71b2f25be03f17cd47c3db6ce555d
MD5 5152c211d5cae7afd17845eb6113d637
BLAKE2b-256 35e45aadd9131da6930466a693e21acba72d1eff7faf05622225fc77a945ee86

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 ddd7f7b3d2281dd73764fae78ecc6098b2cb1362899b2561947a3453ab489a64
MD5 9a9b1704947338cee26372cf1534d361
BLAKE2b-256 e4bc9cd84ff68a34ff22ce2d63f64f5d6ccfdc7204630958d7037c4f4d879f8b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 4985541bd97c9d24d1a4c3d78a403333adc952095a380aee31ddacec27850e91
MD5 a90758c11834dc7fe526c3a734a4d585
BLAKE2b-256 14b411afe88646c24a42b5dd7284bb271d17254c326dcf9977352f67f49229ab

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aioesphomeapi-45.3.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 496.3 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for aioesphomeapi-45.3.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 1ed4a78f870af88c4baf8145801e94f3107b8b8b14a513357e1495aed07cf604
MD5 a0e565c9beecd78d9dce2203a33bf427
BLAKE2b-256 e316ed47b22b669438c758e07bd333e99f2550f4dc1bbd1034673d9d4437640e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b56c64ff4984588a1a5ad2a51f70a023eb1bcd3216bd8aafc6ea00b4fe604fc0
MD5 3f1280ded1e135ca0faa314f3d85064c
BLAKE2b-256 0096e5809e6a9f855fdc1b212431ed543e67fc2735dc6e9d1398c3bb5fa7a82a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8e75199106116c667362a08749597b512613079076210f905326b5a82e84be59
MD5 d814acf84c386d0bcae548e739ce7a04
BLAKE2b-256 316d4a675d2ca22210b07e09576f29c602e13594c2c39f028078c046d01ddecb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 32297daedf72ae177bc723aefe60894044a8d7c9798ed75300c48bdf1e7929ec
MD5 17f83ef42db11cd5e7ae5d32f5796981
BLAKE2b-256 a2b1d2ba7231f7414fa5c7d13981d886905e2c727c49826fb1a6966bd8b01ffb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3181a613d5578c5170ec0ea85ab274752a6031bcaf2b0fbd3687852a528671aa
MD5 d6ebaa8668dc0c34235f0e70b3b71f0f
BLAKE2b-256 d5c915d8e3e9051638be04f121c4012cc6831c924c0132c71bfdc15db68323c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.3.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.3.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.3.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1301b00986807bc9b78cf81748cbe5bb29d7e83a360cdda67a778a3cf1ba93ed
MD5 6bc0ff5717221b18140423d3987d2679
BLAKE2b-256 98bf95c16076fc11b25bdadc0fc389d440fb4b7fde8421cbba05123fc7563bda

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.1-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 9366ad63be8b4ca34a6f89317dd1978949603fc4620ae4c595183aa346c01014
MD5 1485b829a4061a3ff99266765e7a0995
BLAKE2b-256 2e66edd9909b2a6de8cbec3889ac31f96d11934be876f983cb6773cbeef0998e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 132cebcd1e37ca98f165746c192f16cdda45ff44721d261348de075bdb11c13b
MD5 b3924bb00ac75a439bee440055f01fb8
BLAKE2b-256 398b6bbaa3caf3bd7f4eaad808585ae60233ad93fe2a920ed00e9c1fe0c0c980

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.1-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 dd856f48d62c437131c5b5b8455ea2e1ee6003474939452e38e02bbfed100c8a
MD5 7b2eec5e3ea0711803e6853a8520fd24
BLAKE2b-256 1af855001b6da6deafbc9f62fb343986d79ba955babccae47095969fd3083c86

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 436169a3c93c93fa2a0d43cd062049b915ee2fd247cf3307fc565660bc410fae
MD5 5a3b877b901a0eb85cce9e18b8149d68
BLAKE2b-256 86dfb596aa6ad79e89892a64391c7f81567a0491bffc439203c1e190ad91eb1a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9f63d92b2c16da13dbe2e18de0a49a6d9fd2c85b607bdf07f8fa60ff956ede41
MD5 bc70f54b6087682022da2d72ba81062a
BLAKE2b-256 3917a7045fe82b5998a2bdf183efc0c8c4c591f60a6d656f89777b7102b11726

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 eacfb6cf29f5d45f3a78f73c270aa8749adae5c91e93a2d971f01c0e403dabd4
MD5 d7acd49e39b6215441d2d4e89532a16e
BLAKE2b-256 d5c2004919818c8a46527a149d855cee731a4e703ace6d13bf39cb863d9aec24

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aioesphomeapi-45.3.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 504.9 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for aioesphomeapi-45.3.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 480fda3abccb99b2d3d8fad65b2213b5ae54dc9284d6a16fc7d58713d1be8fa6
MD5 f45e00a0e0414be9c976ee6557ccfe19
BLAKE2b-256 0b8a6b8d5edf02685a3041aa694cc9eb30d9e5ca5894474bf85669b1f5a98298

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 421cde66f1e2aa0a61f35c6dc62a78c5ec81832502a4a72e01b1e16b02298228
MD5 f09487a3339e7882f667086249ad7748
BLAKE2b-256 0059a5198e641092a2f17ef449eee26d51562eebd7b0e7ae1b569dffceafcb18

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5c838508421a30bbb81fd624b5eca783f892a433a406ee8265408fcb9bfe0f38
MD5 09c52ea8bc55291d00509222f6e80732
BLAKE2b-256 ebce06e2ca0bdc2a29cbf7662976d2125e8d8d33d448fbd6a09cc275bdf542f4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 509466be01bb4f560290e2a3bc0a1ace177a72debe65276054dcd71d6a670c8c
MD5 7025528c6b0f28446222c6df0758cfb0
BLAKE2b-256 d827a033ffe5cf394136aecad41f433df8b68f001624a9f8ca81f7a421c04aaf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dd5d3e9e0b90a204752dc9c79befd65903175693a54dc85f3f29eefbb4723239
MD5 560cbe62009d078172eb05fbbad21803
BLAKE2b-256 80303cab69604301a865f2b5b71ce65dcf9fda5d729829827b069ccd8e1f03d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-45.3.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.3.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.3.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d8d14b8eb2831a55b96e5945e718f199fe1cc41d75b07428422ffa328cf897c3
MD5 56c6c66a28a81c1f3e69db14b61599b2
BLAKE2b-256 a16d4ff7aca4b3c38d98f964e772cb256c8e3583ca41ba5f731f97f3fa4436ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.1-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 38be7e05fafe0b0809938163353f054f072c04fb74db7b64e7f4d930923a97e3
MD5 d536e920e74fbe030d6bb8a8fc0e4704
BLAKE2b-256 f9c941983a7a278c87e29a36128f222ee151ae1d17a0baf58df873a83df81c15

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6b5cc4464d426685279a79d0a17eeaacaa81607521e6d87258d3b314cfa66ffe
MD5 b6eaef298cd77bb964d9b8f8f0ffdcf4
BLAKE2b-256 f39b6da4e1d4af0c8f0a2b5c0b0984da287d6e9fccd742353a2daf83121bf647

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.1-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 06209af67ed10ad6dad6e0ae5a39080c1644b7af734df77b7d5b743fe1c6e981
MD5 37b67448d4abdc09a42e5e27c3542fe0
BLAKE2b-256 b83d72fccc00c7089bfca2813366452aab67c7a79747d81befff016b32814ac4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 677dc0b1b51c4b1309a76dd90c457ab9bb75fc6086761db8f4c1f5a6543191b3
MD5 5a4a7e28c09185e7127a15be2b4debd1
BLAKE2b-256 9f0a3618de947a0cc6517afc7e20689423726bca4f8e4938d5ab418b8d5709e7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.3.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2e30868d4ce4e4008026ee07f5e0943b6009f3c115a1a8be9158fd53e6ebe170
MD5 032992ac1cb8ec4d2701f3acd2585f3e
BLAKE2b-256 b83e8f32f4368676392857a90ed0d52c0b13373f9f58433f3d8fe99a8d77bed2

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

Supported by

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