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.0.3.tar.gz (198.9 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.0.3-cp314-cp314t-win_amd64.whl (624.1 kB view details)

Uploaded CPython 3.14tWindows x86-64

aioesphomeapi-45.0.3-cp314-cp314t-win32.whl (549.2 kB view details)

Uploaded CPython 3.14tWindows x86

aioesphomeapi-45.0.3-cp314-cp314t-musllinux_1_2_x86_64.whl (674.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

aioesphomeapi-45.0.3-cp314-cp314t-musllinux_1_2_i686.whl (693.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

aioesphomeapi-45.0.3-cp314-cp314t-musllinux_1_2_armv7l.whl (622.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.0.3-cp314-cp314t-musllinux_1_2_aarch64.whl (661.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

aioesphomeapi-45.0.3-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (666.5 kB view details)

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

aioesphomeapi-45.0.3-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (606.7 kB view details)

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

aioesphomeapi-45.0.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (655.0 kB view details)

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

aioesphomeapi-45.0.3-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (682.6 kB view details)

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

aioesphomeapi-45.0.3-cp314-cp314t-macosx_11_0_arm64.whl (589.0 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

aioesphomeapi-45.0.3-cp314-cp314t-macosx_10_15_x86_64.whl (595.6 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

aioesphomeapi-45.0.3-cp314-cp314-win_amd64.whl (532.9 kB view details)

Uploaded CPython 3.14Windows x86-64

aioesphomeapi-45.0.3-cp314-cp314-win32.whl (476.1 kB view details)

Uploaded CPython 3.14Windows x86

aioesphomeapi-45.0.3-cp314-cp314-musllinux_1_2_x86_64.whl (664.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

aioesphomeapi-45.0.3-cp314-cp314-musllinux_1_2_i686.whl (687.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

aioesphomeapi-45.0.3-cp314-cp314-musllinux_1_2_armv7l.whl (606.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.0.3-cp314-cp314-musllinux_1_2_aarch64.whl (641.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

aioesphomeapi-45.0.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (657.4 kB view details)

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

aioesphomeapi-45.0.3-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (603.5 kB view details)

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

aioesphomeapi-45.0.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (635.8 kB view details)

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

aioesphomeapi-45.0.3-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (677.8 kB view details)

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

aioesphomeapi-45.0.3-cp314-cp314-macosx_11_0_arm64.whl (547.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

aioesphomeapi-45.0.3-cp314-cp314-macosx_10_15_x86_64.whl (561.7 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

aioesphomeapi-45.0.3-cp313-cp313t-win_amd64.whl (591.8 kB view details)

Uploaded CPython 3.13tWindows x86-64

aioesphomeapi-45.0.3-cp313-cp313t-win32.whl (527.7 kB view details)

Uploaded CPython 3.13tWindows x86

aioesphomeapi-45.0.3-cp313-cp313t-musllinux_1_2_x86_64.whl (672.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

aioesphomeapi-45.0.3-cp313-cp313t-musllinux_1_2_i686.whl (694.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

aioesphomeapi-45.0.3-cp313-cp313t-musllinux_1_2_armv7l.whl (621.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.0.3-cp313-cp313t-musllinux_1_2_aarch64.whl (659.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

aioesphomeapi-45.0.3-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (664.5 kB view details)

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

aioesphomeapi-45.0.3-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (605.0 kB view details)

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

aioesphomeapi-45.0.3-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (653.3 kB view details)

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

aioesphomeapi-45.0.3-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (682.5 kB view details)

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

aioesphomeapi-45.0.3-cp313-cp313t-macosx_11_0_arm64.whl (587.3 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

aioesphomeapi-45.0.3-cp313-cp313t-macosx_10_13_x86_64.whl (593.2 kB view details)

Uploaded CPython 3.13tmacOS 10.13+ x86-64

aioesphomeapi-45.0.3-cp313-cp313-win_amd64.whl (523.1 kB view details)

Uploaded CPython 3.13Windows x86-64

aioesphomeapi-45.0.3-cp313-cp313-win32.whl (467.4 kB view details)

Uploaded CPython 3.13Windows x86

aioesphomeapi-45.0.3-cp313-cp313-musllinux_1_2_x86_64.whl (660.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

aioesphomeapi-45.0.3-cp313-cp313-musllinux_1_2_i686.whl (686.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

aioesphomeapi-45.0.3-cp313-cp313-musllinux_1_2_armv7l.whl (613.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.0.3-cp313-cp313-musllinux_1_2_aarch64.whl (633.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aioesphomeapi-45.0.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (654.5 kB view details)

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

aioesphomeapi-45.0.3-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (609.7 kB view details)

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

aioesphomeapi-45.0.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (627.4 kB view details)

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

aioesphomeapi-45.0.3-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (677.6 kB view details)

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

aioesphomeapi-45.0.3-cp313-cp313-macosx_11_0_arm64.whl (542.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aioesphomeapi-45.0.3-cp313-cp313-macosx_10_13_x86_64.whl (559.1 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aioesphomeapi-45.0.3-cp312-cp312-win_amd64.whl (526.0 kB view details)

Uploaded CPython 3.12Windows x86-64

aioesphomeapi-45.0.3-cp312-cp312-win32.whl (468.2 kB view details)

Uploaded CPython 3.12Windows x86

aioesphomeapi-45.0.3-cp312-cp312-musllinux_1_2_x86_64.whl (665.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

aioesphomeapi-45.0.3-cp312-cp312-musllinux_1_2_i686.whl (690.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

aioesphomeapi-45.0.3-cp312-cp312-musllinux_1_2_armv7l.whl (617.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.0.3-cp312-cp312-musllinux_1_2_aarch64.whl (638.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aioesphomeapi-45.0.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (660.1 kB view details)

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

aioesphomeapi-45.0.3-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (615.1 kB view details)

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

aioesphomeapi-45.0.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (633.4 kB view details)

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

aioesphomeapi-45.0.3-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (682.3 kB view details)

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

aioesphomeapi-45.0.3-cp312-cp312-macosx_11_0_arm64.whl (547.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aioesphomeapi-45.0.3-cp312-cp312-macosx_10_13_x86_64.whl (565.3 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aioesphomeapi-45.0.3-cp311-cp311-win_amd64.whl (528.0 kB view details)

Uploaded CPython 3.11Windows x86-64

aioesphomeapi-45.0.3-cp311-cp311-win32.whl (476.9 kB view details)

Uploaded CPython 3.11Windows x86

aioesphomeapi-45.0.3-cp311-cp311-musllinux_1_2_x86_64.whl (679.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

aioesphomeapi-45.0.3-cp311-cp311-musllinux_1_2_i686.whl (712.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

aioesphomeapi-45.0.3-cp311-cp311-musllinux_1_2_armv7l.whl (627.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.0.3-cp311-cp311-musllinux_1_2_aarch64.whl (655.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aioesphomeapi-45.0.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (673.3 kB view details)

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

aioesphomeapi-45.0.3-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (625.4 kB view details)

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

aioesphomeapi-45.0.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (650.3 kB view details)

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

aioesphomeapi-45.0.3-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (702.4 kB view details)

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

aioesphomeapi-45.0.3-cp311-cp311-macosx_11_0_arm64.whl (548.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aioesphomeapi-45.0.3-cp311-cp311-macosx_10_9_x86_64.whl (564.2 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for aioesphomeapi-45.0.3.tar.gz
Algorithm Hash digest
SHA256 55feae4c614e1c6261771cf3cbc302a02a19d4f24e9c716268b4c82aae25f70e
MD5 0d8caf65670c41ff0794bdf8a81800fd
BLAKE2b-256 95e699881a3f5122cf6aed9cc4ce194f736f04d0c6ee7b8908dbe5a603f19910

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.3-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 43b605787ff4671692982f9deab1b92443c5109e049ea450c5eef7e3a1051cee
MD5 5b0308a57549fecc287e84ad82807c1a
BLAKE2b-256 4ce87f0dd52663fedf170e38bda218ddb25dd730c60e746dd52c6400de8f34d5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.3-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 9db3db17a8adca063dbfb17952ed1ece2e6f512e1a2e8d137f0d286068963855
MD5 9555b8befa706132dba0dcc9712c8b8b
BLAKE2b-256 280975fad85cee32a07d85f5282b8eefe8c265f8be60a0e214b2b805e8161322

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.3-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7d960339ef3b71bab5866d0e7531ecab49182f73e9ecb4b3604109cb9229bfaf
MD5 dc6e969051bebbde55884fb2fd2687b5
BLAKE2b-256 7f1a9ef3f4d462b62eea6f5251235e4723bdddc36bd299ab693699b2af6f4e6e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.3-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5c6e20c3d72a4a5da38f9ca9ed924557c4c7e8681cb35f125744820da43e7a1c
MD5 8ee6f8b42dc622b065d49167abc7e194
BLAKE2b-256 66ca51f8d459936be2069a2d9e24edb6ea8e838f04a183d045871ef4a035f2ac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.3-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 060d91e47bc28af9106955884b1bc56fd9e3fc869cb82c5a1a07b5d615de0628
MD5 62d515200ccbcfac717325fe0a3f4ad8
BLAKE2b-256 2b364298b8afca3fc0d92dbdaee224020ad5b6c4e74d010f7a7f8c4d723bf0b4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.3-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 68eee40337d24ea0dfeb0528074467ec02cc62ee526abc276d0a7fdd4511166d
MD5 f9ab0fafe11c540e8e3d3275a00508cf
BLAKE2b-256 5105b7de62d75501362f2cf8cd1caf8598b38be45dd5dfebf7338197a94ab661

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.3-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3085baa6d0a3efaa1399f4ef29baded7f370650646d89e993159a1c87ab83ec9
MD5 e0c3242b5655aac304efb36a8983c267
BLAKE2b-256 493acce8f04d09ef82a02e9646a586079522b9a424cafa3389b570a631b7491e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.3-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 b4e028a53b2b54d0940b11a217b1590a41218b2f5ac87f27bd17d37ba5be9a44
MD5 e7b551ffbdc656d83dbf3cf7926e469f
BLAKE2b-256 72ae60a071606df9604191f00eb1d59f485d4cc2fa5c389e8613d7a38fa48ae4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 90dcd1f300c24a203ddb3d4912ddf1fd1df9234bb3da749c6db81b8f5aad3589
MD5 992468d9608b575bbea875d2106ad50e
BLAKE2b-256 d14d7fab0d0876751ab1673722238c1527f715c58e2f4b642d8b5197e2bdd9e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.3-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 15daf66955e8e26ced7bd455a7b301943b1238882c4b546654412d827a8b34ec
MD5 256501a6ef20e615afd3d4496d960b95
BLAKE2b-256 ccac27b59b6bb478fafc69c5f424f48b44253cde1c964492d3f0f3c17e60a41c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.3-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 27c0b163c950ecc6f4b7239102be49e6695c7f6e73f2ea40d174f19170ed1d3f
MD5 f42d3865273875ecf992afd26bd0b63a
BLAKE2b-256 8d13d9bc30942e4fc7e240698e4493a68c71d3759c79d058fa54d2ef9488154e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.3-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 07334faac1ec3920ee4eb70565dfeee6839b1122e05472410c0c5326da32733f
MD5 5ad18063b1ad8a8ed34404973b18ddb9
BLAKE2b-256 69a57f350bb7a4ffa799d04cd05923ba65749241c85c4cc61b264eefff615e37

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 fd8577cfb1ade4b22ad4ebe65222d6360ef1d890d547fadb080d24e6a2537863
MD5 5f9eb42845c7ce36cc42ebb275fc1c18
BLAKE2b-256 a7485fd5d5891f0573117ac5c53a9aeef935209e19a6df09d66d935aef0e5f43

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aioesphomeapi-45.0.3-cp314-cp314-win32.whl
  • Upload date:
  • Size: 476.1 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.0.3-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 554d80d69eeebeabe1d5ea969412a0faf36fe300b075faf2041722a40affd3c7
MD5 43508c42bff06c02de5973621a459139
BLAKE2b-256 24bd36367e08fc092f9c6b037ec5bd37fc65507afec4d2be1bd0fa95ad5fca4f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.3-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 17345285c705831f761efc661609cc6079ad3005410ea546b60869b0894cf7a8
MD5 dc2373df489e4b03091a2a0df87e754b
BLAKE2b-256 e7f6976da7b75e27be95b765a3e6db8a62f06864d83187f3a530200e4e553b30

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.3-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7ca95528bb75969f6fecf5c59183aa0c91faaaf182e76fd144d98c5850dfa10c
MD5 472bf7ec41d6ca3adda1f4b7c72f0510
BLAKE2b-256 c1f64f1497dc67583e5f3a36746dea2bea6b8789aad8564b8817de39f62136b9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.3-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 225cfdec3497993cba71ee31846cab9b88a678059512673ac05274ab721670a1
MD5 6c7e2d5f436f283a185f9e5384647096
BLAKE2b-256 adb6bdffad79cf9bf6cf63b75ae3c04044415fdba4a9cc18b96ce8b8a99eb3c6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.3-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7fa92b239df227030be872376af4d3be003dec79ea8b7424f4a0556c7fe1a616
MD5 4f8e83e62b7cf106e4286ca3ed91cf88
BLAKE2b-256 89a89161732eca3d4c6701244aca759df56c51a788bf55c7311be51ac53babaf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2b66bc20b0cd08b85ea16d06b83cdb531b6d7f79ebf22ac17def781a3c1c00c0
MD5 a922f295d99f454fc6487bc4e6fe13d9
BLAKE2b-256 aaad2aeff84dd2d05b088890e2b4a732510173d2435a0743060f21f111af5c43

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.3-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 6763315e966fd3aef80ae4d7d9422777a2876fadeb3f617be22b9410659d0ecd
MD5 e65a6ab005b322f3c694816f24726a8a
BLAKE2b-256 f7ec786aa6a6af7b5953c2d65ad8d2eb15ef724ed7c3a3daacf2784c937f8cb1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 01b57d3b5c2b510c769b4e87669be8231b07ae0d534f0a9d03dc5b5adb9fa8de
MD5 4f74d619370117a6b165946c05bf23e3
BLAKE2b-256 d69d79fc9b56a99f4fb98b2c51018326c8ff9c91b6da93ad89e037c14c495753

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.3-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 96a52e1770bd3c2b36f00c34aebef38f67478a43b3db3c706e3ad5615838cf81
MD5 5442bc1d5bdedae386a640b4d3b2a0fa
BLAKE2b-256 921c50076cbbc2091ea2ad63f5ac3b62de6e811efd6ec5230c0395c73f5d80f2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7aaa2ab1ca2422b291eb7b83afa581409a2d8b85177c3f50bec8b1f9e1c81991
MD5 f278dac25c0636cfb03b69bfe886edb7
BLAKE2b-256 32cc124be5f891d89b6e86dd6084b2470ebe7e1b6ba31679e4aa276ca74d0aee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.3-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 9cfd8008c304eb4a133e3f300c3035fd1aee5ebcb05c330bbd65bc4dd5385878
MD5 b92009bbd2f72b359372b6d47506b701
BLAKE2b-256 257ced097790d4f1f8c15fd1bcae3fc79d4f886f7c7dae2d0276eacebe0a8cd0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.3-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 c0ef30636d71c997e8d33f518d84b75629315dfcb9b53d8a28176b77c4217aef
MD5 67d903177e48a320d33b78b758903db4
BLAKE2b-256 7b2fb5983b567d7a170c974dc48cfc094eea6ab9fb5ee54d36447d3e3a4011f4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.3-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 38702f2ed707eb8a1ee39aa2f258948919137704a1ff16e0fd8eedc08ef02a75
MD5 3fb7e9e0adf3383f7ee2c74efd2faeea
BLAKE2b-256 fdc6d3f683f8d1319b5ece9c7d3524b11a38e9a0401ddb338a44c61d6dfc5e83

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.3-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 288b9f166cde9dadfc7ca350cb38247ef8f56c804abb4440c13319a7d86bcd78
MD5 b35b44accd071e8ac44cfe356ee2f701
BLAKE2b-256 936bbb6534d3d008b658282745c182f6c7f80a649668af36d93b00e9264a0241

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.3-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f048e034dc3230b8148d711bae8d8a22c718c5a4c4972de94f353e4aa3eb53e3
MD5 5da49bf5161aa62515ca9f0b4d84aad3
BLAKE2b-256 6391d31f7e402672c9ee8a6f9e2a91a25d8eba87f312d475aea41af0be9cff49

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.3-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a0d4010d51b7deade3cd17abbe3c83dcf2d7433a4653b81bf085632085509396
MD5 03686ce64e73b61b30f0a80349db5484
BLAKE2b-256 db3c014544bba66b7a8a07019f852c0e60dc690cb59242e53eaeb76c4338c42c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.3-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7861cd5cb5863c7a31c98f7687ae0d108e2bfcfa8bfebfb2204f7b5276d39f37
MD5 ef55124e2de0622150a51f51700294d9
BLAKE2b-256 9805f17d5e59c38920bb488bd028bcb8ccd9cab4881b59ca407a60b825831d19

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.3-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 223822aaa8e1f7cec777fa81cf827bdcd0ead6d4d5a0c5febdec4c0f784f305a
MD5 2eed85de3a66c4f5fd8b48f9a09a4a65
BLAKE2b-256 3c1efc16158604bf02043158c7433ab1e6de4436ccd9b65892a682c3a553beb8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.3-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 4934eb3eb15344f270e2e9bf245ddf0458723dcbeeb878ae11f8645826c405a1
MD5 82c7254fc7d8bb563e4709331258102e
BLAKE2b-256 38aa242dcbfe5ed4fdb55823fe5db8dc65ea34fcb175b4655da237b0214b0577

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.3-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 09d085951778a029bfa0d1bb4510fb844e31da12241b8b8116ecb7e289472059
MD5 bec17ed511095ac3429fcbf26ef56f66
BLAKE2b-256 a153ea4b4c2505a18cd95d9d2e263462574a399c0b60cc187e7fd23dc8d7efb9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.3-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 7e0cac0606e603e389f4306ad54f693179b0d9b370811233ef1647c12da8a8c5
MD5 115c0eaca03476ae59147b54d5202501
BLAKE2b-256 9f1f8bd99d9ffc8f520bc1a54ad5771a9f0276878a8982281e2e239f7407b8cf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.3-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eee06f72be7db74d44ce669fc651e51cf9921efa2659718433d13e0ba1212c75
MD5 8c26d4f6ad5ed76f99fe06a3cc93bd39
BLAKE2b-256 ff12f88ffc62a08babb68169014faacdeb9d7b1a2f8014b2542f2d4524b2e386

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.3-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 96ffcfcf2f3f63d76f8bce8443fe72b5990d3d5472199fb4bad04fb76ad9818d
MD5 cf3268184918676b0de5fff27b18d9ee
BLAKE2b-256 122833ae629dd5d4ab0b085c09ad1f8ca28a872fca33757c1d6015148a1688c9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 822212eb8acee291778d2e19cf57e1971d56f12c5a881f61fcd7c2da57fb2c3b
MD5 3c157b6e561009ecf2c06459a05e2053
BLAKE2b-256 55d0cc7acf1998563a437ee5eb7690074dc925bc59f889f4d639b852453078ad

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aioesphomeapi-45.0.3-cp313-cp313-win32.whl
  • Upload date:
  • Size: 467.4 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.0.3-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 7f676772206a4a564edc0eb669058f970132761ef50aeb3cbfe01d889dcdfdb0
MD5 4b7f86ebb664564f5a236d6e556a60bd
BLAKE2b-256 afc562e757b3b11f891d69de5a8c363ecb6c75d02768194ba183c7059635bbaf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1923227927949d74b5bc15dd284cc9add4a0ec949cb1d51fc6a6d7b8c565ce74
MD5 17d254c34239bebc48b95fabdc129172
BLAKE2b-256 1421636e2c8bb5036afe40c776e2b1cbe4303f90868f6611a1b7ce30e646007f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.3-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d66a48ec78bcd2f3330b137b8cfde0e665056178d4256451ed55dd9a54e331cf
MD5 7abcf9058cb88d4b2e1b0c9a8b93e214
BLAKE2b-256 d5554c2dd0204844fe23b6576cd6c048317dd738fa00f7aaf3d5ea4dc8083123

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.3-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 94f019c6ab527d5e8cfbc0ecc7cfea7f352c78c40950b8b356cb59a16ec4976e
MD5 4b5dcbdc289d91c5f631e8488cfb75dc
BLAKE2b-256 1e24b9111ae33644c6c25939c38187c77210e7722be2cbb446021327cf05b78d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bd563e9684f35680e9b855aa2ca4a036862ce942e8bda2100f8f2feeeee4e94f
MD5 a4b6b48f3bc3e86e8aae882ff07d25fb
BLAKE2b-256 637f0fe6cc082dca19320c4d0237a7a05078463567f276c940b9ccad2c9fda2a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 65333dfa0debad2e2810334114a26968cf8db524646d874957b3e9fef670749c
MD5 87dfcd9076cacc5ca7b64b173969daeb
BLAKE2b-256 240eb7def4b31feee899d334951caa4cd274982551102857d16ec02c0ad751f8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.3-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 04f0f51901813fc4229a40d660255d6ab52a68a9bae5192672c425c7ccce9080
MD5 d5e7b7094d948d0759fc6d03bda4c050
BLAKE2b-256 e18fea2dc04173fa10b5c2c5e97ee556067ba7e97d71f92dd1507f4ac70bb734

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f809e14bcbf52988fc923e29c6021a20c36aedbaf0eeb05e93e22c34c426d71e
MD5 6e7d2266c9d91ce1676aece4b34629ff
BLAKE2b-256 8b0e29c24ff0e99121bde02a4469fb40227c462bbd51d47cdacd7da5b4404c14

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.3-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 c6455c729ea9fcc769ca2b63995f1a7b77565cfc08573437b6f1c50f4c9bf0a8
MD5 a0afcd525c3c9e8884a5665acc79a8eb
BLAKE2b-256 c5d6e28ab74863bcc05e4fa498fdc2bd0f4f17cdc53002d2eb0c6408e8d84dea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f22dc6d384afdf69bbfe52ba0d2d986778f5a4d98166a2e388dd76c1f85e0de1
MD5 7a408c63bd29c525fe3a2e81d802af4b
BLAKE2b-256 574bdf2b95bd29c2f44755f38eab88674ad5aa5b0df97d1c73301faf744f6370

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.3-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d99aaf8dcec9f3645b277d6f2a3f099aae4842284d06c3157b4284a77f3d0e03
MD5 2f07af341fce72f6bb8a88ee4b82a2c1
BLAKE2b-256 918feb1458d7b87a8cd38877260e2504b0eef3bbad0a32095dc193ec98cdefbb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 45b1d78ff6edbaa64d8860a7ddecc70aa582fc61dffea96dcbc85a3557978a60
MD5 c6107e9f533dad1fbded03accd8aa7b6
BLAKE2b-256 df5d1528920339f19ad164da64d9552637790340ecae3590c402c1f1640a86d4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aioesphomeapi-45.0.3-cp312-cp312-win32.whl
  • Upload date:
  • Size: 468.2 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.0.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 0bbbc2f3838bea1d0fd8b21259fe9dedd9b969775102803b9b732cf14f6a5a79
MD5 bab0adf47b8618aaceb66e25ec3f80fc
BLAKE2b-256 d955bd77be0a378daa61b6fbd84d45afb3223c4e54223d5b2a816455d799fad5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2e50a5cca407f86ad9a1d4b7ebd2b865484bd07f8757e1ab2b85c27c563e45f3
MD5 60de1808a1eb1ae09e75e63316dd2912
BLAKE2b-256 dca08a34f5d0e222b42886a549e984e643bf98aeb351316611c2a9a312c844eb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.3-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9006e2bc522dcf4e65d8c7b1c47d0c824ac1092ded57f46f5be002125df9623e
MD5 73a66e9a8e430e990c41cba254f82fb5
BLAKE2b-256 6d63138c2e0f0283facf9ae9de22ff98cb18d7ebb2d1d1dc620afd11704d7eb2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.3-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f46201cf1f1af72f80211b8abe35b79e7862dd834e614d25ebd296d8f98fecaa
MD5 a6a28dcfcb238035521f384de606f056
BLAKE2b-256 2726e7af94bbb4f53d54c910a6ef1be8da5c008cb2e02859362c6b6baa8cc8bc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e59e292bf56082200fc6dad76c3d7e102c00abebb6d0196fb227c09fd1244dd9
MD5 8a88b41556dbde781efe8ee46272a5b9
BLAKE2b-256 92d08a6fec3ed298e98087b5f446c5019703ed3b2de0e15eab9c74755d633b7a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e2d77937535dcb9da19c5509046c5e822740d4557ef7907de55c5df8b4be3309
MD5 27338f323b4699bbd1ab00f86ccf8c05
BLAKE2b-256 ad9b54fca47411c99ebed6c716aaa2a5b9b16723609d5861a07b5090b30fe465

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.3-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 30925eb0f4fbabfb09b4abc7ca90343398a0f1a4ebf89270db6322225b16b6fa
MD5 d5cf79c3b9931e2d10e983a322d7a45b
BLAKE2b-256 c4a3f009067b7d2df45a3d19e8f3d1e03105e36b37d648a0fd05d8858233264f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 801badae1123648d3014a3501a656df9f893bdde5758506840438bd6eaf1c881
MD5 bcbaae328d236c1583bad104c805b3f5
BLAKE2b-256 e7d03afc2cdd8729edbe32d3165a279d5730953232cbd0a4d2065dbde35c5892

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.3-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 03bfb5c6615409855039c5adfce29facbb49daa9f53e7e7346371b6ffcc5de22
MD5 34b86180ef5231c9e1bd5d2e1cec8598
BLAKE2b-256 e516722d2324b98b32e108c5da50dcadd9e7ad02ba902a3e31a24644891ee884

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c66c5e01383f6537427527296e3b0e0d2d810eb75f73badd8aec33a29add93f8
MD5 fbe0104e36a737f0f0e9175cfdeb1996
BLAKE2b-256 fc4e3b11f10206d54a296a5ecd7c92a6e56e4fbe8bdf91177c55c981b622212d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.3-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 21451c2dc68c5e4c06c87fa039d4bfed2a3b9ce8c108c9264fd391d15d50519f
MD5 fac7bb18b0964aca0cabfa63dbfd79a2
BLAKE2b-256 73fe511a2c005a633d295f457c91fb0bafe8112fdc7fc65e1e768a1d1b504653

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ba68ad39430ae8ba1217cd1f5aa7a566677a8551957b154191c3483fa1af82a3
MD5 cb2ee6306e9e3b2f34c66ef3306227e3
BLAKE2b-256 e27da339f3b13183181cf510d80c5612e3361bf565ca3338ada6bdab31474074

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aioesphomeapi-45.0.3-cp311-cp311-win32.whl
  • Upload date:
  • Size: 476.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.0.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 cbba0c5e6851f68b71589524a9e96baf5c6e0b8d60eeab14a2c64f95691a1719
MD5 4af23e30be00ff423bfa74e7c886c03c
BLAKE2b-256 f40d0b78193ad2564ec75744fc1e780bd72d522e8faa74b274a86e786db3f050

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b57774c16bb9c5c7209e83edf8bc1b147670ac9174db2bc497d2d41ce18f56b9
MD5 1c8f7682611a8562c6a6697418ca8f11
BLAKE2b-256 79292cf8443b3d69b92830dd97c6f86a17ca095eaad80b36ee51cbedeaf13c97

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.3-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c04dbaa51ae99435653c0ee925bd5ca4ddbd955ef7a926a7ba48b214f5c7d39c
MD5 86e6504a83e5b9899121f72af2a148ad
BLAKE2b-256 b78eadfd1e80671870d1584888619553ba03fe0d276f42f12da89872e9b37250

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.3-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 66d06b890cdb8c9b398ae1daaa8e29a939479e454d22852b991a74080023ff30
MD5 1c570228a6e15c4e30f17daac0ee8131
BLAKE2b-256 7d2bfc8ece36b8b8861d7066a14114badfc9ba390dcccc009aa9ec324db07d36

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f2e1166397d3ce43e184193ec065c2c7ac382f29cbf59832a9edf85c3ebeb7ad
MD5 0cf17927baae018e050c91a664c5761e
BLAKE2b-256 43893424f0c02cad81a327c6dc2a2ccfcd0578270e378942f671196583af8c66

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9ecfc9ff332534099f8e3c9157b400fb3a8f356e7f1f8c65ecfbf6907c463398
MD5 965f44541e0d920a84144d7f9dd72585
BLAKE2b-256 5052ad2e88ad27921874f707282c6514d96a27b32782a371d227279ad617e02f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.3-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 a7e2c43c6920667c4d1d4b547bf57d9851153b98620eb2065ec73412ca5cc854
MD5 1dcdcaf055f971d67e8cd12b82bfeebb
BLAKE2b-256 fad76cb4feae731b983e46ad5617151c671f54f5b28503b2ed6b8ea0d96ec409

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 918fefc8038f332a193d20d2ae9cb1ab22beb00934e83bd030439b8842307792
MD5 c48c69e682128ed8b7c189a06971c7c4
BLAKE2b-256 f47e1f172e1bb781a57ec29dbd9d2160bb93c3deac2c32fd910b466a2040d649

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.3-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 f9e8d7378fec0794a81e5c59de23c06e8270ddc2ae50b81e0e202332d646450c
MD5 4a41dc6d97cd06f7ab06dcc77634b527
BLAKE2b-256 48e12d2c64228c570569d97a1933d33f0112876e0318c24bc907c1911f17edcd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2d6352102aaff07c785ca3fa0fa1889d7be53848526368f4e673d5e8a30c57e7
MD5 8b3f40182d498947b20a76ffd6ec8ae1
BLAKE2b-256 35359ad90f5c28a582ec054d71daa2edcc2e843d5dd1ad9b62c29633a11cca26

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.3-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ee813a20bd575fc55f03931da02877354acd2fa1d0fba9f44207bd0fcbfd4fff
MD5 b22c6919d1a9fe116db071f951d3fd9e
BLAKE2b-256 437953414669a7f2448c88e41067fc7d46e6f5fc6463aed0c20d1970aad80b6b

See more details on using hashes here.

Provenance

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