Skip to main content

aioesphomeapi

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.

Release files for aioesphomeapi 46.5.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for aioesphomeapi 46.5.0
File Size Uploaded
aioesphomeapi-46.5.0.tar.gz 268.5 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for aioesphomeapi 46.5.0
File
aioesphomeapi-46.5.0-cp315-cp315t-win_amd64.whl CPython 3.15 CPython 3.15 free-threading Windows x86-64 Details
aioesphomeapi-46.5.0-cp315-cp315t-win32.whl CPython 3.15 CPython 3.15 free-threading Windows x86-32 Details
aioesphomeapi-46.5.0-cp315-cp315t-musllinux_1_2_x86_64.whl CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ x86-64 Details
aioesphomeapi-46.5.0-cp315-cp315t-musllinux_1_2_i686.whl CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ x86-32 Details
aioesphomeapi-46.5.0-cp315-cp315t-musllinux_1_2_armv7l.whl CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ ARMv7l Details
aioesphomeapi-46.5.0-cp315-cp315t-musllinux_1_2_aarch64.whl CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ ARM64 Details
aioesphomeapi-46.5.0-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.15 CPython 3.15 free-threading Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
aioesphomeapi-46.5.0-cp315-cp315t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl CPython 3.15 CPython 3.15 free-threading Linux glibc 2.31+ ARMv7l, Linux glibc 2.17+ ARMv7l Details
aioesphomeapi-46.5.0-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.15 CPython 3.15 free-threading Linux glibc 2.28+ ARM64, Linux glibc 2.17+ ARM64 Details
aioesphomeapi-46.5.0-cp315-cp315t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl CPython 3.15 CPython 3.15 free-threading Linux glibc 2.5+ x86-32, Linux glibc 2.28+ x86-32 Details
aioesphomeapi-46.5.0-cp315-cp315t-macosx_11_0_arm64.whl CPython 3.15 CPython 3.15 free-threading macOS 11.0+ ARM64 Details
aioesphomeapi-46.5.0-cp315-cp315t-macosx_10_15_x86_64.whl CPython 3.15 CPython 3.15 free-threading macOS 10.15+ x86-64 Details
aioesphomeapi-46.5.0-cp315-cp315-win_amd64.whl CPython 3.15 CPython 3.15 Windows x86-64 Details
aioesphomeapi-46.5.0-cp315-cp315-win32.whl CPython 3.15 CPython 3.15 Windows x86-32 Details
aioesphomeapi-46.5.0-cp315-cp315-musllinux_1_2_x86_64.whl CPython 3.15 CPython 3.15 Linux musl 1.2+ x86-64 Details
aioesphomeapi-46.5.0-cp315-cp315-musllinux_1_2_i686.whl CPython 3.15 CPython 3.15 Linux musl 1.2+ x86-32 Details
aioesphomeapi-46.5.0-cp315-cp315-musllinux_1_2_armv7l.whl CPython 3.15 CPython 3.15 Linux musl 1.2+ ARMv7l Details
aioesphomeapi-46.5.0-cp315-cp315-musllinux_1_2_aarch64.whl CPython 3.15 CPython 3.15 Linux musl 1.2+ ARM64 Details
aioesphomeapi-46.5.0-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.15 CPython 3.15 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
aioesphomeapi-46.5.0-cp315-cp315-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl CPython 3.15 CPython 3.15 Linux glibc 2.17+ ARMv7l, Linux glibc 2.31+ ARMv7l Details
aioesphomeapi-46.5.0-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.15 CPython 3.15 Linux glibc 2.28+ ARM64, Linux glibc 2.17+ ARM64 Details
aioesphomeapi-46.5.0-cp315-cp315-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl CPython 3.15 CPython 3.15 Linux glibc 2.5+ x86-32, Linux glibc 2.28+ x86-32 Details
aioesphomeapi-46.5.0-cp315-cp315-macosx_11_0_arm64.whl CPython 3.15 CPython 3.15 macOS 11.0+ ARM64 Details
aioesphomeapi-46.5.0-cp315-cp315-macosx_10_15_x86_64.whl CPython 3.15 CPython 3.15 macOS 10.15+ x86-64 Details
aioesphomeapi-46.5.0-cp314-cp314t-win_amd64.whl CPython 3.14 CPython 3.14 free-threading Windows x86-64 Details
aioesphomeapi-46.5.0-cp314-cp314t-win32.whl CPython 3.14 CPython 3.14 free-threading Windows x86-32 Details
aioesphomeapi-46.5.0-cp314-cp314t-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64 Details
aioesphomeapi-46.5.0-cp314-cp314t-musllinux_1_2_i686.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-32 Details
aioesphomeapi-46.5.0-cp314-cp314t-musllinux_1_2_armv7l.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARMv7l Details
aioesphomeapi-46.5.0-cp314-cp314t-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64 Details
aioesphomeapi-46.5.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
aioesphomeapi-46.5.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.31+ ARMv7l, Linux glibc 2.17+ ARMv7l Details
aioesphomeapi-46.5.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
aioesphomeapi-46.5.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ x86-32, Linux glibc 2.5+ x86-32 Details
aioesphomeapi-46.5.0-cp314-cp314t-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64 Details
aioesphomeapi-46.5.0-cp314-cp314t-macosx_10_15_x86_64.whl CPython 3.14 CPython 3.14 free-threading macOS 10.15+ x86-64 Details
aioesphomeapi-46.5.0-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
aioesphomeapi-46.5.0-cp314-cp314-win32.whl CPython 3.14 CPython 3.14 Windows x86-32 Details
aioesphomeapi-46.5.0-cp314-cp314-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ x86-64 Details
aioesphomeapi-46.5.0-cp314-cp314-musllinux_1_2_i686.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ x86-32 Details
aioesphomeapi-46.5.0-cp314-cp314-musllinux_1_2_armv7l.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ ARMv7l Details
aioesphomeapi-46.5.0-cp314-cp314-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ ARM64 Details
aioesphomeapi-46.5.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
aioesphomeapi-46.5.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl CPython 3.14 CPython 3.14 Linux glibc 2.31+ ARMv7l, Linux glibc 2.17+ ARMv7l Details
aioesphomeapi-46.5.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
aioesphomeapi-46.5.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl CPython 3.14 CPython 3.14 Linux glibc 2.5+ x86-32, Linux glibc 2.28+ x86-32 Details
aioesphomeapi-46.5.0-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
aioesphomeapi-46.5.0-cp314-cp314-macosx_10_15_x86_64.whl CPython 3.14 CPython 3.14 macOS 10.15+ x86-64 Details
aioesphomeapi-46.5.0-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
aioesphomeapi-46.5.0-cp313-cp313-win32.whl CPython 3.13 CPython 3.13 Windows x86-32 Details
aioesphomeapi-46.5.0-cp313-cp313-musllinux_1_2_x86_64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-64 Details
aioesphomeapi-46.5.0-cp313-cp313-musllinux_1_2_i686.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-32 Details
aioesphomeapi-46.5.0-cp313-cp313-musllinux_1_2_armv7l.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARMv7l Details
aioesphomeapi-46.5.0-cp313-cp313-musllinux_1_2_aarch64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARM64 Details
aioesphomeapi-46.5.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
aioesphomeapi-46.5.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl CPython 3.13 CPython 3.13 Linux glibc 2.31+ ARMv7l, Linux glibc 2.17+ ARMv7l Details
aioesphomeapi-46.5.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
aioesphomeapi-46.5.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl CPython 3.13 CPython 3.13 Linux glibc 2.5+ x86-32, Linux glibc 2.28+ x86-32 Details
aioesphomeapi-46.5.0-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
aioesphomeapi-46.5.0-cp313-cp313-macosx_10_13_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.13+ x86-64 Details
aioesphomeapi-46.5.0-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
aioesphomeapi-46.5.0-cp312-cp312-win32.whl CPython 3.12 CPython 3.12 Windows x86-32 Details
aioesphomeapi-46.5.0-cp312-cp312-musllinux_1_2_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-64 Details
aioesphomeapi-46.5.0-cp312-cp312-musllinux_1_2_i686.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-32 Details
aioesphomeapi-46.5.0-cp312-cp312-musllinux_1_2_armv7l.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARMv7l Details
aioesphomeapi-46.5.0-cp312-cp312-musllinux_1_2_aarch64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARM64 Details
aioesphomeapi-46.5.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
aioesphomeapi-46.5.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARMv7l, Linux glibc 2.31+ ARMv7l Details
aioesphomeapi-46.5.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
aioesphomeapi-46.5.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl CPython 3.12 CPython 3.12 Linux glibc 2.5+ x86-32, Linux glibc 2.28+ x86-32 Details
aioesphomeapi-46.5.0-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
aioesphomeapi-46.5.0-cp312-cp312-macosx_10_13_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.13+ x86-64 Details
aioesphomeapi-46.5.0-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
aioesphomeapi-46.5.0-cp311-cp311-win32.whl CPython 3.11 CPython 3.11 Windows x86-32 Details
aioesphomeapi-46.5.0-cp311-cp311-musllinux_1_2_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-64 Details
aioesphomeapi-46.5.0-cp311-cp311-musllinux_1_2_i686.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-32 Details
aioesphomeapi-46.5.0-cp311-cp311-musllinux_1_2_armv7l.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARMv7l Details
aioesphomeapi-46.5.0-cp311-cp311-musllinux_1_2_aarch64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARM64 Details
aioesphomeapi-46.5.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ x86-64, Linux glibc 2.17+ x86-64 Details
aioesphomeapi-46.5.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARMv7l, Linux glibc 2.31+ ARMv7l Details
aioesphomeapi-46.5.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
aioesphomeapi-46.5.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ x86-32, Linux glibc 2.5+ x86-32 Details
aioesphomeapi-46.5.0-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
aioesphomeapi-46.5.0-cp311-cp311-macosx_10_9_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.9+ x86-64 Details

