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.1.tar.gz (194.8 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.1-cp314-cp314t-win_amd64.whl (618.2 kB view details)

Uploaded CPython 3.14tWindows x86-64

aioesphomeapi-45.0.1-cp314-cp314t-win32.whl (543.9 kB view details)

Uploaded CPython 3.14tWindows x86

aioesphomeapi-45.0.1-cp314-cp314t-musllinux_1_2_x86_64.whl (670.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

aioesphomeapi-45.0.1-cp314-cp314t-musllinux_1_2_i686.whl (689.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

aioesphomeapi-45.0.1-cp314-cp314t-musllinux_1_2_armv7l.whl (617.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.0.1-cp314-cp314t-musllinux_1_2_aarch64.whl (657.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

aioesphomeapi-45.0.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (662.2 kB view details)

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

aioesphomeapi-45.0.1-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (601.7 kB view details)

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

aioesphomeapi-45.0.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (650.5 kB view details)

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

aioesphomeapi-45.0.1-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (677.7 kB view details)

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

aioesphomeapi-45.0.1-cp314-cp314t-macosx_11_0_arm64.whl (581.4 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14tmacOS 10.15+ x86-64

aioesphomeapi-45.0.1-cp314-cp314-win_amd64.whl (527.7 kB view details)

Uploaded CPython 3.14Windows x86-64

aioesphomeapi-45.0.1-cp314-cp314-win32.whl (470.9 kB view details)

Uploaded CPython 3.14Windows x86

aioesphomeapi-45.0.1-cp314-cp314-musllinux_1_2_x86_64.whl (656.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

aioesphomeapi-45.0.1-cp314-cp314-musllinux_1_2_i686.whl (680.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

aioesphomeapi-45.0.1-cp314-cp314-musllinux_1_2_armv7l.whl (599.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.0.1-cp314-cp314-musllinux_1_2_aarch64.whl (634.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

aioesphomeapi-45.0.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (649.9 kB view details)

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

aioesphomeapi-45.0.1-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (596.7 kB view details)

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

aioesphomeapi-45.0.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (628.9 kB view details)

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

aioesphomeapi-45.0.1-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (670.5 kB view details)

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

aioesphomeapi-45.0.1-cp314-cp314-macosx_11_0_arm64.whl (540.4 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

aioesphomeapi-45.0.1-cp314-cp314-macosx_10_15_x86_64.whl (553.7 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

aioesphomeapi-45.0.1-cp313-cp313t-win_amd64.whl (586.3 kB view details)

Uploaded CPython 3.13tWindows x86-64

aioesphomeapi-45.0.1-cp313-cp313t-win32.whl (522.4 kB view details)

Uploaded CPython 3.13tWindows x86

aioesphomeapi-45.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl (667.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

aioesphomeapi-45.0.1-cp313-cp313t-musllinux_1_2_i686.whl (687.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

aioesphomeapi-45.0.1-cp313-cp313t-musllinux_1_2_armv7l.whl (616.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl (655.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

aioesphomeapi-45.0.1-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (659.2 kB view details)

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

aioesphomeapi-45.0.1-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (600.0 kB view details)

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

aioesphomeapi-45.0.1-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (648.3 kB view details)

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

aioesphomeapi-45.0.1-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (676.0 kB view details)

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

aioesphomeapi-45.0.1-cp313-cp313t-macosx_11_0_arm64.whl (579.5 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

aioesphomeapi-45.0.1-cp313-cp313t-macosx_10_13_x86_64.whl (585.3 kB view details)

Uploaded CPython 3.13tmacOS 10.13+ x86-64

aioesphomeapi-45.0.1-cp313-cp313-win_amd64.whl (518.2 kB view details)

Uploaded CPython 3.13Windows x86-64

aioesphomeapi-45.0.1-cp313-cp313-win32.whl (462.6 kB view details)

Uploaded CPython 3.13Windows x86

aioesphomeapi-45.0.1-cp313-cp313-musllinux_1_2_x86_64.whl (653.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

aioesphomeapi-45.0.1-cp313-cp313-musllinux_1_2_i686.whl (679.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

aioesphomeapi-45.0.1-cp313-cp313-musllinux_1_2_armv7l.whl (606.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.0.1-cp313-cp313-musllinux_1_2_aarch64.whl (625.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aioesphomeapi-45.0.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (646.6 kB view details)

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

aioesphomeapi-45.0.1-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (602.5 kB view details)

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

aioesphomeapi-45.0.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (619.8 kB view details)

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

aioesphomeapi-45.0.1-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (670.3 kB view details)

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

aioesphomeapi-45.0.1-cp313-cp313-macosx_11_0_arm64.whl (535.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aioesphomeapi-45.0.1-cp313-cp313-macosx_10_13_x86_64.whl (551.1 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aioesphomeapi-45.0.1-cp312-cp312-win_amd64.whl (521.0 kB view details)

Uploaded CPython 3.12Windows x86-64

aioesphomeapi-45.0.1-cp312-cp312-win32.whl (463.5 kB view details)

Uploaded CPython 3.12Windows x86

aioesphomeapi-45.0.1-cp312-cp312-musllinux_1_2_x86_64.whl (657.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

aioesphomeapi-45.0.1-cp312-cp312-musllinux_1_2_i686.whl (683.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

aioesphomeapi-45.0.1-cp312-cp312-musllinux_1_2_armv7l.whl (610.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.0.1-cp312-cp312-musllinux_1_2_aarch64.whl (631.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aioesphomeapi-45.0.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (652.1 kB view details)

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

aioesphomeapi-45.0.1-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (608.0 kB view details)

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

aioesphomeapi-45.0.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (626.1 kB view details)

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

aioesphomeapi-45.0.1-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (676.1 kB view details)

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

aioesphomeapi-45.0.1-cp312-cp312-macosx_11_0_arm64.whl (540.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aioesphomeapi-45.0.1-cp312-cp312-macosx_10_13_x86_64.whl (557.2 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aioesphomeapi-45.0.1-cp311-cp311-win_amd64.whl (522.0 kB view details)

Uploaded CPython 3.11Windows x86-64

aioesphomeapi-45.0.1-cp311-cp311-win32.whl (471.4 kB view details)

Uploaded CPython 3.11Windows x86

aioesphomeapi-45.0.1-cp311-cp311-musllinux_1_2_x86_64.whl (670.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

aioesphomeapi-45.0.1-cp311-cp311-musllinux_1_2_i686.whl (703.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

aioesphomeapi-45.0.1-cp311-cp311-musllinux_1_2_armv7l.whl (619.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

aioesphomeapi-45.0.1-cp311-cp311-musllinux_1_2_aarch64.whl (648.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aioesphomeapi-45.0.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (664.2 kB view details)

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

aioesphomeapi-45.0.1-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (618.4 kB view details)

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

aioesphomeapi-45.0.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (643.0 kB view details)

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

aioesphomeapi-45.0.1-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (693.2 kB view details)

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

aioesphomeapi-45.0.1-cp311-cp311-macosx_11_0_arm64.whl (540.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aioesphomeapi-45.0.1-cp311-cp311-macosx_10_9_x86_64.whl (555.7 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: aioesphomeapi-45.0.1.tar.gz
  • Upload date:
  • Size: 194.8 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.1.tar.gz
Algorithm Hash digest
SHA256 35f371f9aaeb5bd1bed16125a33cddb45e5bb01d3e49a48452d082cd42945d50
MD5 dfb1c4faaa580ccd784c32edf6b05ce6
BLAKE2b-256 d13cfd1c3c167accdb5c257fb9c1fcdbf08948a92f88240353b1329bffe9f0a3

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 b5d4633653fc556fe9452c4b3991d1e23c45629b4cfc94c2b4b2bc794e04f11b
MD5 bdb063464d2ddb77ea65919ed4d70a81
BLAKE2b-256 56704c941ceda7e3d06782d91170b81eaa20beeffb1ab508de96ed12c44bf7d3

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 445a18a18c4f6fdddf3e3f883a358e8c2204413b6d33f17f0aa58d0fbfd07f47
MD5 6adc5bb6c1ad802f8eedc90ff9af0212
BLAKE2b-256 edc04f83bb90a11a66f9f29a1a7f08cdfef28ef828d96d2646fa07618fa94ca2

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fc99014049f1a6d423d598c7663fdb240334ab0ee49162283943ff2d480dde09
MD5 30ec6c4d76ad44be2399994a0c1bc75b
BLAKE2b-256 eddd8854319e61d52ee5420e815a988c06734ff00f6a58358eaf4f9352d6849a

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.1-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1980a32e35fc6ec6cd631cb1b92e370e414ad5ed15a3e7f2063a6b83e677db69
MD5 1af15988e61e558b26683cd1b685309c
BLAKE2b-256 1a48e723c9ed597501e302d30657a79deccde36d681f99222d656e59b944bd08

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.1-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 deba09abd0c0e07bbf1f1128b6e0f4d62bf139772b1cf56b74654b7e48fa1062
MD5 e640ffacfb8368714a206a206d84da31
BLAKE2b-256 d270122dabc559636a7ec79b608051448eac9fcff46a2a517170c11de9f2fa7e

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6932a58f59e6e1492a16c7fd41785872f8a951879d2e272ea56c534636cc430a
MD5 42b3c70cd292488313ada908a2d3560c
BLAKE2b-256 363d04366956ee26769c130fc0be703a1dc822844cb6e2ed2217a219b1523b8e

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1b87c4a293e5c7eb7b06237f3b27528dc968181fc96deb60138ee997768198df
MD5 0d3ae3f59578603cbda64ad7fbf5eb04
BLAKE2b-256 370ec47e72de6f453c61a0fc8137cb9c76e46f54602f5d397c575f2ef5e909d5

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.1-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 72cea1cd8387fae1164f3baf8bdf4be29f41903e854be2750ff067087792eba6
MD5 e4a020395f1bb82740ee5a2fb7a73b85
BLAKE2b-256 7793e2de00799ad10d8cd23f535601d86bb733b09f813e91de4465d99656a359

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0a0646028b60bc640c84bcdf97365b3d03198670def3c8acbdf5a4b11c0203f8
MD5 801ef4123bd52231f128131e1dc271bf
BLAKE2b-256 dc8ddb1eef94b74c70ab1dea9839996eba8e285c5391c9b24b6dbcd8f9005997

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.1-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 032549271acf06a8bc21234cef9961004b953f62dfa7d5c85b0a49ff37c90021
MD5 de9c631408244779168b83aafd064ae0
BLAKE2b-256 fd1b675c74395a5a1de24ec13374d3c5aaa78fd41863c937ba7b7eb2f58330a1

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 50d70999c493611261337dcdfebe5b8221fd7ad9d7d13827a8524580167b9fe5
MD5 3bab5094ffa5d43a5eeff19d0e377414
BLAKE2b-256 62039a6867a4c8ce9cbce434b99609f329630ff7b6a7a2626dd8db82a6f8efd0

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.1-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 408bea5440112a2c31bc92aa54d00b956aa0d6cea5656a818e96f13ecc560be9
MD5 afe2ca95127515bd77ac03d99648e081
BLAKE2b-256 7e120d3fa804fdaf37a767a1c3137a1f0c1d5b2e69a0e88d76a075702e1c1edf

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 724a136caac8c16840771a522196f0e9d7361b23ba14c901a50fddfa3665b4d6
MD5 4c474a74a2e0fc0d53b526357466168d
BLAKE2b-256 39143b4954aea93935d551b6c7fec0af9f41991fc13dc60f2aba43a5c04a4e62

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

  • Download URL: aioesphomeapi-45.0.1-cp314-cp314-win32.whl
  • Upload date:
  • Size: 470.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.0.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 92aca9921bacbd51f185c817efb8dcc3e4f06ee9c86d70c40ddd6f43df4003bf
MD5 d2da1e3f3ad9ff38320ca3b32b5a10e5
BLAKE2b-256 1dc1f14b68bcefb514ddb87be1a3df9750b3a57cd01fa73ad8601469a8e77d6a

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 70b6c3d41385c06861246a3fe22bd77808fb82ad60de7c421a1c9eb6f493e654
MD5 80ede9bcaad616ab895a0caa61c8d7b2
BLAKE2b-256 9b614d1207b312ae4a7ce01caa604453ea76a54028068b65c98b0573b1d2c10d

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.1-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9161548843f48211d0cadc145efcca0213281d27ca8d82d206cac67a1a7ef426
MD5 60956efb5f73a0c3baadf07f22a838e7
BLAKE2b-256 2ae602b7113b712f2b410a481153e42b5f654af46f61366ea1ee7a50cdc716e2

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.1-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ca6ff87a711f3df1b3266df71386d47bbe0a34cc674106122a8e1dc1d1485566
MD5 abfa66cc56dac0e125cfa1ae540cb620
BLAKE2b-256 0669a6cdd17a7af64d02ed0fb7214d7522f04c9d0ce7750f6efd3d3c19388c71

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9b7999e51bb77e8a7f6d38dfa71581ef4bc976c3fc9dbcdcb3112c134e3dded6
MD5 e39c5b12547a97ef514f480cb7fe4f96
BLAKE2b-256 33cc3baab907e8210465a3530e31c61d41f477f4e9ba1a499b9409a9d2c2c623

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 11284feb5cc70cf79fed6dbdcdb5b8a00cb300b29c236c48c110635009453113
MD5 7d6034642d177ea621c54634be1dcd52
BLAKE2b-256 8ac1907f4753758a82f4d5b105207e0cb979ef44ebacccdcb24f5517cef41ded

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.1-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 cbb3668ed519e3469ae3accbdd09ddf739e9b9a55d70e1e4ce46eb160393d512
MD5 0e9806b271b5d0553acae79d182b74bf
BLAKE2b-256 77bb58b316604ec1a9961183900885eb5bd182f0a8582d4380feb4e6a3eac748

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a0fcec238ec2c3e1853a45d69ed172b143293e3344a40d7a0fe14b8ac45bb3b7
MD5 95eacd324f35a905aa9f1ee420a170ea
BLAKE2b-256 39a90df58c6b150ad9761acabfcb06e8f73875fb36a8b92a554e9c45eeae1c23

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.1-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 9b71d5ba199daa2873194a34532e9a4a9f0a138b6a9b167c7bf21b3e4b332a5a
MD5 69e36f3bbb752a2d8585a18a34d11422
BLAKE2b-256 76112b00f226b783b6ae954d49d381cc67afbd65df934a3b10b98ed42af0e56a

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ada479614ffe40f2fd7349ff7462a7de63fd21bb05a723bc48679a2f9db64537
MD5 8902c1468936b60cd589567fb01280ad
BLAKE2b-256 f899d8fc43abf9c4c5a39a03cd1a2c6a148ddc5124fa214087495a9488c8ce06

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 16a60a7e5f8b37c5482d47f0ec2963e266e7e7d01254d8e0c0b08206735264c5
MD5 4bc28b6559c951ddaf3811e3cb2b902e
BLAKE2b-256 118782ae501667d02b5e91ee7fcf5ab52f84d5e16c5c789e0cbfa8361099e6a5

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.1-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 b0db5d996657960104085f7f4a3d999261c8b2e1a01c65b4fcaab96b6b942ad7
MD5 ad6c33d15816628f583615aaa1160467
BLAKE2b-256 b8753772faf128927078822401bf4c1436555f5186f18e4931c6a337b3327311

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.1-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 51297a56e9531013e1ca92fbd110a29e1694f6db991413c13a5d70c231823162
MD5 056087105fe2174d9ed53c4b7ea53a35
BLAKE2b-256 cce57eec99ada57724337936234104060b325634b9580c2caaf6fde8971cac1c

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ab22fd6288e4bc6ec438ce1a8c5c963a439a1bfec879b3b8b6fc6d74d96188aa
MD5 c10ae740c343b6437f72f6facd4c2371
BLAKE2b-256 86b25c58f4d625b7b228e07fbe40096f25f0e0512b5a19f94c35adcc3046fffb

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.1-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a5d7ef3eb25c7ab4bf768d1955df9c36a37c64aeb49ce2919aeb90918734cd4f
MD5 eefc5640759aa3a71339b0a3198a907e
BLAKE2b-256 063b46cfcb30da76410f449edfaec4240109ae77350580f3947c98b6a1f12f37

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.1-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 116d44722ff58abbdff5c53a872fbb2f04b344ef370213439ca47419504171c7
MD5 ca57de114954d99544afc59bc627f269
BLAKE2b-256 90e8fc6303679a271effeef35d97a469e2f8d57c7faf04b639f1f6b8b2534f16

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f129bb9004e8891b95b539321e619b40fdb8fe384853e7a35716eb0e129745a6
MD5 c5c27a27d50859e7eea80553e68b7493
BLAKE2b-256 08bea65b20f6a5bf5e1896ae8aed9957529cb0cb4901230df7976fa23898d1b2

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.1-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 35bcb47a62bf24b02bfb86d729ca68d3599d83a7ecf9f0538afbef4a9be41220
MD5 8a77bf9ed5584ec7343b70644d26ab10
BLAKE2b-256 6b5da14aa6844f57e764a3d47d70b9803cf6992639773f0bd545fbf75860a482

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.1-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 6c358885ad44eed142fb0e3490e3f27bb0ef6c0fe09ee2e460942336d7aaf000
MD5 f8c982c8a8554ad0b814b0536e43feb8
BLAKE2b-256 eefbd2e964f544f64cdd19eadc41544734d3b1ce0541fba45cd0ce77f31c8213

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.1-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 72c2f618d6b12aece1335f9b7ff0b4a6e771d6f8e00f4b899f01251087869c2a
MD5 ab39a142e8a7ba629e973a721e13dbee
BLAKE2b-256 c89d5e9b769070a8b7948eed6daf2ba818a7f066aa100c4d83cd5e4147d2dcec

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.1-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 fb4209d7481f50f400f446978fabd6033bb5ae4bdb3615cc57f64cb9edfb8a0d
MD5 c03b456e226506952f77f475140188e4
BLAKE2b-256 ca8185c634d4b993da2a3811a3b3a2e9109f5dd0534eda309c8b3ddbabe9e26c

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.1-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1afff67b410d8ddafda88a70b56bbdaf8536e82ec3caf23fec848e3e173b90d7
MD5 f4d5acde28ccddaea50b3eee157c0cf6
BLAKE2b-256 4492d18a7b8d7347afe9274ffce98d27e064693b383a336bd5c46988b4b9b452

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.1-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 8f3ba17704ca3565ffb8f9465a2c0c0f06fb2ba06712daaf2216e789991d58e7
MD5 c675d8ec67860d010b817e691261a99a
BLAKE2b-256 c6663b4a006955ed02d1b9f1559dde4e0e8d14abe3770e333a1c69e1a6030881

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a22fc1a8892113b8cdfb99bd9cd789d28f51ff386a7f0eca1847fb24ccff2b23
MD5 d7dbe2110541851ea37f5fd2e7c9674e
BLAKE2b-256 4f1c092237c73aface1bc168e796be7449c4547bc57c7b3aea8b93946f6d2f87

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

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

File hashes

Hashes for aioesphomeapi-45.0.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 f9a67565a1ea38dd5641db4fcc88e80cf7fae68b41dd024c9afca32ec3352dfc
MD5 8949ef8fd0177c2c8ddf8a845d3a480a
BLAKE2b-256 db1c49d770fb000a784c690697551fb86cb423e4c48cdd937718e856b06d388b

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ad87c48e75b2f89b66ce79342108d45a62e4dc8c44ab21486fc6d318c18a44da
MD5 24fe7856db648ebde7fa091e6b9b34bd
BLAKE2b-256 dae6586bb66b2d8f020dbe6ec614550ccedf074f16b0d3d107046b9e84e9b9af

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ff2da2c145b42b6eb6ce7b2c62610060b11a58c2f21859cd7d83ec9af561a128
MD5 a914cd303b65cbea78ed9051a236c767
BLAKE2b-256 6d4700dd5d66caa01f3a8d2e098fa0e603bb215dbf6c80d3b3f64f3d1e6cb773

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 df3a20d5a4fac62066fa2b4f064ca3f025f1acf1afcd7fdcd84b89ed5d922f22
MD5 adaa4287dfc42c0c55561107d655fce1
BLAKE2b-256 b0608938416da1b1012cda1c5f8eb16964c487b27363c2944b4b9fe922e85e3f

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 35be922ab957eeda144c4bb16b5c9dccbc135a6001058f864a1ebb36a54f4bba
MD5 3c176c0302ca276b2315bd2b508f8871
BLAKE2b-256 fe8215518345d10e1973ecbd8d2cfd6913cc2abdd1c2badb9df9f9a5c05f7dc2

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e30076a1061728f042fed8f0d490f36abf6e1fc3e4d129dd6bc78f2fad605464
MD5 f7ad85a94fe85a98529b7e7a391f248d
BLAKE2b-256 29f725ea43735cdae6bd25cd721fbb208a7fd87747f72ef495ba69aadcd5c0b1

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.1-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 2c7ec9df4426944352172d2b13c23c88485ce1ea437c1ec0a7c9a7debc6137d0
MD5 9474d56509ea78c98f9501bdc5074acf
BLAKE2b-256 dca75a0726c8c1845c9dfe73e47e5f9cca9b5ac7efd0bd08fbee3e8c677b5bca

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ff0778455d99406060ee8e4d331ea1b395051f4af84f1158f746e0a7eaa3b1f9
MD5 b24c6df11e7069661289e14f113ffbe9
BLAKE2b-256 095d1069352bd3f5e22294363ca47f03bbc671e5e97d6b05e649c1e35ccf5bcc

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.1-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 8fc661a8655e55ad2ff475b6db7b83c4de6535f7362655076b20456c45c5d485
MD5 9a60cfb6770058dd0023b72a3c02f427
BLAKE2b-256 34bd40c375cd43cde1adc876cc2bc7c1543d461b56d94547947072968123e4e9

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 62733903a5844240092c5e3e74123d0507e028e0684fee27126088f98610e414
MD5 06800b6597eaf997620b431e8e100165
BLAKE2b-256 4f286f927c2dea1412f8713956b559c8513f2add12134aaa6bf28ae54b30821f

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 ef4423e1301b7880c21fdc201754db2a31618bf0aa1bd63f3df4450861034089
MD5 5f9561bf012f565d12b8a9280005fa49
BLAKE2b-256 40775a268261cf68fd234e6276800847bc0a399bd5ba3947ebccd0d17aa39798

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c7ad1bcd4fa2eaa3ad3cebebd4ed2a92e04418b8034d071ee393921aff5c77ff
MD5 96ced2d5d1a4169a228602e8af35dd40
BLAKE2b-256 9804a3ea24a25b10697d6f2cca1757ca7624dca5ee28c43ea771c6872e3d5706

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

  • Download URL: aioesphomeapi-45.0.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 463.5 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.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 b1c7fc9cf76c2275cd52d7e5f87719fcc8085a41adca17cb97a2cea18cf0a032
MD5 cd318ec4ecf804a6fa6140aec19d3d3a
BLAKE2b-256 fd8bc4666e62ad573af11f8adc5eb33c18ad8515d611a01f1a6cc8df4ed9b1ca

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 06e6df28b692baf9b419c77a914d9d435435e5f02d7c1f51350b1a3375acd275
MD5 1f077bffcda31760d96fd229ee79fc20
BLAKE2b-256 2e4c048a54b7eb85a796e302afdbcf57bee15d98ab987d8b294a189de98c625b

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6c4f4635e5a37041277f07c6b712e56bb8ca3c1c1a12d6c036372f71de347439
MD5 7e7196d5d380de8c0bc032f46c878363
BLAKE2b-256 7c1b910a2287ae9b0071a8c04b37989762ac6c83280892a11ada55cf8a3d2e22

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8c441267736d47eb955798171d2f4cd97aad11c9e19c18c581f01525e01f8e68
MD5 0f225989ee07769ea85f8918ab4cbf36
BLAKE2b-256 2dd58185c8b65ea1aeee1ab33b469caa48d56d1349601b8f40f7ede6f481cd5c

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5fd13ca29f2af54cd98786ac32f7c8310356af857fff1528500f8b584ad50ff6
MD5 8c4feaa67adca381965987823a8aa73c
BLAKE2b-256 fce8491f261aeaadcdad3c0e9df3b609e03564755e5175362bee85d0aba9b328

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 983f669923d5f7947d4831d458d1db098f735f6bf3563b53e74bb245baa7e252
MD5 1cd7789b3ec6e9765edbc964c0317982
BLAKE2b-256 98a17a347547353ae90755533907573d137edc899cb18301bccb51466feb994a

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.1-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 abedc4131ee566925b9a46fa13ec772c39a19543aad95a361e3ef94fc29df1ed
MD5 cd2f51716a80efe3bc012ffdd47945ff
BLAKE2b-256 ecc70eaa0fecc008f07ad60e7d63ccc211e43a6475829825e2ac2337a5c127bf

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e442c6855726f1e4723700ae092cbd7f2254f2e8cd7778b983d2362915e81131
MD5 fffccf06013bddc8425a3e8270c60412
BLAKE2b-256 a537dd8309494d8ec770ca735508a8c82956f20839105589960516f847665f45

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.1-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 c4eb32a9328188305feb95b08ff740583cd4dc3a43cddde1454fd8d7d774642f
MD5 b08d63c94d781323992a0834ff1e11f3
BLAKE2b-256 9fed84552e1351b737e262a3a6c291414d7646674fc82d44dbb7d135342f12bb

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5da1a0ba09265f0e6e8400fbde4a776b84e3915ae16718cf9df6ee7d4e340495
MD5 9a4086bd390186f78837acc9a7b58fac
BLAKE2b-256 220c789f9a9ae325da78f13985369709cee84b06c928a197a319b46a0d490e0d

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 791853852785c00ffc07bf2e345b641edaab457919e01d261da962c8e1f5dec2
MD5 93f6035665bcc8aa02ffdf8dcabfa603
BLAKE2b-256 8d2cce9be2a5f3e34af3cf653bdc5d6ea71990c7b6d4f46f4063c5c0038e4107

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 43ff602717b6d1dae7e66b00e3fe83afbfc43ccda7d3424ec005755d9d4a0226
MD5 deb88df352008549af1b37fb99528b14
BLAKE2b-256 ff025ac82d4fd4873b89e71412b1f64346532799f312ee1cb96b01a6c00b258d

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

  • Download URL: aioesphomeapi-45.0.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 471.4 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.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 4886bbe64bf76de8df5d84d9a7efd4c9b3258119ab716419e870c7b98c1631f6
MD5 70b7bc1f1330e3d38ccd9e68bf1ad1b8
BLAKE2b-256 8bad818824a07fab1163c480a39b4123e1a05e1782bac1403f2fd6886ceb91d1

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 32e18670b0e47dddf98df371536b737a14202a5cc6996cf94be04a8fde246092
MD5 33305663e6c283e928c83ecacd70474e
BLAKE2b-256 9f62e23187d602b240841e4e70abfb691ad271670152cb474a1aa207753b0133

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c2ecefaf3f272530962eb3f5ecd01db2ddb1bf943712da6fa6c62483ca333ca0
MD5 c0018e911dbaaad428c4abebeb011d35
BLAKE2b-256 4ced4f2a6c4bbcff07ea05a49d91ffe24b273fdb38ef8151741e460aeecdc257

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ad12247400a18a6968f7f6bb33a60cb67dfc2d41097e463cbd89d29943637236
MD5 c8f5e5accd9625234dc8a30344f9144d
BLAKE2b-256 9b437ef4f8847168097b5d871574874e642302bad3f1988ab7af8de9e46203ac

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a09a92394a3f9f8632e35fbd6c7d4ef226179a51fc535b5c684bd99e24f27425
MD5 fb6a158e78c3b8b2926e6220ba944150
BLAKE2b-256 db68944b02cc07d2c08a071dbd9be75d07519bbc76b544b7ca3303e276c51fb6

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7ea2fc7d41b48192b3c62d490c3b962cad19055a165a7a6a482f776c21995b86
MD5 3fe32f9b7e2031f4e685a2f0b2eef9d3
BLAKE2b-256 e7bec8efc48a43eec5d44c8634745d6c656dab20bf6677d8999018d560bc23be

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.1-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 a4a9b4b97ddc52ea75a783402d1644023a58740a259d1961d39d8f5495369f23
MD5 a783611b5e8ce8d5eb71ec5fd407f14e
BLAKE2b-256 611afbfed946537d9e887a06f1fc3a4544cc9ba40f91bcda1308a7f5f7f7312e

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 68f70a161a6c5d05e6ce4b69a73c83a14aef800e51ed7789ab7812c99fcb6c4b
MD5 19f7f2b2c4875e6ef18ab176a791abdc
BLAKE2b-256 d1528b854bfa47cc7f57818fcce768eadfd7c9364360d6deeb994672925294bc

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.1-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 f6a1801016b3e70facb9634668e60387f2435689eb6b72af9b0d90291560421b
MD5 4df9e86dc9a8a9e397df7bb1467c0fc7
BLAKE2b-256 3543c116c86a5a0b42c19fd6e62d948046c2de158dee929c3b10d34e91c95405

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 36b5f6a789d59556a22adee5e219a9ae1b83d5653d0ce4eaa255c87ef58d0a95
MD5 8316e3327876018654d757e8689beacc
BLAKE2b-256 9373c7b05e5d2e248ae1cfc90e436e97a521a51d699ea6680cdde71b8c0be621

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-45.0.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3f0694fd3133957ff88741e6eb168b3719fac06aa6d677b32a17485c9f456f39
MD5 355796b64dc8c2999e053da8c27078e8
BLAKE2b-256 b604ae78388d3dd1ca4f36dd14370eb78612598b135cb23ee71b1708930a108e

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

Supported by

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