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-44.8.0.tar.gz (178.3 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

aioesphomeapi-44.8.0-cp314-cp314t-win_amd64.whl (605.3 kB view details)

Uploaded CPython 3.14tWindows x86-64

aioesphomeapi-44.8.0-cp314-cp314t-win32.whl (531.7 kB view details)

Uploaded CPython 3.14tWindows x86

aioesphomeapi-44.8.0-cp314-cp314t-musllinux_1_2_x86_64.whl (654.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

aioesphomeapi-44.8.0-cp314-cp314t-musllinux_1_2_i686.whl (672.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

aioesphomeapi-44.8.0-cp314-cp314t-musllinux_1_2_armv7l.whl (603.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.8.0-cp314-cp314t-musllinux_1_2_aarch64.whl (642.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

aioesphomeapi-44.8.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (645.6 kB view details)

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

aioesphomeapi-44.8.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (585.4 kB view details)

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

aioesphomeapi-44.8.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (635.0 kB view details)

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

aioesphomeapi-44.8.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (660.6 kB view details)

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

aioesphomeapi-44.8.0-cp314-cp314t-macosx_11_0_arm64.whl (566.4 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

aioesphomeapi-44.8.0-cp314-cp314t-macosx_10_15_x86_64.whl (571.8 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

aioesphomeapi-44.8.0-cp314-cp314-win_amd64.whl (515.0 kB view details)

Uploaded CPython 3.14Windows x86-64

aioesphomeapi-44.8.0-cp314-cp314-win32.whl (459.0 kB view details)

Uploaded CPython 3.14Windows x86

aioesphomeapi-44.8.0-cp314-cp314-musllinux_1_2_x86_64.whl (639.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

aioesphomeapi-44.8.0-cp314-cp314-musllinux_1_2_i686.whl (662.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

aioesphomeapi-44.8.0-cp314-cp314-musllinux_1_2_armv7l.whl (585.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.8.0-cp314-cp314-musllinux_1_2_aarch64.whl (619.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

aioesphomeapi-44.8.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (633.1 kB view details)

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

aioesphomeapi-44.8.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (580.5 kB view details)

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

aioesphomeapi-44.8.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (613.8 kB view details)

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

aioesphomeapi-44.8.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (653.6 kB view details)

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

aioesphomeapi-44.8.0-cp314-cp314-macosx_11_0_arm64.whl (526.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

aioesphomeapi-44.8.0-cp314-cp314-macosx_10_15_x86_64.whl (538.4 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

aioesphomeapi-44.8.0-cp313-cp313t-win_amd64.whl (575.4 kB view details)

Uploaded CPython 3.13tWindows x86-64

aioesphomeapi-44.8.0-cp313-cp313t-win32.whl (511.9 kB view details)

Uploaded CPython 3.13tWindows x86

aioesphomeapi-44.8.0-cp313-cp313t-musllinux_1_2_x86_64.whl (651.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

aioesphomeapi-44.8.0-cp313-cp313t-musllinux_1_2_i686.whl (671.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

aioesphomeapi-44.8.0-cp313-cp313t-musllinux_1_2_armv7l.whl (600.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.8.0-cp313-cp313t-musllinux_1_2_aarch64.whl (640.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

aioesphomeapi-44.8.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (643.5 kB view details)

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

aioesphomeapi-44.8.0-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (584.0 kB view details)

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

aioesphomeapi-44.8.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (633.7 kB view details)

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

aioesphomeapi-44.8.0-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (659.6 kB view details)

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

aioesphomeapi-44.8.0-cp313-cp313t-macosx_11_0_arm64.whl (564.7 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

aioesphomeapi-44.8.0-cp313-cp313t-macosx_10_13_x86_64.whl (569.7 kB view details)

Uploaded CPython 3.13tmacOS 10.13+ x86-64

aioesphomeapi-44.8.0-cp313-cp313-win_amd64.whl (505.5 kB view details)

Uploaded CPython 3.13Windows x86-64

aioesphomeapi-44.8.0-cp313-cp313-win32.whl (450.5 kB view details)

Uploaded CPython 3.13Windows x86

aioesphomeapi-44.8.0-cp313-cp313-musllinux_1_2_x86_64.whl (636.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

aioesphomeapi-44.8.0-cp313-cp313-musllinux_1_2_i686.whl (661.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

aioesphomeapi-44.8.0-cp313-cp313-musllinux_1_2_armv7l.whl (591.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.8.0-cp313-cp313-musllinux_1_2_aarch64.whl (611.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aioesphomeapi-44.8.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (629.6 kB view details)

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

aioesphomeapi-44.8.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (586.4 kB view details)

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

aioesphomeapi-44.8.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (605.6 kB view details)

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

aioesphomeapi-44.8.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (652.0 kB view details)

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

aioesphomeapi-44.8.0-cp313-cp313-macosx_11_0_arm64.whl (522.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aioesphomeapi-44.8.0-cp313-cp313-macosx_10_13_x86_64.whl (535.6 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aioesphomeapi-44.8.0-cp312-cp312-win_amd64.whl (508.0 kB view details)

Uploaded CPython 3.12Windows x86-64

aioesphomeapi-44.8.0-cp312-cp312-win32.whl (451.3 kB view details)

Uploaded CPython 3.12Windows x86

aioesphomeapi-44.8.0-cp312-cp312-musllinux_1_2_x86_64.whl (641.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

aioesphomeapi-44.8.0-cp312-cp312-musllinux_1_2_i686.whl (665.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

aioesphomeapi-44.8.0-cp312-cp312-musllinux_1_2_armv7l.whl (595.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.8.0-cp312-cp312-musllinux_1_2_aarch64.whl (616.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aioesphomeapi-44.8.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (635.7 kB view details)

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

aioesphomeapi-44.8.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (592.9 kB view details)

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

aioesphomeapi-44.8.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (611.6 kB view details)

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

aioesphomeapi-44.8.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (657.8 kB view details)

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

aioesphomeapi-44.8.0-cp312-cp312-macosx_11_0_arm64.whl (526.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aioesphomeapi-44.8.0-cp312-cp312-macosx_10_13_x86_64.whl (541.4 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aioesphomeapi-44.8.0-cp311-cp311-win_amd64.whl (509.7 kB view details)

Uploaded CPython 3.11Windows x86-64

aioesphomeapi-44.8.0-cp311-cp311-win32.whl (460.0 kB view details)

Uploaded CPython 3.11Windows x86

aioesphomeapi-44.8.0-cp311-cp311-musllinux_1_2_x86_64.whl (654.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

aioesphomeapi-44.8.0-cp311-cp311-musllinux_1_2_i686.whl (685.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

aioesphomeapi-44.8.0-cp311-cp311-musllinux_1_2_armv7l.whl (603.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

aioesphomeapi-44.8.0-cp311-cp311-musllinux_1_2_aarch64.whl (633.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aioesphomeapi-44.8.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (647.3 kB view details)

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

aioesphomeapi-44.8.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (601.2 kB view details)

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

aioesphomeapi-44.8.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (628.0 kB view details)

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

aioesphomeapi-44.8.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (676.0 kB view details)

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

aioesphomeapi-44.8.0-cp311-cp311-macosx_11_0_arm64.whl (526.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aioesphomeapi-44.8.0-cp311-cp311-macosx_10_9_x86_64.whl (540.3 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for aioesphomeapi-44.8.0.tar.gz
Algorithm Hash digest
SHA256 57dde176f4e2994fbe9d5f9ea709cbcbfddc26954c89b65a936a5518c93db285
MD5 13e5ccba62b181675c0b24de43464ef3
BLAKE2b-256 9bc28a77aa23a8c42e14f4b058d47c7e8aa34a394b42879d03cb501a3e4c41c3

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 96042d2b93500dc7d75d16ee715fbead209cab572230e52f2bb76b8b3fc06f79
MD5 64b5c1d62fd50ad523219f5700c30e3b
BLAKE2b-256 e902d596207670ec5fcc65bd5b170cb20f15c93353c4fe7bdceb973f89e14ad4

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 c7c9269d1b55258382aae021ee9660ac1a6533b63c99d35eb507c527ba227bcb
MD5 950941ba41c6cdd03e33287949fbe5a8
BLAKE2b-256 9833ba13d95440b247106bf9bc285bc5ee61d01fff25745264ccfbf199add1a2

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f3906b6ea33285158742f5d3878f4df36315ff16f7bf6dfca7284015c83724e5
MD5 5c447425e72b676edbbc64898387c2bd
BLAKE2b-256 919883153295439dcdeaee30d43f47679725b1a0af95e287a7266327cbf80c79

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 05cd13380c4f644a476f8b50bcd4a1205c27694d06f03fb64a71bad5a73d9e63
MD5 8890dbb56dbdbf0463395a2de2bd2979
BLAKE2b-256 0cb1cd066822c6479c0a5a1eb023cd47ad8dd87ea7a604bcd2fac237389a5237

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 254a04985db53093505709a03e93eb363db58b134b56c6f3b8fd7ec4bdc3a01e
MD5 57f39d9fe421ef89d80b08b0712d3ca8
BLAKE2b-256 2aa34390c4b5710f794a873eff23c902048f013eecd5aa73bdef69d7baf86216

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 44c00e05cad210fe44ade3cf3c5b29ec4bef28bcd43b2b040ee806aedd1dfec6
MD5 e60c01cf532d49b95dbfbc9293cafd08
BLAKE2b-256 e197f33d0ac16500ab018bd7bb390b5f2c2c14750e7ec5869088e54a57bec419

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ac59b9a1f07fa2bc69c751f402ca009f53022a1f0c16e6bbde89d0f584d97271
MD5 963fbc9f42c1b370fa54fc6f16f94701
BLAKE2b-256 e44329276af0e4672baeb0429b7753b18fcf6e3cb06368bd5772f69847c0a922

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 e8e51b260ad30db680e60ca084ef9e99b1085ccfae78da9c93db40fc4d42528a
MD5 a9149bfda976a4199560348464a40d40
BLAKE2b-256 1efc11b99df07cb6e55dbe378bea2df73771824813418d0bf2fa19b738e931eb

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 93e4745bbb2f7bef886d7fea42b05c89ce8d3336f706a5445bd058a2695d88d9
MD5 917424ff2510f1874b21a25d7bc1355c
BLAKE2b-256 436b6c4231ccfba7d48e5d981fecd13164a62d61cacaf408db9a9419789c7904

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 cb9b56a9068b8a4bb39365e9a95ea34446b9ad46ad962e526815b8d8474a33ed
MD5 3f7de01d1cdda84f7b7061bd04bd5bcd
BLAKE2b-256 8c4e87883c342861210e6a0b0c72b60285d60669d7f21a5fccfb1244f072fe02

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e383ed19af742cfce1fd897316c66e1afd82fd6ef5c1a080bead3fc8abef7d64
MD5 aaf72b7172c3788b9d43f238f363e6a0
BLAKE2b-256 0bd1a2e6fe3f7772481228403a289db1f1cebf68df1315d07f9535c10f32d8a7

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 c66353e7dc0fb3c116d089af46e99713654e134bb22e1359401b84f7fa48728a
MD5 2aa074fd2b296386c92176b28584d4ba
BLAKE2b-256 bf2334e45ed1d722dcb0ce7a16156cf31636147db96fb46d9ec352d58d787bc4

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 30769300cb4c979f70d26f32bde5c17128790f1179db2156f4f6ae2ac0aa94c6
MD5 2dcb6be8e41c85e5a240f844a4573eab
BLAKE2b-256 a8fe5288c138d303d4b9729d7241b20e373468a0cbc4058dfa6c565c2d4daa11

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

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

File hashes

Hashes for aioesphomeapi-44.8.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 82ae885d9c1e74fd1da46d93e1337f7efdba80f7c50f3172ea0b26d999b06f85
MD5 0baab61faab539b43e6a1699247f1c84
BLAKE2b-256 33c94791f5045e88b7d1851ba14b395b2fff38af7de13f8c057ffadcf5d8bc8d

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b16689cce04a70a8a49802600969900783e435af68a81aa5311e510004737451
MD5 2aceeeda6d99672d4b4cc062b1e88867
BLAKE2b-256 a6d4a4066a694e32685913ecdf78c8ada000d547cb797eef92f08d374f8cb460

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 18167d0ad01ae510e50556712e30875553fc58221f31cb316c1da5a7330ed69d
MD5 ca5be4b8076bac917b3ec3f30281367f
BLAKE2b-256 d3da3859a0dd020c8d432e15064422dc736e9664d0c2f1cc484a166b3f432f5e

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 60cf7f00500980107442a0282540a35746db587fd40a1aae67e51ae4bce51ae6
MD5 6f0c4b8833c1e1cfc2b3449a58993bc0
BLAKE2b-256 1967a1515e697c9755f45891b90e8bf13d612e877ffc30f9ab02541e2e68c9ff

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7fd86e9a8fcafa1a56228a822bb124925d7d8e053e6b3d579886f159204f428a
MD5 ca9b66fe952b154b0985605cdc3980a7
BLAKE2b-256 6670478c0a7d43ca3769ad1faf03b813024e9bcb77df80ae36d3c3c84f99a4a0

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0e96905bf94e68bb606769db1d01f9694ca599b073658e4e17216cd24c48626f
MD5 c9d2d3654971fcfaf742ffd590db47c1
BLAKE2b-256 91096a80f93c8e977bd2202c54fbc082f28336aa8eb2d6bcba1c3556227a3808

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 63646964f3797ef2a198bad181670c1b4ed419ca1c80d1022fb2763234816cf2
MD5 d4e9ed887139fad5dfd376196e949c81
BLAKE2b-256 e8c08f47713473f232be9e4571795eb6be2fffcab55bc66fa10bd3c7f9f1a0c4

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 972598f60e107ae6a3984e692db473e2ce4797c2359f06ea586a1d6e800c2e2b
MD5 064b3b0040247143a60eb736a9a03a8f
BLAKE2b-256 4c1d69d8e83a182f60c5fc83c3bf6a7b0e88e32b1d28f7ed4153f4bb91423d8e

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 4bd1dc98905205ef651eb45de162b19656e73407bd38f68d6ee4b5416f73ce3c
MD5 4f699f6ae62b71158e75159611649181
BLAKE2b-256 c543cdd2bcd44ce803bb466a777835a941f35fa072fe551b4eb32ced0a1bf997

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2a2946025d5ad8c3e3659fba452e86767ea384598b780af6effde0d961b76850
MD5 fc49298eac4beba90b3d4926d3013311
BLAKE2b-256 2b6ea8afcc064e85f877bf561c6e83b71dd3589dbe9bbc42b07ff5ee601d79bc

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 29bca44d7f3b7717db14d715295ab7f0689d628d4a14ad0f610ae1f5e12f03ee
MD5 5963049e94fe2a6641bb155250bf58d3
BLAKE2b-256 67c40322cc7912d2040f10154d6d05713203540237a057984fca4f852b11697e

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.0-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 6b462ab86a4c2f3296a4a4dc478db6495a883a33b0bc76c99dfe7078e2d8648c
MD5 a51992dff74a2e75695947dad94b1b43
BLAKE2b-256 c5ac6bcd7bcc23f034f64d438ac4029e56058c7f55a6e480445b1bc9402e46f5

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.0-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 a90112ce01aafe0ec96c786ff84708fe0f952015d38b0be77feb7a2c64c7b83e
MD5 b9a3d5083a4cd6e142d7fb900798bdaa
BLAKE2b-256 a3c29b7350d2c83918ef9682b277a3f9dcc3cdb2671da46b4dd99e3be4fbe1ff

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 094a927b2380993cad4adf7a439de096e49407850a4fa1c6ce5a1d83b5e63b34
MD5 ebcf81100312a4e60d3365bc8a44d434
BLAKE2b-256 05fd262da8686e8fe494340009541cfae2b5f6458bc6c0d1df9adbca4e408080

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5db3d7a746141caef4dad04dd2356cb166cc7df6afdb2b318828c2cbe93df2eb
MD5 544236773cd0957c8f21ad07e88292c3
BLAKE2b-256 d2ec960d2eeac88bd2386780cc013251e1eb3c1f7534b83b8e5d025be191bfe9

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e14ae7ac36a153f8060fe7ccdf31ac019e1d074a1de1660c68a6e02f853b3195
MD5 77e5f42c71fbde021fdace62c4e90542
BLAKE2b-256 9ce8a114eed042a44002f2c0d9da5ebfe9128a0a7b1d5f513299949b4d39cee9

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 406026097de23fdf70323dd69dc3ce578cd683a8dd038b954fbc898730e35311
MD5 d2c55948e66890cc61d5a91429b60d05
BLAKE2b-256 155ed2eebe70f80a8ac5aa6297e73e3b609f96028e802cce26804479ef2527e1

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 149505a7f1a4f6efc7f37c14cc97f58cc54b74b123615491fbb8d8ca53869f2f
MD5 d1662a576127020b5f0f0abe0a483ef1
BLAKE2b-256 fbf0cf85c85a690b30a6562556e303e1e8451d70c7994b6aeeb4d598a3bb8574

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.0-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 1d4b2d8caf2b33db85d6c3fc2b38304930b70560e4d6e53d5fccd7f1b7173e59
MD5 8514a796cf7ea8d13fd9f3030e4941e4
BLAKE2b-256 d6ba794553e5bfd450e72289f5ac3063046e69387ca65686a52c5d78f408ea83

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 469600277daa30d59a56200c8268efe418364ba52aff11548976819fb826e36a
MD5 3bdf81a0999cd55369267f02fee8a5a5
BLAKE2b-256 09680f003609448ce340911c2fd656d496dab1ac07d9c45fdcdae58a4636e29c

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.0-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 5e2601849572e4b4efbcdcbda11ac11f6b291f0cc36e2d5e9ff40e929625ef1f
MD5 b7ef394e3bd0b94c2735d6739eeecbaa
BLAKE2b-256 74f608dc6f603a0c767a7452f98f2ff35e8d81f018ff62434684e89e03b7fd72

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.0-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8eb45f0f4fba73c3f9d8daac0792da0abc1f63a8ba8ff7df248d17a5548f17cb
MD5 3c1e3ddec2b105a64d928d6e7ffebf87
BLAKE2b-256 16f85af8e58b883fdd7b54bd305cf1750898945c5e36f5c0124a5ac4ef71f066

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.0-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 4084a8dae8447f325a11b9718a8ecbd22ce22d42e7c972969935516bed316bc0
MD5 e3538d5e503d15981697f5e27c7358d3
BLAKE2b-256 4699a7e455436d995056992e4b090c44c510f85bfd959ab18223a93ce995255e

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 9cd73cffbb55e77ad89deb80d3178013c1364db3e1d08e5caf41fa345af07684
MD5 f37dc461293cb16b928a97da0d6f27e9
BLAKE2b-256 49629d4d61b8903b58b6653da415b255f31bd7382ba9c7d5474a32b5d387622b

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

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

File hashes

Hashes for aioesphomeapi-44.8.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 1dfb06370d0f39546ef2a52321392c7fc6ea8cec753aa2833cb2b92aab210558
MD5 8d6e99435263a3415201c011bd47a3c2
BLAKE2b-256 d287370a58ac8b54ca87d08806f6116af17f5aac2906cfd256dab3f1ac9e5401

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 61d176e11149154387820fefde02728cfaa0567284c4921d2dbb7bbe8028a946
MD5 ad702a4fa3ae9a65598858a3a6f3200b
BLAKE2b-256 bdcb82956f68a18786692e6d41be95e58a792068056dca56b49c06f15775a68f

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5d9ed5fe332c87b0f64d7f7bef81ecc9771d70d5654c37133a91cf13b0be3a77
MD5 f3954d0245ce263d82b7879da3d67c35
BLAKE2b-256 a37fcc026ca6f55ba4c69b5fc849e2d1d23befb269521df64bb4db6f80433bcf

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f2aa158d6b16117140b59e59468d5d6583fe3ffc1a86de3991be7c5a7edea50c
MD5 91101d3d3cc4f58f9bc54a3b162170f2
BLAKE2b-256 f9e557f3c85cbc6132a2dade7c051d28e5dfad56e95c6a048ec1eb2afce3f367

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6a8aee430074f8f1aca5867fcdbaf46fbe699cae3a90d86e87f11dc028aae50a
MD5 65b7bff5f1f18e5208c6174f4cbcbb82
BLAKE2b-256 b2177e00a02dc7446d33e18fd03f672bcd4e867628bb03a6f4e3cd02d0714c98

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3f4c94fc93fc666e89faa8b6f23f75aef037c89da722deed637cd1ec2787bb01
MD5 ea7736f51dbe065cb53c42a2b985f3d9
BLAKE2b-256 dfadbe35b04a9a95ad4b63c8d03c5dd664287bbaa92f80dae7ca6b401a036467

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 bf514f29a376858a3f1b03f4662209bc466749c1aa9e82b233967ace063b6cc9
MD5 51237713405678c77df2fab79151c8a6
BLAKE2b-256 37fde5968ed69e49d783f9a03e3e3eae5a9c1a1f5ca2136d41640a5e5bce4f7c

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6167c5bc9807583b8b780370f005610e4f0331a7e77466f5ef666193ebe25838
MD5 b502029bf0292e25c28a98faf73944d0
BLAKE2b-256 62c0d974dfd1c6331581902eb79e5e3c801991783aa4b756c3ecb6efb9eb29bd

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 edb39c1d9da896ff506e9b7560e2cdba49df35d5e247838fe6d85ea62e764b6c
MD5 03e9c923e96e214c3835c05a1289c8ed
BLAKE2b-256 9a5d4bb35737c2d76cd26693cb8466dd9f561140d9d3a880e4f96d94471a5373

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 acfb84e5aaff27d992592e382cace275451d7ada14d631f9c0dc265688fb3e9d
MD5 3c0674aef0f96fc0656b50dd5933daf8
BLAKE2b-256 3796b1723c808898965089edac1dcbc738facf4d5b8e14f99d6e2e9d44342068

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 01a26687e0349f440de6a1f18a6a2d9f8925657d45dd4a0482b304533a2fb8e5
MD5 f388862ba647bd68acb924dddd018502
BLAKE2b-256 8eb9127783981579bcf37891a5fc962197cf34f6ba7694c628f4e0ee50f7663e

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 6858ed3f06adab10757f0ddd94342c6ceb8ce5b9a4c7fecab09022855cd6c121
MD5 157331761c5a98fb5ae1624d24ca2b12
BLAKE2b-256 b38290d311e39a9834c2cf45df2784d6bd5ba6d75772d7f5b2d83e0874fe7ccc

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

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

File hashes

Hashes for aioesphomeapi-44.8.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 ca0b1347189238e89948c2c1fa3e0a94e42abe90785866bcf14fc0811213f04a
MD5 91427648051fff55b5218feb85c21927
BLAKE2b-256 28f0108fedc1eba72edece34ca957266b3d4249c0168f40d6709dcfbb07c42b3

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b02cf36a540c930e83bc6926dcb70fcef9d8f8223b6bf4a5f647bab1f70644c0
MD5 4dffc0bd3ff8bdd2f765673a2cb2397b
BLAKE2b-256 0228331d33cba004009eb1c99f2ad91999af554f6c10777570027589e1adc282

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 34340d45c2d97c40bc7a04e0405050c683930d544365c70abae74e60df0a952a
MD5 380948c60adffd527c32c71d93ff5ebc
BLAKE2b-256 70e4bd2814dce851bc2b1bffb1551729120e7d69617f4f197e6a023d52c4c187

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5838823ce2d800f9960c9f55a55aac3a82e7286227abeb028e9d7d47812825c6
MD5 1352cfe6687a0eb80649a3901e4ad583
BLAKE2b-256 0de371cec0119c3d88e51c5bd71e26daa6c8928e7d3a812a4c41e0c390bb76d3

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7c7da604d8d1af3dbe76c331c1cc1c33d45f8c68e4c0c907c552b8a579e5c168
MD5 048434a6c197839d664a666acd18234b
BLAKE2b-256 d96a924412427c7949c5c3a150798c6ec36f0b625dec72830000fb1ee5871a6e

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c4fc50af65d376878c72119b7e8df7a477be5c5ddf0a32c03eb6b0cc83125d37
MD5 04b7fb65ab196cc4e1058754b401fdee
BLAKE2b-256 f77740bce05e54918342c3e0af3d98f1d44c5aadcde0f89fa37bc12c5e686519

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 21619a640e0a18d530c0282c53e4a1b079c7497d804473fb9bbff6b6fee8b8ef
MD5 6564b12142ca9949d0df8a7970a9d1ae
BLAKE2b-256 cf51d7de932bec4baf84da438432fe63c743179e177eb8eff2076ce96ded568b

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a18b4a314e4346d97ff6f9dc760cbcacc665d43a98c5bef1324093c00515c46e
MD5 5a2b04573b4f1a68dc9bfeb61688dd5c
BLAKE2b-256 f6184e045fe6edc94ec569de54c7d298787a5f5893072288584571e9fca63ea8

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 76fe682ee880f43c8cbd2166065844688fecdbc08166450f19aa746982685962
MD5 59482d5bd74d63a981a0bf49553bedcf
BLAKE2b-256 ff8893473b518744a175b26eba07f5cdc018b4a3cd3bcd317941118006748a14

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1a0c4b843cc8688ff85f3d2ff1c317e62daf76b6402346f8175618347a949a12
MD5 51edf14ddc621f55fd6e381871ebeec8
BLAKE2b-256 3af4fa0e86c017974e69b4ce80dcb7d8b0dbdd13776733fe2671148a9fd334ef

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 dfc238030e880b76ac443b3e4f0a795b31420dee2d0ed91bcd3dbe4895945cdc
MD5 4cdf1de01f1a8711013f56a1f184fff5
BLAKE2b-256 f48e2b4692f2f442f9ead19d977f8d076c80f4c2a3a9e4d4fae1bf2c3956e1d9

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 5d9248bc8488b619d76e8a739ddf8eac0deb7ac63667c43d1007f5f8fabca9e4
MD5 e5ab83c8fba916d2d39aabc225947298
BLAKE2b-256 f41b9355d5220840bda2a7042c44470feb7df1e47fab050e7aab0b5a965adebe

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

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

File hashes

Hashes for aioesphomeapi-44.8.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 4c6d4d53ff9ca2059ea6e56a9d1816bf2ad21ac80062c85f091baa599fb8d46d
MD5 ec80938eb5d7aa0e3a74db6a6286a66d
BLAKE2b-256 388e81bb6411a889a42819db2480c74665587f1ddd09248f65c6f73d6c7314eb

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cdcf1f93a2bf7358a24e59e7481177eb98f337ba2f26698cf383a2a6966c768e
MD5 085358ef25c553e1ef7ae3c4a4f0ee0e
BLAKE2b-256 1b5bdc80f58d947499df2c07ae202cbcb4c45240158cb71790f5cb917713f47e

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 32e2b0fb06410dd8feb1a57471299c45d482f812c8f8d38c5f36a1400fcf0500
MD5 88a3729fba8aeeb06d0c6abf61f39486
BLAKE2b-256 dfb472e74d799b3ff68b479184631ef3f8e3a6d9e8f7af79b0fc46b98e7f4700

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ce5e571899b51837e30466e84bf1af6cc721a6672331a5aaaee3e1d9e3b6dcf9
MD5 d8606881373c2c99b838a1de302e8860
BLAKE2b-256 d0b112178c03bd3d4c385b58b2f8afdbb85e4cb567ff7b14a1a6a152496601cc

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8e8c3b8fc77c0613bc4eb1a3bbc9af11f4a22dfeba325ebf8d15ec3bfc74f45d
MD5 63b4bab4188fe51c00ac95d871afd9d4
BLAKE2b-256 d22d882905056b9c3b3963838d541a65aafe7fabc1463bc76d0f5bac61e2f013

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6e9dc985e0b31b32186042e8b14178742edbe31258b8a25ed141c271b5185946
MD5 ef351dbe84b0c1af7fe1b8b59ae17378
BLAKE2b-256 9ae554dd18ee24ab920484c146f877af9ef1ad1b2f114d5fb37244fecbf98496

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 023b160eaa27171c570b07141f989068474774c6e6b9c3fea481b3ec32debfcc
MD5 8111a8e75b7df5b1116a356a052edf9f
BLAKE2b-256 2d5209eb5028c23a4320a46d753903142dd0fba4dc1a3bbe498620402aec4fa8

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 10fd5c2f7014165b3472a576cc6650ff7ce5ba175f59365bd29dd62e91f6564f
MD5 a52aba8cd09a41d427d2184839d882fd
BLAKE2b-256 9f40567508b4bfae4602fbabc4fd19fa00e47327d339f8db5677dca98d8eb400

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 fe445f5b7eacd6725c667801b135d56b3ad7f1118d8198a2258481ca87028a41
MD5 883013a18dd28169d6bbb970960051a1
BLAKE2b-256 3ddb97435f09cd59d3e8d2750a0687d06414cf8cc55d987d13ae9ec9c9ca856a

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 549413a579e9cf02fb5862bdd9bbb7b09f3c73356ce2474ffd11c2356b3cceb9
MD5 94eed4496644141ba33f706634d320c1
BLAKE2b-256 6c993411c901a4844a6b3747b782404b17ea96f3aaae9bf0673e77d482d9b156

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-44.8.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6a7275999c5ad53e678faaa42bdf3676ed1966f985946540af9994da075c2c9e
MD5 ed7f5382767bdb078c1549810c968b32
BLAKE2b-256 e8f21d2907cb6b1730d5e25f7c234562131d988b16e5a96c01a7b385fa468f86

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

Supported by

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