Total release size: 60.5 MB

Release files / aioesphomeapi-46.5.0.tar.gz

Download URL aioesphomeapi-46.5.0.tar.gz
Size 268.5 kB
Tags Source
SHA-256 checksum
How to use checksums
f8538664fd6a30b9abe5df89d2ea3752fe800c4307cad2e90f8f1808e1a21285
BLAKE2b-256 checksum
How to use checksums
8303f73a72768a3af36a7aa9fd875e8e301318f79b7540e29a18a1feb97ae1f5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / aioesphomeapi-46.5.0-cp315-cp315t-win_amd64.whl

Download URL aioesphomeapi-46.5.0-cp315-cp315t-win_amd64.whl
Size 656.2 kB
Tags CPython 3.15 CPython 3.15 free-threading Windows x86-64
SHA-256 checksum
How to use checksums
bb5a069416484ae35e8d517da76a3f519a63fe4e2533cb975f835c67f69f6c64
BLAKE2b-256 checksum
How to use checksums
dbcbffffddce7ecc9bf06393f887e9c25b4b63785834e4826d5174a705348224
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / aioesphomeapi-46.5.0-cp315-cp315t-win32.whl

Download URL aioesphomeapi-46.5.0-cp315-cp315t-win32.whl
Size 594.8 kB
Tags CPython 3.15 CPython 3.15 free-threading Windows x86-32
SHA-256 checksum
How to use checksums
1f00d021736b626af321da1c1c9b35edec75f8715b7f5757f71214dea4f7dd12
BLAKE2b-256 checksum
How to use checksums
05f1c83af5e7699e447ebb42ea9780705903a07439af1cad07714b0a6b81dd52
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / aioesphomeapi-46.5.0-cp315-cp315t-musllinux_1_2_x86_64.whl

Download URL aioesphomeapi-46.5.0-cp315-cp315t-musllinux_1_2_x86_64.whl
Size 781.7 kB
Tags CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
22ec2c20fade173a208902aa8d39b09621370838c537b0dd1de2daba5c6c7e7a
BLAKE2b-256 checksum
How to use checksums
3fae8330b280f472af16ea884f51c0332cdb04407ada3298bf3b1047159bff9a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / aioesphomeapi-46.5.0-cp315-cp315t-musllinux_1_2_i686.whl

Download URL aioesphomeapi-46.5.0-cp315-cp315t-musllinux_1_2_i686.whl
Size 763.0 kB
Tags CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
16d3203c943fe7daa7f80f8f0443bf0f5e241c3f26006b1e26b018b1637e9d4c
BLAKE2b-256 checksum
How to use checksums
1ca80c73eee546d27a737b3b534a07e0b1aba0336331957fcb9b5de272f3f108
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / aioesphomeapi-46.5.0-cp315-cp315t-musllinux_1_2_armv7l.whl

Download URL aioesphomeapi-46.5.0-cp315-cp315t-musllinux_1_2_armv7l.whl
Size 751.9 kB
Tags CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
9b1d0bfe244dc34f3a04ea54092d97476cd60bac3b4c032c7300a40661cfac2b
BLAKE2b-256 checksum
How to use checksums
27c7b4dfdfcfdd1847942dcf33a9d1102ca859a53309bc26147cc33e38cfc610
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / aioesphomeapi-46.5.0-cp315-cp315t-musllinux_1_2_aarch64.whl

Download URL aioesphomeapi-46.5.0-cp315-cp315t-musllinux_1_2_aarch64.whl
Size 765.0 kB
Tags CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
dbf77fb1f86939df7ed789bdd0af80dcdc75d2697351a339ba099d7dad8372b3
BLAKE2b-256 checksum
How to use checksums
f43cb2c9764865d54cdc234cf9b23813fc361891f24977804de3a8bbbca8ee44
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / aioesphomeapi-46.5.0-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL aioesphomeapi-46.5.0-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 772.1 kB
Tags CPython 3.15 CPython 3.15 free-threading Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
f65cbaa137bd9328f8a0b6df6688214d4bd2e0107975b5e83edb1787be678128
BLAKE2b-256 checksum
How to use checksums
a9aab1fdd3ff0687f1512d233b5683327925237bb6516fab613237d69c695616
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / aioesphomeapi-46.5.0-cp315-cp315t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl

