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.1.0.tar.gz (215.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.1.0-cp314-cp314t-win_amd64.whl (655.6 kB view details)

Uploaded CPython 3.14tWindows x86-64

aioesphomeapi-45.1.0-cp314-cp314t-win32.whl (579.3 kB view details)

Uploaded CPython 3.14tWindows x86

aioesphomeapi-45.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl (709.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

aioesphomeapi-45.1.0-cp314-cp314t-musllinux_1_2_i686.whl (730.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

aioesphomeapi-45.1.0-cp314-cp314t-musllinux_1_2_armv7l.whl (654.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl (695.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

aioesphomeapi-45.1.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (700.7 kB view details)

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

aioesphomeapi-45.1.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (637.4 kB view details)

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

aioesphomeapi-45.1.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (688.8 kB view details)

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

aioesphomeapi-45.1.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (718.0 kB view details)

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

aioesphomeapi-45.1.0-cp314-cp314t-macosx_11_0_arm64.whl (616.8 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

aioesphomeapi-45.1.0-cp314-cp314t-macosx_10_15_x86_64.whl (623.6 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

aioesphomeapi-45.1.0-cp314-cp314-win_amd64.whl (560.7 kB view details)

Uploaded CPython 3.14Windows x86-64

aioesphomeapi-45.1.0-cp314-cp314-win32.whl (501.9 kB view details)

Uploaded CPython 3.14Windows x86

aioesphomeapi-45.1.0-cp314-cp314-musllinux_1_2_x86_64.whl (695.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

aioesphomeapi-45.1.0-cp314-cp314-musllinux_1_2_i686.whl (719.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

aioesphomeapi-45.1.0-cp314-cp314-musllinux_1_2_armv7l.whl (634.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.1.0-cp314-cp314-musllinux_1_2_aarch64.whl (671.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

aioesphomeapi-45.1.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (688.8 kB view details)

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

aioesphomeapi-45.1.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (632.3 kB view details)

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

aioesphomeapi-45.1.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (666.2 kB view details)

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

aioesphomeapi-45.1.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (708.7 kB view details)

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

aioesphomeapi-45.1.0-cp314-cp314-macosx_11_0_arm64.whl (573.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

aioesphomeapi-45.1.0-cp314-cp314-macosx_10_15_x86_64.whl (587.2 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

aioesphomeapi-45.1.0-cp313-cp313t-win_amd64.whl (622.2 kB view details)

Uploaded CPython 3.13tWindows x86-64

aioesphomeapi-45.1.0-cp313-cp313t-win32.whl (556.4 kB view details)

Uploaded CPython 3.13tWindows x86

aioesphomeapi-45.1.0-cp313-cp313t-musllinux_1_2_x86_64.whl (705.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

aioesphomeapi-45.1.0-cp313-cp313t-musllinux_1_2_i686.whl (726.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

aioesphomeapi-45.1.0-cp313-cp313t-musllinux_1_2_armv7l.whl (652.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.1.0-cp313-cp313t-musllinux_1_2_aarch64.whl (693.6 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

aioesphomeapi-45.1.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (697.2 kB view details)

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

aioesphomeapi-45.1.0-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (635.8 kB view details)

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

aioesphomeapi-45.1.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (686.6 kB view details)

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

aioesphomeapi-45.1.0-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (714.7 kB view details)

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

aioesphomeapi-45.1.0-cp313-cp313t-macosx_11_0_arm64.whl (615.5 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

aioesphomeapi-45.1.0-cp313-cp313t-macosx_10_13_x86_64.whl (621.3 kB view details)

Uploaded CPython 3.13tmacOS 10.13+ x86-64

aioesphomeapi-45.1.0-cp313-cp313-win_amd64.whl (550.1 kB view details)

Uploaded CPython 3.13Windows x86-64

aioesphomeapi-45.1.0-cp313-cp313-win32.whl (492.8 kB view details)

Uploaded CPython 3.13Windows x86

aioesphomeapi-45.1.0-cp313-cp313-musllinux_1_2_x86_64.whl (692.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

aioesphomeapi-45.1.0-cp313-cp313-musllinux_1_2_i686.whl (718.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

aioesphomeapi-45.1.0-cp313-cp313-musllinux_1_2_armv7l.whl (640.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.1.0-cp313-cp313-musllinux_1_2_aarch64.whl (662.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aioesphomeapi-45.1.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (685.7 kB view details)

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

aioesphomeapi-45.1.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (638.3 kB view details)

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

aioesphomeapi-45.1.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (658.1 kB view details)

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

aioesphomeapi-45.1.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (708.4 kB view details)

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

aioesphomeapi-45.1.0-cp313-cp313-macosx_11_0_arm64.whl (568.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aioesphomeapi-45.1.0-cp313-cp313-macosx_10_13_x86_64.whl (584.5 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aioesphomeapi-45.1.0-cp312-cp312-win_amd64.whl (553.9 kB view details)

Uploaded CPython 3.12Windows x86-64

aioesphomeapi-45.1.0-cp312-cp312-win32.whl (494.4 kB view details)

Uploaded CPython 3.12Windows x86

aioesphomeapi-45.1.0-cp312-cp312-musllinux_1_2_x86_64.whl (697.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

aioesphomeapi-45.1.0-cp312-cp312-musllinux_1_2_i686.whl (723.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

aioesphomeapi-45.1.0-cp312-cp312-musllinux_1_2_armv7l.whl (644.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.1.0-cp312-cp312-musllinux_1_2_aarch64.whl (668.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aioesphomeapi-45.1.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (691.5 kB view details)

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

aioesphomeapi-45.1.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (641.9 kB view details)

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

aioesphomeapi-45.1.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (663.8 kB view details)

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

aioesphomeapi-45.1.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (714.6 kB view details)

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

aioesphomeapi-45.1.0-cp312-cp312-macosx_11_0_arm64.whl (574.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aioesphomeapi-45.1.0-cp312-cp312-macosx_10_13_x86_64.whl (590.8 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aioesphomeapi-45.1.0-cp311-cp311-win_amd64.whl (556.2 kB view details)

Uploaded CPython 3.11Windows x86-64

aioesphomeapi-45.1.0-cp311-cp311-win32.whl (503.1 kB view details)

Uploaded CPython 3.11Windows x86

aioesphomeapi-45.1.0-cp311-cp311-musllinux_1_2_x86_64.whl (712.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

aioesphomeapi-45.1.0-cp311-cp311-musllinux_1_2_i686.whl (747.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

aioesphomeapi-45.1.0-cp311-cp311-musllinux_1_2_armv7l.whl (655.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.1.0-cp311-cp311-musllinux_1_2_aarch64.whl (687.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aioesphomeapi-45.1.0-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.1.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (652.3 kB view details)

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

aioesphomeapi-45.1.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (681.8 kB view details)

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

aioesphomeapi-45.1.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (736.7 kB view details)

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

aioesphomeapi-45.1.0-cp311-cp311-macosx_11_0_arm64.whl (574.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aioesphomeapi-45.1.0-cp311-cp311-macosx_10_9_x86_64.whl (589.7 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for aioesphomeapi-45.1.0.tar.gz
Algorithm Hash digest
SHA256 3aa3a1471ce78b4de200eaa618f02da986779a5f6e40dac5149f6b1d9341a4b6
MD5 bc4639267113e1e138acd4dac00e0b6b
BLAKE2b-256 0451075350e24ff86e051ae71a80108755a40c424ad3c2b6abb3f0e696464b1f

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.1.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 51a0ac6bd7a486b509a0c1f498f9cc9cd6fd881a074bf8fdc88a7d027d655dc0
MD5 57e6045e483363a23f6b28fc965cd8d2
BLAKE2b-256 cce3375184dab1478649e071eb0a5b4c39b160b28f447d9590266eda1f40b55a

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.1.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 06de2d5394fc461f3fd3f7256387e24bf345b3c3d917551a621d85148fce6999
MD5 0ecb32bdc797d85e371db39e3331109e
BLAKE2b-256 08b3e33bdd58ef8cdd37cac022499c26f2758d67e24c2cdc61cd64b99ead73a8

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f5d8152f4409e622018285e043e890940c5af8531023c068f8d0f268e98102ba
MD5 d9d0fade3eaf0f65ba8ba73feeb26b5f
BLAKE2b-256 7fb7148c05d0763ef8b4955ec820739985528d0c81fb657994f077ee94daa5d5

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.1.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cabbb2273b6617ac779b8d7400e93ef718e8e23f9c7a4b2108b7b1ecb0e69c18
MD5 c106e15a1a2c0e33a2598519677aa637
BLAKE2b-256 d0ea93ca6469f76f474a321f1678e84dfc405988ee94373a1488dcca3df3b3c0

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.1.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3558e253722bd9733d57b564285aec9eb86da80dd81520759702c8141da7b6e2
MD5 876a86b497fb4ca0a0d7dc30b14835e8
BLAKE2b-256 b6f2be05647b813613d19ca4d68d18d281373dcd5e3d3dbf908223fe15e9d405

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5ce589c7177c96e27cf6364996038625896702df1f5f0bcef563e4f647b57950
MD5 b68fab89d708176c02082e9b3acad144
BLAKE2b-256 16c64ad2686d9dad6b4589186d0f65c27f9c8b9adf51b701f6d626e893a1aa9d

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.1.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b64f223b6929539f07cc7b2d238586dccce52c71ddfefb5c807f3f54b683d664
MD5 b90e1417824d916581fc87fadb8dbafd
BLAKE2b-256 6cbe5e899093217277ca45db10264f2f3f70f3f810e1774176716883368c4af2

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.1.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 75db73b2cd5afeb5c14e4fdd5f91d5493d5d450246cd22952ac153cfeb581ab5
MD5 2095997dacc80ab60f5e7320cf3c7751
BLAKE2b-256 dcfbb4253002dd6d03b7e8e738ca9226edfc1866ed5a5c82edefb9d24dac56f4

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.1.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d8374dfc9c67b15dd75d1c4dd23e266473b437667b9cdfea44f850d4a963e32b
MD5 47a1625c3cb94ba281cd75f59a43e732
BLAKE2b-256 23337784f7768135e8b2c69970dd01845cd8a4d36af4c3fd7b408c44a2095da8

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.1.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 eb01f9c9bc8c0ca6d6ace129f5390b5c98c70b036a25d68feeb0de5cd4ed9f6d
MD5 b2282223a70b5e365c2fbd28b18b993b
BLAKE2b-256 2638844d8874411ace7eb353d264c3273c0e011f090551f13eb37c345d9c4ee4

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.1.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8b56c9d6103979ead89f0d7037608a854efc8a6e93a14c72e243526fc8252fb8
MD5 459707280adbcbf66c5c431cbe319e64
BLAKE2b-256 856dd114aee6c73202ebe56604b556e590290da9caad74f13c2d4640cfb631ba

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.1.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 980c61e03beca9bdae3438867d9832f48e4c9b05a6116f7b7bf1bb3f722b9aae
MD5 a55f6b6f14ed2fa39a9fa89dd090b6db
BLAKE2b-256 3255905371fe32e32a53941793a1c91b133f412f1ff68e67f065d760ce612668

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.1.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 ff8881777fd9affe65c99ea284661ae73ec7ba32d6940acb5b8d648d1a9fb44b
MD5 fb515bcc99b24a82082e7155d8129995
BLAKE2b-256 ddf7f1210c03c64791585387611b3b9fcf536153e76c91a670d64818f98825ff

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

  • Download URL: aioesphomeapi-45.1.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 501.9 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.1.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 960259b054002973a3573b47de0879dec1714126c729bdd365ea310cf7fa32f1
MD5 4af1f67aeb1c23d1172970ad22200461
BLAKE2b-256 45ec44e81e6e9e4fe16f2a2f8ac5b3040fb87420158805956315025e306f7428

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.1.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2d6ed017dd9bb9a551bc7314c0cced15d3d35df9ef628b3a7c6c72e9091fade5
MD5 31e46746cde33a8982a5d603a43dc036
BLAKE2b-256 85c9f6822546f44b1c660636a03faeaafaf764ca83ac8e6ae3007d82c12aa38a

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.1.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 db5fa5fc427b5c80a6612cccb013ac1c5f57b1621fcd6431c04a42dd5406f6bf
MD5 be80caff7d8386627f45cee1856f2db4
BLAKE2b-256 988805c58786862135f5a053f2f0014356e18b3a5ffcd273ebca349b418e61e7

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.1.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 29d0ab8b12497696992250ed0f70315094161d4417f89438c7b2c3b3b63bcdaa
MD5 e4bb42ddba902a63b8953c731ad9263a
BLAKE2b-256 8c6448a2c7af00241e15471b0a92b47a85aa8814f3faecfbf174ba42a56f6c71

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.1.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8e00b77feb6844426769d23542e9d0c0ddd4e542e65ccc4aa8dcb9707e6a91b8
MD5 34c5d642615b99069fe8a74462e42341
BLAKE2b-256 3bbd11926091b7d6644a1568077b37df3392af7547326e99b6cf51836c75f55f

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.1.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3ac5d3a404368a957832e5fb9526b8995331dc52cb87b375072d58e8e891fa33
MD5 0a4660d0e35615bb53abfa05235f2c2a
BLAKE2b-256 8794c82149a483212b186397c91671c179c6e05a98b310704c44d99f4e309f62

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.1.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 05c0ffca4d4194dec4cf47369ad1b2e73d21ce24e745f0044e52fb30496b6593
MD5 73ca65f3ce22d7a2d22dd4a7df8a6015
BLAKE2b-256 08bfdf4a9d1095f46f64ce6e10af4b33da8abae315661312969a373fa4ecf049

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.1.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2a506924a683f82b9f43e783d47c50f31024cce959ea852bffca085f06d7c03f
MD5 ff05510150849e81f8ab8127659c462b
BLAKE2b-256 2a5a79111565c7a789519ff62087440f2f0c77028a7fbe0d9fdcb58995840426

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.1.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 2559173cd045277f2411d386bbd33b962cb9aa327faeb640820228666b6a599f
MD5 4f86de55d7aa7a1d77c7c751dd708407
BLAKE2b-256 80f383f07c890115be100fbf553bc9d2638507dcafd319c89e231fca08e9a777

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.1.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 51aff13ff08edb158f886f61515d9b475ef47600a2e0c1577a05e6feabaf556e
MD5 2dfde5aceb498dde48ae2bfe10f0823c
BLAKE2b-256 37ee77d560a0c2f0aa23b4c6f3245bc094c9c6d36ccb09cc8922891bf052b4ff

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.1.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 aaabfa660cac68da7511598d6fe53b8a01cfa7d326bfc05381f64c9589eddc5b
MD5 a2017cbf681c1e71415017fb9f612bba
BLAKE2b-256 cb5b3bb99de6f2eeb126138fbe62889ac012b87b1d06e970a92cfed5afca04cb

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-45.1.0-cp313-cp313t-win_amd64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-45.1.0-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 4e6dded792a7ac41c7167af63dc06d59bc9ae69e0eab93abe3494ad99eee672b
MD5 a3d1df4ecb7752868f9adf64a4eacfc9
BLAKE2b-256 52550ad92e510fb823041615bc5d28219726a8191cc3908b53fe571393892fed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.1.0-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 3049ae51c46756310848bb68c8f63ec0792f085d9d1454b36948962da1ffe194
MD5 3097fe39f172b381bb9230752dec0274
BLAKE2b-256 c5317420fb24e79f54366ee1f53dcf487668fdb98ffadb5397cdc38f878c8d29

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.1.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 01cb612288aade7084b7b6587db3bb823b0d39ffa17b078cf2df0a2d7f2b26ae
MD5 3b80bb740acb13c6ecfa49b80378c6fd
BLAKE2b-256 76baa6c81deeaf335aa77f635663c8859be5ebaf51cd89572866f39ed572cb0d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.1.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4fcfd15824b3bac13b5a86f798a4cc34325e4a0f6f0865598d56705832b32570
MD5 aadab7cc05fe94719f2a8a142a95af86
BLAKE2b-256 4bd04aef771b3b0518672ab266b86d126fb0e7c5469d98960b7ae37b0fdd2cdc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.1.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6d7417963a9e8afb0e5a96e8adf385e917942c1b5a1c9515225184c09476123a
MD5 305b78e5606935a8c5bbdc67da8cf098
BLAKE2b-256 19f119a82acb26cedaf73dfbd083c2b9e411454bf9047514e0f1b22ccb5ac0ef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.1.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b695cec2c8807ff138f69beb5aaddb8197837ed766120cf73484cb00067ca2a6
MD5 e348ec4f60073c6ee87265c1f363b2c1
BLAKE2b-256 4c07eaca2516a63b792ac5a2964f072db24eea2014cae8f17aeda914c8cd663c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.1.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4152c049930bc6a72cada74101e123e08ae7917ec5779468b9b26ccc88eef06b
MD5 590c05af1f21b4cf345dfec8e493263e
BLAKE2b-256 9baf73bdede5288858be504dbc02e57e39d892a390defb67f7f4b831dc6247ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.1.0-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 989a48ae2ed75b72460421d0eb3183e24e23e3ac8c7869f6320db39081cc08e1
MD5 60002a2deae2af71306eef2cc8730b25
BLAKE2b-256 9e1f423b6203b3d16ff81379366ebc1258ac1602bddaf9afc41aef42b7fac054

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.1.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e45779034d9c903c9487380c1d21702643b350f18c6e7e502c945cdbd53bcc57
MD5 fda25ef794c4b5ec4f8fd6ca81b49cf5
BLAKE2b-256 c0ad95ef36b0b9391c3b96d048cf941c9fa204bf67f5095efdccc80b48b8f2a3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.1.0-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 fc1a3e23ab99164b44474df85d8d4e9b2bf74b6d45c05038e67caee1e4426958
MD5 9cd7dc2c4b1609c3fb21cd1dff2a18e3
BLAKE2b-256 6c9f513734e129a8dcebb498d46fced4cf05f7065e6e4170a737c5650f4a834a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.1.0-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a57b99b2949b1e384301726a263c2e5d5a31f14dfa1a9d59d6396e326393dee3
MD5 a93eade5532424b6eeec7099e011a62f
BLAKE2b-256 b67c1338c6447cdebfc0d1bccbc9accac0863755c55204d7ed6e3842fe3538d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.1.0-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 2973f10bcd286c8bc55978384af4219fda72110916b9673af4aa9cf82705c7ae
MD5 99582c4e9c37a03526b2dbbd68f2065d
BLAKE2b-256 79a923c7a75acbef4229faf1ef34fe03c180a174b9932641c09b1e35aa4b89a6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8de8907a992df471bf90a8a21d04ac7f8acd839eb6fb3451a6638233ab7f1f20
MD5 ef6027492a8ece9ef2bd337bc19fc286
BLAKE2b-256 98025e1393c298afbe3e7f7db78a67b6c963f175f8677845716cd8c16b00b8e6

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

  • Download URL: aioesphomeapi-45.1.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 492.8 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.1.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 af88a6b19e882621c9a4586a5c65a6e8d38ed1d8489b1a6effb09e89efe04179
MD5 698160d1aebf2d354d5482edd4a7a6e6
BLAKE2b-256 beff497e1ae779541f482db65074db7d9bc55afc7328e42724be6a52a3ad88f1

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 652e8212952f9b17d4bb01a62cc390d42b3fa8e6b1b0386eac1415bfdca975e3
MD5 210147bb05c863a16897c9c6dcf87175
BLAKE2b-256 70419de26504fd76046dc96930ce95f4d35d6d3b537dbdfd4c8991132e0b5ccf

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.1.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0db73a1e835d418bcefb43bb555a19347729701f21ded66e8d2dbc767ef48330
MD5 7deb302a70f3e26350d73a44a2543ed0
BLAKE2b-256 d9a0fb1c4b7c94de660a8a54d1681e850a9f093a2b9672d0ac424b172df51e1e

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.1.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b0694ea41e6aab71f0ddd7a84d09c3cc0757516e55338720e69181cc1774cfe5
MD5 79e78c7437575e7aca8a6897bbcc5f1b
BLAKE2b-256 aedb6a580bcf20e318ca36846c696874a6a31e2aac0144d563055d7f4dc79f9e

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.1.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4882823b14874186bf159ae920515ba72687c1a81b1326a2400f88a84561725f
MD5 d6269e4e94202079c8e558804163ac19
BLAKE2b-256 14af8de0de7046921398db18f66a14a71bdbac3876b0077f5c1189abc6e5e657

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.1.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 02549643019505c09ef6271c413cda486bde90e45ee28d88038e6952d711fd52
MD5 7a1e4388a96ca89cfed3c5ae2219c231
BLAKE2b-256 1e3e272f13250b7765d8d056d0d680b879336083472f761af9d75db465b524b5

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.1.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 bbab528b4103f44951e0fd4dbc5ddcaf7c96ec7b25949add6580aa9d32cec409
MD5 f55ef86c2528751d5e4c8bc9ac224c8d
BLAKE2b-256 ae8d580eab14fd268cee5eaf6206512b0473847eea2b4925532efcf50aba5122

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.1.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ccd9d5412aabe86430887908874c1e62a8c78da7c3591628512ac95123ce7d75
MD5 636638939406bdebb357bcabd91128f5
BLAKE2b-256 a0664c088ddfacb1ae7a5156cd84d9300ad7b6b3beca1f770161d9430b62f9d7

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.1.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 21210467750669c844a59a9a9f60a277df9d852be3a31b13f1ed8896effce604
MD5 07a988bf92ea9488877d3d58ee1addde
BLAKE2b-256 d126c936683a84e1cc24499b8ddc4914802aab5abb778aca1db898309babb270

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4f93dd7650850f7efc510e2c0993bb93cb485bc4ed34428b38317638ff43679e
MD5 ffb1160ddc4aa2d3d913d3c3c4a7eba9
BLAKE2b-256 fdb074c1bb5054a15283489b9ed8a7989d8cec8dc3fd5afa1c9f6f8c0b39f59b

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.1.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 8eec50d5b2dc7e41b049f0d1c3c31d85dba5c425394d1503775bf92197b7ed6d
MD5 596ec3bb7086f97a8b75a91aeee70235
BLAKE2b-256 18ccfc959519711868a202fdaac3a3cce0da2c22596cac421eee21dda1703e9a

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 662c2ce57053eee2b88f83e78251b933ef726ca8149aaab096bdcb1bdfe7fd14
MD5 c68cb2208e37efd4e076bf699197eece
BLAKE2b-256 d83aa3c642c744bc8e929f961f763b23757980f4b9afc8720624b3f36ac45265

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

  • Download URL: aioesphomeapi-45.1.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 494.4 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.1.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 a03f55065e7e994afe9610f83feaa3494fa2e8b80655498a3c58e1ddfc2f6d03
MD5 3a142a2dc1de001cb628368051f25d31
BLAKE2b-256 e1fa750adca70e40b06dc7702e145de63bef3b3108b4d9a12d0c73c0f4d12185

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 44fd892dfbe8084aff0c24d62a2f22468b9c25562e9cac05cc7334cf352f9dad
MD5 f57cc1f65d418bf7c6f0e19048d2bb4a
BLAKE2b-256 b292225eaf8b7fae6b21830e133df93f931bcbfa0f0e05cf5e2a416b2099eea6

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.1.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 98917b22ccc7f18790138be8d154dc5a810ccea3efda4fb55ca3323ce2efb05f
MD5 1fe4c66a4a4b511e008c392627f17797
BLAKE2b-256 81bfb9a5132e3ec47f01ccb1b198bce8798c8ee88f20649bbb95189345c64e83

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.1.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 312bd7a9fe6e49bc2e262c36318591055f70c36c3ee5e6eb4ae69aff19680bb8
MD5 bda05a71d0d11dfae87f7456aee15ff8
BLAKE2b-256 87aaedfd0eddc2a0619a5aee5b274fddb12e5ee3259eba9466fe8a8f35ff5f70

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6e2646e49ab28547182c309ff0ef9c924753ad8bfc8ce82df877327ae1a3fce8
MD5 c965883368d0237e95ae23863c295749
BLAKE2b-256 1a1ff96879d999588311bf7bb7b589bbdae896e5f6ec4480c1c30c47105911c7

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.1.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 692e2d665aca2a6d5265cad4c97c88061920f76e8a5d0f7ecd85683e5b193b58
MD5 e8ba2db4735ff44e248d5079f9563ec6
BLAKE2b-256 155862e7def48b0ff37da99971a685adacdaeb9787210bfa3fd2f392062c9f8b

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.1.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 44a26570d002c601e0cfc1d22211ea4ce9624667264e622450ff1772249f7c49
MD5 0bf6c87b3fb452061857d31bf3a66229
BLAKE2b-256 de28a79838b4711919919e94b8894aaf37c1ac9a9e32e1c5446393137009ddfd

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.1.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 02e298754f270543225c01f2f5f626eb3a7107f716eb7dfb1228474ad9aeab6b
MD5 c73193a538ea153a19088e9877e05111
BLAKE2b-256 893c7432b7fe0cba6057dbb1a13c111428edd7a728eb5a64e5ae0d05556d89cc

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.1.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 105147ca3bcb6c0f9e76e75cd23e651ccdc3a87b1e3da587a27632868b8260e4
MD5 b930f8cd4829bccb6ceadc1d61e06d80
BLAKE2b-256 3e6961479a4fae692777a1318448eb316286ef91c5a0b6edfcc696cf5a3c9df4

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dd7949631ce0ab44f78001e2def6ffd09abbc284aa44eee1b945bb7703a3c9be
MD5 9ae2a925f4716c281ec3d8bf3eb15f76
BLAKE2b-256 973fdcf22d5fe91ac4c957faae9b5fea1defcef32032637ec7a6dde5006e87d4

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.1.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b47d215b8d717151b65130752878f35205c24e06f806d6127b5ec8b6012cce76
MD5 5682e1c3e4e96eae5e1e974809b1da07
BLAKE2b-256 734160b690847b9abd3a2dc9e65072896a02d71432a84e4cd15a333fe983a034

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e9cd005366dcc6e435eea1c95ea943214fef37eec83356fcb3982b125e33f440
MD5 fb2e670cc7073a0a8728440710555dce
BLAKE2b-256 3f2234087a118bf6b67420766cee4554c1ffe1313151a86bf20a8e3a0d1b8ce8

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

  • Download URL: aioesphomeapi-45.1.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 503.1 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.1.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 f729187550283e6bcef91949826dc8bc1da7b26f31c0f60115dacf2389f96561
MD5 0557d74ceb0f03403af28dad48ae8eab
BLAKE2b-256 c4231b8e08f3cad7cbe668435a313b7ef29617bc0c33807ceb6698abb0d6833d

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7c95a87d394247cd0feba23fcf25d1a3e9ec90f3981525e2a8281fae047e5b4c
MD5 13ffdcd5c9330c3470e977414e97c98f
BLAKE2b-256 ba49428ae5e1a6718c531d7e23395eef05ab0357b4710f1301322b668bc67914

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.1.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 96d344b49af45ada4131f745d88cd17e11d52fbb1b764f8534cfedac07ed01a3
MD5 07577a910117c2133e00777be2b646b4
BLAKE2b-256 5aeefa61bac4f08185578ffc0f1f1f31392225f1e9ea98d87e9b4b736f279d39

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.1.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8b3cf7ddb8e15592c4270073f2972e36713b0cdbd732097f0f188ecae15c0fb0
MD5 a4ec515c742189aea1e9cffece8c40f6
BLAKE2b-256 f61a1a7633d0d71d9afe9f72f5237170fd471e75c8d50aa2e51a841896272272

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5d3ee0d446d728a773c6eb40e83b6faa57de4a9091c7176d9f60041e9536e283
MD5 43a2c2d8cd8a14e4fcf338a03ae1960a
BLAKE2b-256 fc7d244ea9e75663bf724e5731908da2122806b360244e63254ed71c1c7588d8

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.1.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4ee6052885528cf400293f75a5de3460f181f4ec239e741ade8ef942278b00e8
MD5 c561857aeef65f4a0d654a8b22535240
BLAKE2b-256 6b054686d54fbadb303957076ff391f71198568ca5cb4317ab84468f71b0e202

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.1.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 a3e83d72e15010537cbd06b4da8a4d00f1746dbf0f3bfe94b77fd42825f407b6
MD5 ae12fa6f0254843191493c836075d8f1
BLAKE2b-256 097b9e5eb259c48aed9196f50059772c303fd415c3a8444525f3b4e138af6758

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.1.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 102da18a7d05551befdebee698d64fd89c6d8ada343de30136df6966be07bb25
MD5 409f614109bd7301bd07179adc76cb5d
BLAKE2b-256 dddf7e52c105ab3146d417e3a45c7305b7d961d3b6ecbd01ff23ba761b85623f

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.1.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 e5cfdd0308677d08e539f0e01edef3e0e8c50c101242b88ec713a06425e809a4
MD5 7ade858b41b08398171722e16563151c
BLAKE2b-256 45bf4e5f8833e1ca39ee318a09934b2cfca34e298b0f0681015b50d594f0dfcb

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e529f9d98c052984523282fb9bbe02daaedf3df6dfe2aca0e6757f7ce4783518
MD5 20502c162a96419580f055bddef6baad
BLAKE2b-256 0e28343f47fac4cc56010733bc9d863a389cd509911879f1ab67e83dc8320ebd

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.1.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 13b4d538f02805fa54cebdc48844dd0abb55a57e7690e0dc5ca3a2731289ec34
MD5 298473ff49ff46b69717cd0be70509a0
BLAKE2b-256 8e619aeaee6d133a6e4139d70313e60623a4b32e28462febb0cb400144af34b4

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

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