Download URL aioesphomeapi-46.5.0-cp315-cp315t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Size 731.3 kB
Tags CPython 3.15 CPython 3.15 free-threading Linux glibc 2.17+ ARMv7l Linux glibc 2.31+ ARMv7l
SHA-256 checksum
How to use checksums
f1b14ae33cf3d43ef41691cf1b4c4e3447204efb9bb79e574854745dfe482370
BLAKE2b-256 checksum
How to use checksums
f4728335afbc262faf7a6d2f62d034d54cc772817950bbd2e49a4f1b659993ed
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / aioesphomeapi-46.5.0-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL aioesphomeapi-46.5.0-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 755.9 kB
Tags CPython 3.15 CPython 3.15 free-threading Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
55280345b9270aeb1f540ba7bdb6a3ae8d20b5cea7b6efd02b3f64a058b80c19
BLAKE2b-256 checksum
How to use checksums
1bef8671a2184417d501ce5a1c3accf058ee9debd963051ec3dc11dbdf482923
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / aioesphomeapi-46.5.0-cp315-cp315t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl

Download URL aioesphomeapi-46.5.0-cp315-cp315t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Size 750.2 kB
Tags CPython 3.15 CPython 3.15 free-threading Linux glibc 2.28+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
dc8c1f9146cdf28f2cfca4b93387b73e54d6bb5510842ea0f11739f1e9e96a61
BLAKE2b-256 checksum
How to use checksums
608a523e378cd903bb7e8f335e4b18d7dffae614a58e24c71d51bc3035d84653
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / aioesphomeapi-46.5.0-cp315-cp315t-macosx_11_0_arm64.whl

Download URL aioesphomeapi-46.5.0-cp315-cp315t-macosx_11_0_arm64.whl
Size 697.0 kB
Tags CPython 3.15 CPython 3.15 free-threading macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
7b80902f58a56fe80419e5e2f83812c2d8574f4fe8b30677e2eb448ab1689782
BLAKE2b-256 checksum
How to use checksums
196f72f6ab258b729d349ba76daccb6d489dc8cd12cdca581c6368dd9357082b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / aioesphomeapi-46.5.0-cp315-cp315t-macosx_10_15_x86_64.whl

Download URL aioesphomeapi-46.5.0-cp315-cp315t-macosx_10_15_x86_64.whl
Size 701.6 kB
Tags CPython 3.15 CPython 3.15 free-threading macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
e493422b6220dc19809ecc0bb4642284aaa4433a099f425e25bc5ed43803114a
BLAKE2b-256 checksum
How to use checksums
ead4de1bcb0b8815bb3b62c857ecbc45b38a48cbec895c461d0897c2a5dcc796
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / aioesphomeapi-46.5.0-cp315-cp315-win_amd64.whl

Download URL aioesphomeapi-46.5.0-cp315-cp315-win_amd64.whl
Size 615.6 kB
Tags CPython 3.15 Windows x86-64
SHA-256 checksum
How to use checksums
7dac5ecc04da6e36bf1f2ea7bb15d4f2c845f440d6a92649fa3233d04c9657e2
BLAKE2b-256 checksum
How to use checksums
76a888121bb2c13183bcffc9aa46de0b1436af259c257bbde000ea218dad3ad8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / aioesphomeapi-46.5.0-cp315-cp315-win32.whl

Download URL aioesphomeapi-46.5.0-cp315-cp315-win32.whl
Size 552.9 kB
Tags CPython 3.15 Windows x86-32
SHA-256 checksum
How to use checksums
624cb40af15d15c3d4e6d599c7983c4b54bc2af0c780cf7626244a4a3943984f
BLAKE2b-256 checksum
How to use checksums
e4d72b679deb7169b42661c4d7eaa0b9126a7124c0dbbefb41f8eb0fd97ab21e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / aioesphomeapi-46.5.0-cp315-cp315-musllinux_1_2_x86_64.whl

Download URL aioesphomeapi-46.5.0-cp315-cp315-musllinux_1_2_x86_64.whl
Size 776.8 kB
Tags CPython 3.15 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
fd3420d6423c5f5d670bd316f630c854204c88cc0dc6e5fb85e2776db08c3c4e
BLAKE2b-256 checksum
How to use checksums
2ed1c81e2c1c9e0ca34d6f2c8871fc31a21add2cc56ef82b142e5f8625a568bd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / aioesphomeapi-46.5.0-cp315-cp315-musllinux_1_2_i686.whl

Download URL aioesphomeapi-46.5.0-cp315-cp315-musllinux_1_2_i686.whl
Size 757.4 kB
Tags CPython 3.15 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
2ee6a855371bb9449506bf9f9fc14c2ca5e8ede6659e29b7e161fb9b80302f85
BLAKE2b-256 checksum
How to use checksums
868db3abfc867cb791a542215e9f3f7a3b9e5a90ea8c49b0b14b5cef00eabaa3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / aioesphomeapi-46.5.0-cp315-cp315-musllinux_1_2_armv7l.whl

Download URL aioesphomeapi-46.5.0-cp315-cp315-musllinux_1_2_armv7l.whl
Size 740.2 kB
Tags CPython 3.15 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
e6edeaac9f87cae8b2fe0f19b69247dfff532f5ac39cd50161ef1ee6936ea86c
BLAKE2b-256 checksum
How to use checksums
afed742111e905d720efe1bbb6be076cd98a25b4e62a4bdf588dbf02e66327ed
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / aioesphomeapi-46.5.0-cp315-cp315-musllinux_1_2_aarch64.whl

Download URL aioesphomeapi-46.5.0-cp315-cp315-musllinux_1_2_aarch64.whl
Size 749.0 kB
Tags CPython 3.15 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
6902b3ed6582e5274d827afdd62daf20091a006072788ac5030cf2c112f6660b
BLAKE2b-256 checksum
How to use checksums
78ace986369ffc7c3b098d0bf3e6dbcb1b9766de6d212467b12b167c58990050
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / aioesphomeapi-46.5.0-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL aioesphomeapi-46.5.0-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 769.5 kB
Tags CPython 3.15 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
b6d43288c4febb1c8513aa9b5f9bdf9d841512178c0f639f382269e6ef1f5ac8
BLAKE2b-256 checksum
How to use checksums
c14f95ee11af70cea1db6e17658f4892498ad9a0ef6c8f218dc1ea0d418bbd64
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / aioesphomeapi-46.5.0-cp315-cp315-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl

Download URL aioesphomeapi-46.5.0-cp315-cp315-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Size 744.8 kB
Tags CPython 3.15 Linux glibc 2.17+ ARMv7l Linux glibc 2.31+ ARMv7l
SHA-256 checksum
How to use checksums
1c5cc44079d187c903c0e0f26e3cdd0400a36727c1a3d996b631ad5f66494743
BLAKE2b-256 checksum
How to use checksums
eae513da6d53a109ec23236cb30a4c403f85a3a9e4947decc18422f917ebb38e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / aioesphomeapi-46.5.0-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL aioesphomeapi-46.5.0-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 741.2 kB
Tags CPython 3.15 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
5ccee85783ec1fa9a09fa4375b2cbe08cd5752cb18bc784ac4c925c401b86e29
BLAKE2b-256 checksum
How to use checksums
b365c1c3549d2a09ec43048c44841cef5fb6f982f009ca71716494fac0377704
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / aioesphomeapi-46.5.0-cp315-cp315-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl

Download URL aioesphomeapi-46.5.0-cp315-cp315-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Size 745.8 kB
Tags CPython 3.15 Linux glibc 2.28+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
6aef79ba2c09dbd5a84cf1f85d3bc0c40e2f83dd83eca2328fa3d8da5b881c95
BLAKE2b-256 checksum
How to use checksums
7fa4b94a3fb7111ed7ba30eb7a6c1f084bbdea2900fdd3f4eeb4350ba4816ed9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / aioesphomeapi-46.5.0-cp315-cp315-macosx_11_0_arm64.whl

Download URL aioesphomeapi-46.5.0-cp315-cp315-macosx_11_0_arm64.whl
Size 653.4 kB
Tags CPython 3.15 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
17c1e82dee93db08b1f7478b95bf3f856e6159553e7dcf0c58586fef0706ec0a
BLAKE2b-256 checksum
How to use checksums
430e61b3866c594b66f8d529bcc0347728c4657d8d83ac0e750d390e30a746f0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / aioesphomeapi-46.5.0-cp315-cp315-macosx_10_15_x86_64.whl

Download URL aioesphomeapi-46.5.0-cp315-cp315-macosx_10_15_x86_64.whl
Size 670.4 kB
Tags CPython 3.15 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
2d3111944b145926cadac59fb25839e6cedb138c9765457d455d133c146ff403
BLAKE2b-256 checksum
How to use checksums
87574a22af26f916b23a270c15e9e8e247a96fcfd9782b75cac5061b8d86ffe5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / aioesphomeapi-46.5.0-cp314-cp314t-win_amd64.whl

Download URL aioesphomeapi-46.5.0-cp314-cp314t-win_amd64.whl
Size 661.8 kB
Tags CPython 3.14 CPython 3.14 free-threading Windows x86-64
SHA-256 checksum
How to use checksums
6052f48ecc5588080cbe2d9aa6756fa858bea4dceed48d8d4f08d738eb8070b3
BLAKE2b-256 checksum
How to use checksums
047b0dac46cd760ea942ca9b1b044bfcc4001b1fc4f1e8a4a7f86c787ce9bdd4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / aioesphomeapi-46.5.0-cp314-cp314t-win32.whl

Download URL aioesphomeapi-46.5.0-cp314-cp314t-win32.whl
Size 597.9 kB
Tags CPython 3.14 CPython 3.14 free-threading Windows x86-32
SHA-256 checksum
How to use checksums
bd4eb7dfb3d97ec2a5f41085a2da34a48a868e163159d0cc6a16958f17c74db0
BLAKE2b-256 checksum
How to use checksums
3d566b95e4c2f7187781d1c65f43ced5f0796b13f880e4ab6d51527746fde16c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / aioesphomeapi-46.5.0-cp314-cp314t-musllinux_1_2_x86_64.whl

Download URL aioesphomeapi-46.5.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Size 782.2 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
041698384dedf81aeead249b828b9de56bf1988011bddd260208eafa9574ca4e
BLAKE2b-256 checksum
How to use checksums
706c565b6937be0979ff60c524d7d27771720454d251f8da8a4eddf9dcb1588f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / aioesphomeapi-46.5.0-cp314-cp314t-musllinux_1_2_i686.whl

Download URL aioesphomeapi-46.5.0-cp314-cp314t-musllinux_1_2_i686.whl
Size 804.0 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
f2cc536ff9231634a23c3ab66ab96741555ec64e8f56d849340596f61aba42b2
BLAKE2b-256 checksum
How to use checksums
46f0d4ba857d45018a8fd69d0de2bbeaf24a0ef45406269fa2f19163f4a274c2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / aioesphomeapi-46.5.0-cp314-cp314t-musllinux_1_2_armv7l.whl

Download URL aioesphomeapi-46.5.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Size 718.7 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
3284007a222fb81b7c7f937b9d17170b86a18a88ecd7f7ad8efd715c19b08e6b
BLAKE2b-256 checksum
How to use checksums
7ecebd227203409b54e17d3d35b8f0118a3c677ddac73ac585b115faace046b7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / aioesphomeapi-46.5.0-cp314-cp314t-musllinux_1_2_aarch64.whl

Download URL aioesphomeapi-46.5.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Size 767.6 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
6668015aa9524ed38adfec755338ea8f237b19645fe6d037a1d174af49a82f44
BLAKE2b-256 checksum
How to use checksums
e9721beeadf6ac387ad56d29a729179812d85f5c7ac003ebb5a684c22b98c4a6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / aioesphomeapi-46.5.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL aioesphomeapi-46.5.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 774.0 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
4484483c5d7c26bcc7574dbbeb96696606f86a966589846994c9cc2c522db7f5
BLAKE2b-256 checksum
How to use checksums
aa7f27820d76693d80e8d063337a0bd0ec3c554b78115b846b9486dbfb5a064d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / aioesphomeapi-46.5.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl

Download URL aioesphomeapi-46.5.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Size 700.5 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARMv7l Linux glibc 2.31+ ARMv7l
SHA-256 checksum
How to use checksums
f22d862fdfaf0b881ddd6a578f02120dbc68de64fe4d543280f670958e5d1b57
BLAKE2b-256 checksum
How to use checksums
e371b77441c30c906ebcaaf37295adbe8f7a2dd04c9a415ff2b222ab079b9db2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / aioesphomeapi-46.5.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL aioesphomeapi-46.5.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 759.0 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
92c39b40fbaf640c3c3aa84d2b57fccddae14b25a43c190af445617bbbcf6b3d
BLAKE2b-256 checksum
How to use checksums
591585a58376e74f39c9b5684a58823e4f5d3319ebfa61b6ae58585ade6188c9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / aioesphomeapi-46.5.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl

Download URL aioesphomeapi-46.5.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Size 790.9 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
e8f3f3e3b362c8c2233a6dc117412dd08ac2b059b6e8a7854778704bec0955e0
BLAKE2b-256 checksum
How to use checksums
2249224d730fa6b0bba7c8a1ee716917dbd83a0e0745a982a6686c705efd8b0b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / aioesphomeapi-46.5.0-cp314-cp314t-macosx_11_0_arm64.whl

Download URL aioesphomeapi-46.5.0-cp314-cp314t-macosx_11_0_arm64.whl
Size 702.2 kB
Tags CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
3bf2b0516f6f3a2ade9529fa8151533b75196874eda1e63a777b4c16e08124bc
BLAKE2b-256 checksum
How to use checksums
cf4ec2bfc42a03f412c1ea6e6ce5d26d6940d4d7d58a7eb50caae400212c2508
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / aioesphomeapi-46.5.0-cp314-cp314t-macosx_10_15_x86_64.whl

Download URL aioesphomeapi-46.5.0-cp314-cp314t-macosx_10_15_x86_64.whl
Size 707.6 kB
Tags CPython 3.14 CPython 3.14 free-threading macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
d22f52d18fe21f82900d3feb0bbcd6d2a531faf0cb5ef4a596e0ce574658d44b
BLAKE2b-256 checksum
How to use checksums
835fa716349fbd392875d5bd33897f412236f96311e2d3fa8cccef77543a9f14
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / aioesphomeapi-46.5.0-cp314-cp314-win_amd64.whl

Download URL aioesphomeapi-46.5.0-cp314-cp314-win_amd64.whl
Size 616.7 kB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
8e2b884e8f080b79c99add716e87c0a59ffa4c90bac348a3d3a17a77e434570f
BLAKE2b-256 checksum
How to use checksums
7c6566067a43891985c1f6807f088b888b0942ec14aa1abcc05c12dc9b4b2096
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / aioesphomeapi-46.5.0-cp314-cp314-win32.whl

Download URL aioesphomeapi-46.5.0-cp314-cp314-win32.whl
Size 553.5 kB
Tags CPython 3.14 Windows x86-32
SHA-256 checksum
How to use checksums
8da0bf671403a8f6c5571f648155aa353e959f4dfb0b7eae090b0a266727fa9b
BLAKE2b-256 checksum
How to use checksums
5a1061b15d732d9aa8f14f5e0240d7ca5ee613f25bfe64a5296e4752c60a264a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / aioesphomeapi-46.5.0-cp314-cp314-musllinux_1_2_x86_64.whl

Download URL aioesphomeapi-46.5.0-cp314-cp314-musllinux_1_2_x86_64.whl
Size 774.2 kB
Tags CPython 3.14 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
d89c76c5b37e8ba9be05eddc415fd0b08c0a36a6d7f6e50e9e851ecb5cf98f88
BLAKE2b-256 checksum
How to use checksums
01df7cdfc3df6591d021eafdce3b821174d13a97142896769416fdcbe8f5a4dd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / aioesphomeapi-46.5.0-cp314-cp314-musllinux_1_2_i686.whl

Download URL aioesphomeapi-46.5.0-cp314-cp314-musllinux_1_2_i686.whl
Size 801.2 kB
Tags CPython 3.14 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
336f5a60cc0187df02fbb42760ab41bf699f9a57772b52db165abac197927190
BLAKE2b-256 checksum
How to use checksums
5ada4f8f9ddce6b95285d696b81f6680ca0cc7dcbc3a6678673eae47621d9af2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / aioesphomeapi-46.5.0-cp314-cp314-musllinux_1_2_armv7l.whl

Download URL aioesphomeapi-46.5.0-cp314-cp314-musllinux_1_2_armv7l.whl
Size 703.1 kB
Tags CPython 3.14 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
dbc932bcfa779c12022ce77fa7c99ad8fe34c670facd8678fffc94e60d07d718
BLAKE2b-256 checksum
How to use checksums
f6c8c494f2516f94dc7281c97326413c64166e81997fd8840f2d6416b09c0d75
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / aioesphomeapi-46.5.0-cp314-cp314-musllinux_1_2_aarch64.whl

Download URL aioesphomeapi-46.5.0-cp314-cp314-musllinux_1_2_aarch64.whl
Size 748.8 kB
Tags CPython 3.14 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
c978d2748d96894e55182df77b348cf0ab9a72e2653efb84de087b57f794cb3a
BLAKE2b-256 checksum
How to use checksums
293412e6f60a86b0958c7b97de383208c3d7a6c8b13b20c96329b3ea5df1e221
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / aioesphomeapi-46.5.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL aioesphomeapi-46.5.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 764.9 kB
Tags CPython 3.14 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
5c8bdf38d9cdd15e1370c8d727df5fce52aba14fe8ce8722468feed9f793640d
BLAKE2b-256 checksum
How to use checksums
0aef46eb0c9ee671eb4d75d710da3419675578398b6a6dc5aba3759dca880daa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / aioesphomeapi-46.5.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl

Download URL aioesphomeapi-46.5.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Size 704.8 kB
Tags CPython 3.14 Linux glibc 2.17+ ARMv7l Linux glibc 2.31+ ARMv7l
SHA-256 checksum
How to use checksums
dbaf6e7318c88e1f22539ec7e1745ccbc1af205d632453f83e51e93a578843c9
BLAKE2b-256 checksum
How to use checksums
7fe457a217cf3e32feeb2968d8df547010b8fce49bafce4fff7cc761e7da6996
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / aioesphomeapi-46.5.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL aioesphomeapi-46.5.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 740.3 kB
Tags CPython 3.14 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
55955de2ae3740a488319a0089253395f6894349121ef37d411e1e3e25e7cecf
BLAKE2b-256 checksum
How to use checksums
faaf6ea2acae35668a7bd5fc8308a728267bfa3dab1a6be606fe20bba06a65fb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / aioesphomeapi-46.5.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl

Download URL aioesphomeapi-46.5.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Size 789.1 kB
Tags CPython 3.14 Linux glibc 2.28+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
c0203dbedd7ce5e9f1b775d8b8382c1e3d8c89b2bb5033299ae76cf79757de09
BLAKE2b-256 checksum
How to use checksums
a5c62986afef1253adf0247fba0b8d9c206e9c7bc7589122ad94177ca5322286
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / aioesphomeapi-46.5.0-cp314-cp314-macosx_11_0_arm64.whl

Download URL aioesphomeapi-46.5.0-cp314-cp314-macosx_11_0_arm64.whl
Size 656.6 kB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
36dff060240a5b86104f22095a749ba045674e474ab47a268d9847a00f628667
BLAKE2b-256 checksum
How to use checksums
2767a6aa68d8c30c0a7c6d28b571ed7befb226ebee8e37849213369eec245ddb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / aioesphomeapi-46.5.0-cp314-cp314-macosx_10_15_x86_64.whl

Download URL aioesphomeapi-46.5.0-cp314-cp314-macosx_10_15_x86_64.whl
Size 672.4 kB
Tags CPython 3.14 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
ee10e282286eccce1646f1d78c12c4019deedaaeb52ea96423e4a5a373da4bf8
BLAKE2b-256 checksum
How to use checksums
442d1b7348a486c77043b2840b6636d42e839865ab8959c69fb2e77eff307a6c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / aioesphomeapi-46.5.0-cp313-cp313-win_amd64.whl

Download URL aioesphomeapi-46.5.0-cp313-cp313-win_amd64.whl
Size 603.4 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
da87714feb818112f5e569987e25b2991d9eb42214db03d4b5509ccededebcf5
BLAKE2b-256 checksum
How to use checksums
51e2710578b23caa453a0babe4704ce74721aa9c2d5d14224cbfe9c97a1af01c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / aioesphomeapi-46.5.0-cp313-cp313-win32.whl

Download URL aioesphomeapi-46.5.0-cp313-cp313-win32.whl
Size 543.4 kB
Tags CPython 3.13 Windows x86-32
SHA-256 checksum
How to use checksums
53345ca22545ec52a5d31438b7deb3fe9fe2e78ab65b832392aa603a7c2c611d
BLAKE2b-256 checksum
How to use checksums
69f6f008f08947d911f799af9c9833e0c1b7bafd638329cf9baa3980feed2912
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / aioesphomeapi-46.5.0-cp313-cp313-musllinux_1_2_x86_64.whl

Download URL aioesphomeapi-46.5.0-cp313-cp313-musllinux_1_2_x86_64.whl
Size 770.1 kB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
2702ebee0ea24204c310c47eeb4b224645ceae8c88dd434c39cd77e4ccd366ca
BLAKE2b-256 checksum
How to use checksums
c32be6677c3649d581fa975016d2c65f48837e64137d44c6f9bf22fd8f1a7249
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / aioesphomeapi-46.5.0-cp313-cp313-musllinux_1_2_i686.whl

Download URL aioesphomeapi-46.5.0-cp313-cp313-musllinux_1_2_i686.whl
Size 799.2 kB
Tags CPython 3.13 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
cc8485540a73da2cf559dfb77143c833c5e74e62103c5704c6eed8cc2f8e2b05
BLAKE2b-256 checksum
How to use checksums
65c685d48212cb0104759ff3ef58adaf99d9ef7ee6ce866969999c4ed771d5a0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / aioesphomeapi-46.5.0-cp313-cp313-musllinux_1_2_armv7l.whl

Download URL aioesphomeapi-46.5.0-cp313-cp313-musllinux_1_2_armv7l.whl
Size 711.2 kB
Tags CPython 3.13 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
171a0de879eb89a6994d50d42f9ecd60a19eff1feb824f59d5f439a16deda588
BLAKE2b-256 checksum
How to use checksums
f45051c97a45aa3ea54ead3d17fa03d52ad23f04609ca24f78c26abf97a31783
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / aioesphomeapi-46.5.0-cp313-cp313-musllinux_1_2_aarch64.whl

Download URL aioesphomeapi-46.5.0-cp313-cp313-musllinux_1_2_aarch64.whl
Size 738.2 kB
Tags CPython 3.13 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
112df10cde81ac9b66c8f0a7fb86819b7625c74368a4ca6d5638d6d16bc4925e
BLAKE2b-256 checksum
How to use checksums
835ff75ef22df8806a30811314e7826355898082a682f199c1afd0cb30543789
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / aioesphomeapi-46.5.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL aioesphomeapi-46.5.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 761.7 kB
Tags CPython 3.13 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
b2045c21d0c289195d5c5c793dc1858180349a33ebf2aae26f60942e8bfbf29a
BLAKE2b-256 checksum
How to use checksums
b59fe7270a7fefb36768c8c5de954724c30dd81d2245270fd0a09fb1fdf8480b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / aioesphomeapi-46.5.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl

Download URL aioesphomeapi-46.5.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Size 712.2 kB
Tags CPython 3.13 Linux glibc 2.17+ ARMv7l Linux glibc 2.31+ ARMv7l
SHA-256 checksum
How to use checksums
42a12a9442e84ba404a3e50b7b51b5ee79ab1bedcd06f26afe0b1a7f2087b1ed
BLAKE2b-256 checksum
How to use checksums
22f1e28c1e8e0b47924940f62f89c45db63124038d2b7e0f25e678992c0d2366
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / aioesphomeapi-46.5.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL aioesphomeapi-46.5.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 730.3 kB
Tags CPython 3.13 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
fda63ec3da27b466f91584dbc0a744228bd201a233b6de24dd925c56aa14f991
BLAKE2b-256 checksum
How to use checksums
ed5e077b7dea22f4fb2679199d7b0298f7c97127514b1b3e91e6ef85bcf686ba
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / aioesphomeapi-46.5.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl

Download URL aioesphomeapi-46.5.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Size 787.4 kB
Tags CPython 3.13 Linux glibc 2.28+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
4dfcdf9670d1c15e5a28cae64f0eabdd9c622466f7bc1ce79d80ed99a388e181
BLAKE2b-256 checksum
How to use checksums
92410536b6388dc4064a1cee4d2ad39f10f1b53a34c928f0e0c2c99f5d25d48e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / aioesphomeapi-46.5.0-cp313-cp313-macosx_11_0_arm64.whl

Download URL aioesphomeapi-46.5.0-cp313-cp313-macosx_11_0_arm64.whl
Size 649.1 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
62c7ecc9dfd49a2ab6d2cd068c339cf294fb79f4c46495a69708c33a184e6583
BLAKE2b-256 checksum
How to use checksums
91b2284cfb011aab591a7e74e250094d3f61d9cf524888ee3b7430988c0af5d3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / aioesphomeapi-46.5.0-cp313-cp313-macosx_10_13_x86_64.whl

Download URL aioesphomeapi-46.5.0-cp313-cp313-macosx_10_13_x86_64.whl
Size 668.3 kB
Tags CPython 3.13 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
4c1836992f0ab0074b0557b73f0373a5e4449ebc3f82285930ada91272f087a8
BLAKE2b-256 checksum
How to use checksums
070758a7d24407d4d385dde695f03cec199d890eb99bc35de29389d252d9054d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / aioesphomeapi-46.5.0-cp312-cp312-win_amd64.whl

Download URL aioesphomeapi-46.5.0-cp312-cp312-win_amd64.whl
Size 607.4 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
1654e3098818d77ea169b5fb7e29643553cdd5f7bf572d1411a016f4684aff7d
BLAKE2b-256 checksum
How to use checksums
9fa839fe328bf50a9993e1fd71993adfa4345ec68f962aef0a96795ce80775b7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / aioesphomeapi-46.5.0-cp312-cp312-win32.whl

Download URL aioesphomeapi-46.5.0-cp312-cp312-win32.whl
Size 545.7 kB
Tags CPython 3.12 Windows x86-32
SHA-256 checksum
How to use checksums
0e3451c8379ed6b8a408e347183912a27b6ed82338d389a5ef30b4c9693b173e
BLAKE2b-256 checksum
How to use checksums
377db9c6b4e7a0bb8d8709a28dc6e873dbfa1a098f63430a9be3004f361414e5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / aioesphomeapi-46.5.0-cp312-cp312-musllinux_1_2_x86_64.whl

Download URL aioesphomeapi-46.5.0-cp312-cp312-musllinux_1_2_x86_64.whl
Size 774.5 kB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
a75bc6a97e0b5cf8dde7ff8f5c304c06b9a544dbaf5241e507d8b46197f247f6
BLAKE2b-256 checksum
How to use checksums
cf02ada4122d5bf38859bda400bf2d0275e66b67ed75f07c352bcce10c812d1f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / aioesphomeapi-46.5.0-cp312-cp312-musllinux_1_2_i686.whl

Download URL aioesphomeapi-46.5.0-cp312-cp312-musllinux_1_2_i686.whl
Size 805.0 kB
Tags CPython 3.12 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
90d04acdc3c8fb5a9031273658a41c622f74fab8fba0ee093c299d432a578a0c
BLAKE2b-256 checksum
How to use checksums
882e54329c710f49214caa437717479dd6af8da9f2d23a1eb153bff48a61f3ae
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / aioesphomeapi-46.5.0-cp312-cp312-musllinux_1_2_armv7l.whl

Download URL aioesphomeapi-46.5.0-cp312-cp312-musllinux_1_2_armv7l.whl
Size 715.9 kB
Tags CPython 3.12 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
61b953f52e64719f72d73e1bf164648d4d9f873ce566fa556ee71a516e3e5a33
BLAKE2b-256 checksum
How to use checksums
4eddd61338dc985f84d63076cce00a6c751cc4a72770b2053a4275f0d7afdc82
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / aioesphomeapi-46.5.0-cp312-cp312-musllinux_1_2_aarch64.whl

Download URL aioesphomeapi-46.5.0-cp312-cp312-musllinux_1_2_aarch64.whl
Size 740.7 kB
Tags CPython 3.12 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
789a99882175482baebe88da22d01c3eb6754a79730c861dc1a53bdede86f9f6
BLAKE2b-256 checksum
How to use checksums
33bdae7c50a7d1c0b88e89fd2a967c92de543863671c99207687ddfd2e5ecbe9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / aioesphomeapi-46.5.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL aioesphomeapi-46.5.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 767.0 kB
Tags CPython 3.12 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
1191bb6b1981f205b306b22972da2730b8fa49aa81fc3d01243725b292229234
BLAKE2b-256 checksum
How to use checksums
98e4624f3cd8d862232e3b2203522b34d3f08ed3c1acdceb4d236ef82fc1220d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / aioesphomeapi-46.5.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl

Download URL aioesphomeapi-46.5.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Size 718.7 kB
Tags CPython 3.12 Linux glibc 2.17+ ARMv7l Linux glibc 2.31+ ARMv7l
SHA-256 checksum
How to use checksums
2e629ecb5ff797256041154edd4ce775fd321a7810daf91a8cbda4d4b142e3bf
BLAKE2b-256 checksum
How to use checksums
235bced79b29138ecc1465d58156df17ba7e0efaf2d63c8458e79ea2df43b405
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / aioesphomeapi-46.5.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL aioesphomeapi-46.5.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 733.6 kB
Tags CPython 3.12 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
9375a436ac55ca55fce687152e8a6a5b12a47d82a57dda486c947e4981339c30
BLAKE2b-256 checksum
How to use checksums
72d1c6d9339a01756605ec11c6499f3274a4b6def841ee4150c25b4f9105cb0a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / aioesphomeapi-46.5.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl

Download URL aioesphomeapi-46.5.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Size 793.9 kB
Tags CPython 3.12 Linux glibc 2.28+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
3a2a806d6ec53791dfc752efd33567c636f67e319980bc8d336e6543f8153de9
BLAKE2b-256 checksum
How to use checksums
36489724299e2071dd6a0fdbdf5ea916f3a94098098194ba9c33dd649c52ae6a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / aioesphomeapi-46.5.0-cp312-cp312-macosx_11_0_arm64.whl

Download URL aioesphomeapi-46.5.0-cp312-cp312-macosx_11_0_arm64.whl
Size 654.8 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
53e3550015b2a41c72285de2d9902fb1abbd72eb5fc6dedd2373cf668dbe3d04
BLAKE2b-256 checksum
How to use checksums
3bb718c08b6b5bd0cfe513aa86ad4d5ba527df375034a72d3f1b4c30640525b4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / aioesphomeapi-46.5.0-cp312-cp312-macosx_10_13_x86_64.whl

Download URL aioesphomeapi-46.5.0-cp312-cp312-macosx_10_13_x86_64.whl
Size 673.1 kB
Tags CPython 3.12 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
f8ac69ea1228402a9ec07c1365d8d66aad835a6cd1156e129143030be4d6ebea
BLAKE2b-256 checksum
How to use checksums
e9202c7c37956e16050b4d3ee9cbbb3f48fe856443a39821789f3460173425bc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / aioesphomeapi-46.5.0-cp311-cp311-win_amd64.whl

Download URL aioesphomeapi-46.5.0-cp311-cp311-win_amd64.whl
Size 617.8 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
0595398636c4938ebf9eba1f49dcd92c725a783ba3dc111545fa5ae1f77ddf52
BLAKE2b-256 checksum
How to use checksums
3814c3bfe0dd5e9120067b0ca97bb1342db9ca20a285a1a8b2c3573db68bc3f4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / aioesphomeapi-46.5.0-cp311-cp311-win32.whl

Download URL aioesphomeapi-46.5.0-cp311-cp311-win32.whl
Size 552.7 kB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
e9244c9f2d436c2e175ae78ee745d8bfd90266a25ee277a0655a77709658bc30
BLAKE2b-256 checksum
How to use checksums
15d5a76fe4eea2500b66dbc5b5e0e3b74c43c4fdfe0268a3a358e4037be99bcd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / aioesphomeapi-46.5.0-cp311-cp311-musllinux_1_2_x86_64.whl

Download URL aioesphomeapi-46.5.0-cp311-cp311-musllinux_1_2_x86_64.whl
Size 795.0 kB
Tags CPython 3.11 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
fbdf5e4940e27ff56880c3989748a7b32c4fadacd0e64c4c6e114042e7b7df4f
BLAKE2b-256 checksum
How to use checksums
a066e1b5caa3c0ba01bc245748b2696de5ef94d6f336e2724ce70ca21b5b9778
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / aioesphomeapi-46.5.0-cp311-cp311-musllinux_1_2_i686.whl

Download URL aioesphomeapi-46.5.0-cp311-cp311-musllinux_1_2_i686.whl
Size 829.6 kB
Tags CPython 3.11 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
2427b39e4c3c8fac087d8dc2d3c9321d2e0d9650907f16f70d7491c2e7b68e00
BLAKE2b-256 checksum
How to use checksums
9516961b95b42818bce162cafffa3b4b27cdf108d637787e72a01cbb63ec4b45
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / aioesphomeapi-46.5.0-cp311-cp311-musllinux_1_2_armv7l.whl

Download URL aioesphomeapi-46.5.0-cp311-cp311-musllinux_1_2_armv7l.whl
Size 727.9 kB
Tags CPython 3.11 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
8413897f2aa2165108c64971a14e0818b66b4a1adf0444ad134b76a2e0c15f08
BLAKE2b-256 checksum
How to use checksums
8d03aeea0054d052f8057de3243ca3dbccd8c434663e5dba22268889e053d351
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / aioesphomeapi-46.5.0-cp311-cp311-musllinux_1_2_aarch64.whl

Download URL aioesphomeapi-46.5.0-cp311-cp311-musllinux_1_2_aarch64.whl
Size 767.5 kB
Tags CPython 3.11 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
83b3ea37b410b1fa15440ed8b43a743d12d9993f6ce86337818a517dd8b52c99
BLAKE2b-256 checksum
How to use checksums
8e1d7964422232bad2b8f9f130c852b8f16d856b99ba8cd6339924a844fb93ef
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / aioesphomeapi-46.5.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL aioesphomeapi-46.5.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 787.5 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
390313f38d077e6df602c059bd70b9053d9945e312c52e360a9da5a33c3e6290
BLAKE2b-256 checksum
How to use checksums
28c3bde47a5265aa73d05d3296277066c16d508b62df2eb0f136e97f63c68c9b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / aioesphomeapi-46.5.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl

Download URL aioesphomeapi-46.5.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Size 728.9 kB
Tags CPython 3.11 Linux glibc 2.17+ ARMv7l Linux glibc 2.31+ ARMv7l
SHA-256 checksum
How to use checksums
6a7e757e56a30aa1387b992cadc6f94cfeadb5f20faba5f36a5fb6d164cbd602
BLAKE2b-256 checksum
How to use checksums
01c2db570432f9504e3df9832faffd383e9b5c95084c37ca39a6dd0f6e926e8c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / aioesphomeapi-46.5.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL aioesphomeapi-46.5.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 760.9 kB
Tags CPython 3.11 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
f26bce8c0daac26a35e765a67dd4670a789e92e789c7a3d7010ee9f636914284
BLAKE2b-256 checksum
How to use checksums
2019e52b65a8f9a51a24b5607e4b26213e7c4ee1326f6453ba85551d25bd7b02
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / aioesphomeapi-46.5.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl

Download URL aioesphomeapi-46.5.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Size 818.5 kB
Tags CPython 3.11 Linux glibc 2.28+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
02416220b3b4f2349cb6d8ca64eb373157b2a3e8cf50f35d6f0e493a4848e8a1
BLAKE2b-256 checksum
How to use checksums
082d87093b8cbf705445e929560eb2d18b7ed64a92b78b17b656ac88280e93fc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / aioesphomeapi-46.5.0-cp311-cp311-macosx_11_0_arm64.whl

Download URL aioesphomeapi-46.5.0-cp311-cp311-macosx_11_0_arm64.whl
Size 648.3 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
4142ff53dbe9d75c2eccfae2222db8db66a9c0b138b3bdb1e4506bae3f636e0c
BLAKE2b-256 checksum
How to use checksums
308e4f8536e3d481209c16f09be8fb6b2c610200f11055d0acbe2fc232de683a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / aioesphomeapi-46.5.0-cp311-cp311-macosx_10_9_x86_64.whl

Download URL aioesphomeapi-46.5.0-cp311-cp311-macosx_10_9_x86_64.whl
Size 665.3 kB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
e4475ee6a1e51d83f17be58c9dcda736a9fdbd115a8858b11bcd14c1da930ae6
BLAKE2b-256 checksum
How to use checksums
6fff66a662b55cbe5cc4a584b173d65f452efa8e7ba67f61579d8b56c4f4bcd7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release history Release notifications | RSS feed

This release

46.5.0 This release

85 release files

24.6.2

7 release files

24.6.1

7 release files

24.6.0

7 release files

24.5.0

7 release files

24.4.0

7 release files

24.3.0

7 release files

24.2.0

7 release files

24.1.0

7 release files

23.2.0

7 release files

23.1.1

7 release files

23.0.0

7 release files

22.1.0

7 release files

22.0.0

7 release files

21.0.3

7 release files

21.0.1

7 release files

21.0.0

7 release files

20.1.0

7 release files

20.0.0

7 release files

19.3.1

7 release files

19.2.1

7 release files

19.2.0

7 release files

19.1.7

7 release files

19.1.6

7 release files

19.1.5

7 release files

19.1.4

7 release files

19.1.3

7 release files

19.1.2

7 release files

19.1.1

7 release files

19.1.0

7 release files

19.0.1

7 release files

19.0.0

7 release files

18.5.9

7 release files

18.5.8

7 release files

18.5.7

7 release files

18.5.6

7 release files

18.5.5

7 release files

18.5.4

7 release files

18.5.3

7 release files

18.5.2

7 release files

18.5.1

7 release files

18.5.0

7 release files

18.4.1

7 release files

18.4.0

7 release files

17.1.0

2 release files

17.0.0

2 release files

16.0.6

2 release files

16.0.3

2 release files

16.0.2

2 release files

16.0.1

2 release files

16.0.0

2 release files

15.1.9

2 release files

15.1.8

2 release files

15.1.7

2 release files

15.1.6

2 release files

15.1.5

2 release files

15.0.1

2 release files

15.0.0

2 release files

14.1.1

2 release files

14.1.0

2 release files

13.9.0

2 release files

13.8.0

2 release files

13.7.5

2 release files

13.7.2

2 release files

13.7.1

2 release files

13.7.0

2 release files

13.6.0

2 release files

13.5.1

2 release files

13.4.1

2 release files

13.4.0

2 release files

13.3.1

2 release files

13.3.0

2 release files

13.1.0

2 release files

13.0.2

2 release files

12.2.1

2 release files

12.2.0

2 release files

12.1.0

2 release files

12.0.1

2 release files

12.0.0

2 release files

11.5.0

2 release files

11.4.2

2 release files

11.4.1

2 release files

11.4.0

2 release files

11.3.0

2 release files

11.2.0

2 release files

11.0.0

2 release files

10.9.0

2 release files

10.8.1

2 release files

10.8.0

2 release files

10.7.0

2 release files

10.6.0

2 release files

10.5.0

2 release files

10.4.0

2 release files

10.3.0

2 release files

10.2.0

2 release files

10.1.0

2 release files

10.0.3

2 release files

10.0.2

2 release files

10.0.1

2 release files

10.0.0

2 release files

9.1.5

2 release files

9.1.4

2 release files

9.1.3

2 release files

9.1.2

2 release files

9.1.1

2 release files

9.1.0

2 release files

9.0.0

2 release files

8.0.0

2 release files

7.0.0

2 release files

6.1.0

2 release files

6.0.1

2 release files

6.0.0

2 release files

5.1.1

2 release files

5.1.0

2 release files

5.0.1

2 release files

5.0.0

2 release files

4.1.0

2 release files

4.0.1

2 release files

4.0.0

2 release files

3.1.0

2 release files

3.0.1

2 release files

3.0.0

2 release files

2.9.0

2 release files

2.8.0

2 release files

2.7.0

2 release files

2.6.6

2 release files

2.6.5

2 release files

2.6.4

2 release files

2.6.3

2 release files

2.6.2

2 release files

2.6.1

2 release files

2.6.0

2 release files

2.5.0

2 release files

2.4.2

2 release files

2.4.1

2 release files

2.4.0

2 release files

2.3.0

2 release files

2.2.0

2 release files

2.1.0

2 release files

2.0.1

2 release files

2.0.0

2 release files

1.8.0

2 release files

1.7.0

2 release files

1.6.0

1 release file

1.5.0

1 release file

1.4.2

1 release file

1.4.1

1 release file

1.3.0

1 release file

1.2.0

1 release file

1.1.0

1 release file

1.0.0

1 release file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page