Skip to main content
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.4.1

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.4.1
File Size Uploaded
aioesphomeapi-46.4.1.tar.gz 266.6 kB Details

Built distributions (wheels)

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

Total release size: 60.4 MB

Release files / aioesphomeapi-46.4.1.tar.gz

Download URL aioesphomeapi-46.4.1.tar.gz
Size 266.6 kB
Tags Source
SHA-256 checksum
How to use checksums
7a0d9e4e48d9035ecbed03bf0a97a199ea4e12d8e63b18bfceb8ad641ddb35e9
BLAKE2b-256 checksum
How to use checksums
480583be8ece1daab40cc885410c262c1f61e7867e3d414328c49a42ae398db0
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 11, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.1-cp315-cp315t-win_amd64.whl
Size 654.5 kB
Tags CPython 3.15 CPython 3.15 free-threading Windows x86-64
SHA-256 checksum
How to use checksums
d2189cb4e6e9b52ef725aebde8688604d378106df49df6d2c70020063509e6b8
BLAKE2b-256 checksum
How to use checksums
d78602fe8fadb70b24c7b1e1536e95633994e0d96e97f511172bc7622eebc744
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 11, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.1-cp315-cp315t-win32.whl
Size 593.3 kB
Tags CPython 3.15 CPython 3.15 free-threading Windows x86-32
SHA-256 checksum
How to use checksums
f357dac27bf59d3fce2c46d72b47221be32d7c932e2e21438ff8f031305ee064
BLAKE2b-256 checksum
How to use checksums
6f95644812d1d7967bacc1ee318ce984013447b5cb7983207a43d35f80f6ce38
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 11, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.1-cp315-cp315t-musllinux_1_2_x86_64.whl
Size 780.0 kB
Tags CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
50afcd131b1674a0cc522b514d12f12a4b0a2c1e939fc621250ff7697c0570d2
BLAKE2b-256 checksum
How to use checksums
e26d254fa6cd80a9ffb3a8fd831a5d9be29292bb35ba63d338099813ea9b6069
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 11, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.1-cp315-cp315t-musllinux_1_2_i686.whl
Size 761.1 kB
Tags CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
58d66da510dde8b4846942f9c7ddf1494169ea9f43e5abd1ce89324f4bfa8f0a
BLAKE2b-256 checksum
How to use checksums
10904fbccc60d51ecb34c8508e9393caa20ebd2786b4be505a1899c70a5f1adb
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 11, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.1-cp315-cp315t-musllinux_1_2_armv7l.whl
Size 750.8 kB
Tags CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
f0cea9e625fd316d4d04ccba7c5303e668ffc3f42b0194dca258f73f8389e3f3
BLAKE2b-256 checksum
How to use checksums
269692e6080cea0a501888de6f6cc0e1c18a76371fa4b52e0b341e3c9c68775d
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 11, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.1-cp315-cp315t-musllinux_1_2_aarch64.whl
Size 763.4 kB
Tags CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
73e52d946be1cfe1c2e32065a053a78099bfb57b3eba5f8c642a947921f91c31
BLAKE2b-256 checksum
How to use checksums
5f0b4226c908ef2bba1740a16e3368ebf01dec1155a7780346d777d1da1340fc
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 11, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.1-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 770.5 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
6a7ad2096fe4a635c72724e633bd4d1ecf30424f8043fd689c87dd10787b1da2
BLAKE2b-256 checksum
How to use checksums
6e3853d2b8d9be16fbcfb3abbdb878ea11aeafda2d164abfd524db912b66aed8
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 11, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.1-cp315-cp315t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Size 730.4 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
5cdab4851534e442ce2c8328b34744a5df29eff74dd2e305d4bc5bff8c990002
BLAKE2b-256 checksum
How to use checksums
116384d7e855ffc4a632b975e80136c16487f5ad045b9873a7156958c7a4fde4
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 11, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.1-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 754.0 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
428424dacc31af1cf1d32dc12d605074627205b9eb973e7e73043c910d9c39d6
BLAKE2b-256 checksum
How to use checksums
e4e5036587a9d3be39efe9089ad5958d4a0f57f815ccda82e21d292ba799e196
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 11, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.1-cp315-cp315t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Size 748.4 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
27829b2446b5b0edf718248e88572d07cd75acf14749746a927f0c00cdc24a67
BLAKE2b-256 checksum
How to use checksums
6ad5edf1b1c901d7235c12192a685f260b562118cf23ad81cf07476ed6f84370
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 11, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.1-cp315-cp315t-macosx_11_0_arm64.whl
Size 695.5 kB
Tags CPython 3.15 CPython 3.15 free-threading macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
7f999892afc6cba83438995380a430c82776f18e1086e5c41c1a2c6fdfdf41ea
BLAKE2b-256 checksum
How to use checksums
6d4ff88b3087016c880dbe5ef95c1a2e41e1efa141dd7a0230a1c09c597450d6
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 11, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.1-cp315-cp315t-macosx_10_15_x86_64.whl
Size 699.9 kB
Tags CPython 3.15 CPython 3.15 free-threading macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
474036d52604528b10a163a3051eeea077360475d687e442dfebdfad854a0be6
BLAKE2b-256 checksum
How to use checksums
71e877b9fab22ee26f6070b1e68d3772d7e9e7623df73c506d404ff2dd4a6f1d
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 11, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.1-cp315-cp315-win_amd64.whl
Size 614.0 kB
Tags CPython 3.15 Windows x86-64
SHA-256 checksum
How to use checksums
a3a82eb0c9d8cf319d3aca4b35b14f62fa3c5fc56ccb44c45d7bd63430044a82
BLAKE2b-256 checksum
How to use checksums
2212f1f0a2c1ec5eb29056f9149ada48df236d3258140b39b6a7a951d3e3a765
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 11, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.1-cp315-cp315-win32.whl
Size 551.4 kB
Tags CPython 3.15 Windows x86-32
SHA-256 checksum
How to use checksums
a96d451a15bb8a958d7ba25fcb47d7cb079af02c137788d380cf07539a828ba4
BLAKE2b-256 checksum
How to use checksums
8e49f74f3efb541779b8228ba672035f33f85c9bf363d3e742b39816d2329c1d
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 11, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.1-cp315-cp315-musllinux_1_2_x86_64.whl
Size 775.4 kB
Tags CPython 3.15 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
adf318dd654d17547a2d8823de2344c1cf1ec272c2245293f80a4844b174d3ee
BLAKE2b-256 checksum
How to use checksums
cccf2e897fa5008f7263823c4741da844a20321b7cf399950f72f3ba9be2859a
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 11, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.1-cp315-cp315-musllinux_1_2_i686.whl
Size 755.8 kB
Tags CPython 3.15 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
ec0581c38dc204f31b8e2fdb4c2f7f5c68efd9d5a05d0188ed80cb770b9dbfcd
BLAKE2b-256 checksum
How to use checksums
178633551f05e0cba55060628bff49aa781627dd1ec1160c587a4e2b97371e0e
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 11, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.1-cp315-cp315-musllinux_1_2_armv7l.whl
Size 738.5 kB
Tags CPython 3.15 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
85afb1f5247c6bdf2586330c78453c753f7031c40778813d490baf45bbb1c5d9
BLAKE2b-256 checksum
How to use checksums
c8ac9ee40e37d464ca04805e46dea9439499efd06f95c551d2c4110ead154a9a
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 11, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.1-cp315-cp315-musllinux_1_2_aarch64.whl
Size 747.4 kB
Tags CPython 3.15 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
4c5c202ae512e0cefd372c56f5dcb76be026b02ecd066a7bed765bb6ca6bb102
BLAKE2b-256 checksum
How to use checksums
8b7036c7958be8f058d5a80e3f48654f259f70d27aa1ac0cff467d0adba33cda
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 11, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.1-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 768.1 kB
Tags CPython 3.15 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
6b778f0751b9c79a9c78f610060bba33a4d2d883fd95f4759b67186a2bb61cdb
BLAKE2b-256 checksum
How to use checksums
5277ab9b723aedb4fbaaa8db150cd64b4ec5f50486545b94895a98d8db0ac50b
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 11, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.1-cp315-cp315-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Size 744.2 kB
Tags CPython 3.15 Linux glibc 2.17+ ARMv7l Linux glibc 2.31+ ARMv7l
SHA-256 checksum
How to use checksums
e14a4bc312960f74f28949ba73ea65ce49cf25db6a2270554ddef198be0e3603
BLAKE2b-256 checksum
How to use checksums
055ef469fe781879aa5f7219153e33609eee451aadf213624b34f4b4faece311
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 11, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.1-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 739.6 kB
Tags CPython 3.15 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
1cfedaf7400d1bcdf2208559d4886916b6e8678f429b1e1ee6e4a5429962f243
BLAKE2b-256 checksum
How to use checksums
0215b6d812af7d32e4c0fabf464c686f5dca57084d7e5c16882b78c8e0d4e452
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 11, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.1-cp315-cp315-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Size 744.2 kB
Tags CPython 3.15 Linux glibc 2.28+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
0114f0ba8158bfbc45e195570cd547413cdd4f7be396f983cba748b3652dbda1
BLAKE2b-256 checksum
How to use checksums
bd48531fa3c9efd75b60e9ff290208a1f5243607a06283e710280169dbf20f24
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 11, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.1-cp315-cp315-macosx_11_0_arm64.whl
Size 651.9 kB
Tags CPython 3.15 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
7829abd32a68bd49991ac4c4189fb3c8311c3c7f035ec242d343d4e76d67cb55
BLAKE2b-256 checksum
How to use checksums
6d4ac569db76312eb247ecc89f04c9a6e8ead9eff2b210d50381e892134c7a6a
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 11, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.1-cp315-cp315-macosx_10_15_x86_64.whl
Size 668.6 kB
Tags CPython 3.15 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
cd2dfa56aec89f0906bdfee862e7c34bc2bd9a2ef2b7bd65d5061c9fb6591263
BLAKE2b-256 checksum
How to use checksums
7d4bc56c4c01a2e8363994865c4bfd8f5f32ae5697a193d3f0241259a656cf67
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 11, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.1-cp314-cp314t-win_amd64.whl
Size 660.1 kB
Tags CPython 3.14 CPython 3.14 free-threading Windows x86-64
SHA-256 checksum
How to use checksums
4b3cdd36afebb284f69254360803ed0926ea3fd54cce7cc0683a65a9c5317d8d
BLAKE2b-256 checksum
How to use checksums
62f482e4eefc658b34c86cbfbb9d2bbe320a4e53f50a6fceab86f7a1e8750829
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 11, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.1-cp314-cp314t-win32.whl
Size 596.5 kB
Tags CPython 3.14 CPython 3.14 free-threading Windows x86-32
SHA-256 checksum
How to use checksums
a3c7347bdeb439f89244b24c6679c43e99d91c510fc0e7298e0fa1f8fcdd2150
BLAKE2b-256 checksum
How to use checksums
99a28952dd71cbbce7a68064581b331c6c17d612c2c2fb9291d8fed5e80ff66b
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 11, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Size 780.7 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
b593a34927a5cec3b347c7f0da89eb77119ef66045803aab8207dcc1ebcab9dc
BLAKE2b-256 checksum
How to use checksums
f19d9a5400e30582ac6126555bb13a4fa4735d393b61b775502a913a8f51c6b7
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 11, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.1-cp314-cp314t-musllinux_1_2_i686.whl
Size 802.3 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
96dbb091a21cbff0a3f2f69aa7fac4dbd8e59201555e88dd0ddc90e575c0a928
BLAKE2b-256 checksum
How to use checksums
1ea118846683e4d6cdb7c441b71136d6c5336f81135ddc23d678784b83dffc42
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 11, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.1-cp314-cp314t-musllinux_1_2_armv7l.whl
Size 716.7 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
b9975f86cf06478e20cd9979ac07852749fbfbcc75c9efd4f7c19cce75939e70
BLAKE2b-256 checksum
How to use checksums
c0f7c067d6d2a6f7040c956e053ee10a9916262f7b82ddcc6719110aa7a71593
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 11, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Size 766.2 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
59891ec0bc621decb9e52dedd76c9f5f7b2635cd0ae83d5fd818a346ba5cf2a8
BLAKE2b-256 checksum
How to use checksums
16f25284334f5eeb3c35773911499c654351e206a336a8df5cea6fe2822e1aa4
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 11, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 772.5 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
219dd0fba9b8d7d51bfaf289a81bc67ef4ebcbd6b4d60f9eac1606d8170df59b
BLAKE2b-256 checksum
How to use checksums
a7dd8be5043ab289629ac4933c100aa18c111086af1e56f3690763ae99dffae8
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 11, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.1-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Size 699.0 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
55c6ad93ca6f23a6b02b2efd511c90943549bebbf4ff6caa3ac0c1cc11e2ea6d
BLAKE2b-256 checksum
How to use checksums
c6b78b1f9797d752db38fd10013d36f24dc1c4663c43e9bdc309e97d2f998dcc
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 11, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 757.7 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
f33679494ce83241e70b8cb7e4bb6e2e491e48c9e24070afe59782433f5808e5
BLAKE2b-256 checksum
How to use checksums
0e6efebfe96c2407d1cdb4b914775bd33042f3510b82be80159023d8e8515e5c
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 11, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.1-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Size 789.2 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
32b5b362ddfdf13561904ebefecc22ca697b1eb2e798ca89b4e2a33715827928
BLAKE2b-256 checksum
How to use checksums
a2563c26c8960043ded52ec8dfbc7cefc888c3f98b38508d78c71e472e5ed9ae
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 11, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.1-cp314-cp314t-macosx_11_0_arm64.whl
Size 700.8 kB
Tags CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
d0dcd136366b39950ba0c2f6501fae6948112168b71c3b7698f00d248d4b2e52
BLAKE2b-256 checksum
How to use checksums
a581ff212d58e9b583800dc3fc3fa30cb2d49e5adc9b3564917b3600b65474fb
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 11, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.1-cp314-cp314t-macosx_10_15_x86_64.whl
Size 705.9 kB
Tags CPython 3.14 CPython 3.14 free-threading macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
4f84c27d183f9edaddbaaf3a2127a034732a521c4cbacbda0aac523f03a55cc0
BLAKE2b-256 checksum
How to use checksums
9a77188637417b1f914b29c6d8798e7cbb79d1f6f90a7c258712f9b0270c6aeb
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 11, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.1-cp314-cp314-win_amd64.whl
Size 615.2 kB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
3adc9497c4cee147eace769de5a7cdaa96d03c04614a1fae4cd5efd7838ae519
BLAKE2b-256 checksum
How to use checksums
bce90243ebfd01ab28c2b30163fde8d8479638e7872021cb49419cd99c1e6280
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 11, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.1-cp314-cp314-win32.whl
Size 552.0 kB
Tags CPython 3.14 Windows x86-32
SHA-256 checksum
How to use checksums
aa83e267207f0d69ed436bb2db2872d1f7afc3923594f27fc266d6439552e57a
BLAKE2b-256 checksum
How to use checksums
a5623afb69c65ba8b3115bb509396f16ecb85ed75978ded362ead109942476da
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 11, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.1-cp314-cp314-musllinux_1_2_x86_64.whl
Size 772.7 kB
Tags CPython 3.14 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
5b3a1765db6cd8b03d5b4f9ea17c8ae78a3342702ff0ede150c5df749ae0afdf
BLAKE2b-256 checksum
How to use checksums
bb4c643ef17da1b837e96d3ef85e1514318ccaa99fc417f89e867d41da9cb43d
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 11, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.1-cp314-cp314-musllinux_1_2_i686.whl
Size 799.3 kB
Tags CPython 3.14 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
5246a9e8256ac2aed10dedd758be17e0f2d2fb7d1563ca6f332ee5065c21ca38
BLAKE2b-256 checksum
How to use checksums
e9ce099399ac8e188edfac5fec1f6d1be75658c4d8890030f07ea320cb0ea014
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 11, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.1-cp314-cp314-musllinux_1_2_armv7l.whl
Size 701.6 kB
Tags CPython 3.14 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
15429c39af4edeefdd0fb823a358fe2267f8b93928af713012684744c280ea7e
BLAKE2b-256 checksum
How to use checksums
54e83a436f867574ddf1f04f8efae783495ee6f2528111fb98ef6ca1b2468b03
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 11, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.1-cp314-cp314-musllinux_1_2_aarch64.whl
Size 747.3 kB
Tags CPython 3.14 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
00dd5a1ff071bea2b668cc46fc15d03627f2b95cf58f80cf7a88b5a061dcea06
BLAKE2b-256 checksum
How to use checksums
86a25e129971d422530bd4351ffbc664e1a3a847d7df0642ecf7d63c3850f943
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 11, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 763.4 kB
Tags CPython 3.14 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
197e01d358979c1e8987d3a559d43a0c8989b743bc6977de384b0ea6604292a3
BLAKE2b-256 checksum
How to use checksums
8b0ed4aa9a91efe28b38bc22dae3ec26f194c5af959cda25e893fb2bfe5d4448
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 11, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.1-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Size 703.9 kB
Tags CPython 3.14 Linux glibc 2.17+ ARMv7l Linux glibc 2.31+ ARMv7l
SHA-256 checksum
How to use checksums
82824aa8c2c17fbf574eb4db463223836283be2c093364c3f667bcd6dc262484
BLAKE2b-256 checksum
How to use checksums
2e228ab2cb44a9bce08121f12db2c53d2d1a29a1780f54b777fc6ac770c3bfd5
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 11, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 738.7 kB
Tags CPython 3.14 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
b359a46732c5bda3e7bb8ba5e95823ce1c09ee7586e1877fe49360a66a70b7be
BLAKE2b-256 checksum
How to use checksums
be27fc0bb8bdb9c2b11982b09a7b7a0798849d556b5ab6cca96427bba811f42d
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 11, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.1-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Size 787.4 kB
Tags CPython 3.14 Linux glibc 2.28+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
3aef31ec4856f5053d4c1e9fac8e777e87f0a9432621e34857e7945e37eaa2f0
BLAKE2b-256 checksum
How to use checksums
fa0eea746d75adfdcf45569f1ebe221022fc56fd11edf106515daee72f9917de
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 11, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.1-cp314-cp314-macosx_11_0_arm64.whl
Size 655.1 kB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
7a462cf920c38265619e6a96cf88e98320e24bb451f8b959a4dfab08acd2d7ad
BLAKE2b-256 checksum
How to use checksums
f057c886be595f2d9abf30a996b0a90d294b443901a7e6241eb2061a208895eb
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 11, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.1-cp314-cp314-macosx_10_15_x86_64.whl
Size 670.8 kB
Tags CPython 3.14 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
60f86c4a3d4c23c4fbc971ab71a42d48af2548b2e88d4c85d15cc1fc199f8723
BLAKE2b-256 checksum
How to use checksums
7d9efa03ea7003f7b52f456531022ae593d970a683e34a26d46e501b0d33ebec
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 11, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.1-cp313-cp313-win_amd64.whl
Size 601.9 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
7b80c458a8f24188c4cb9dd290251eb5652098212bbf3265733c027b55188136
BLAKE2b-256 checksum
How to use checksums
0fa0f6b990cca3292d79b0419eb3f20758440e1ac359167192a7e53707a523f3
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 11, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.1-cp313-cp313-win32.whl
Size 542.0 kB
Tags CPython 3.13 Windows x86-32
SHA-256 checksum
How to use checksums
20b6564b0a5a24f5b0ced415a53c8b05ed0cce5a7f1111e3148c964514fc50f9
BLAKE2b-256 checksum
How to use checksums
5771bc9fdbe8fbb23c26828cd9ba3ddf9477033e1bafc38ab501d0c05627fa6d
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 11, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.1-cp313-cp313-musllinux_1_2_x86_64.whl
Size 768.5 kB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
e480337624f38bbbbf1b5022f2cb5ec8f8fed6b19928b410318f8dd9948cac3f
BLAKE2b-256 checksum
How to use checksums
2139fb81da1af72f0a3953a86ca39cb722c7bb7a1f3c7fddfe60bdc592497057
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 11, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.1-cp313-cp313-musllinux_1_2_i686.whl
Size 797.2 kB
Tags CPython 3.13 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
df4d1920a22bdefa1f1735028221540ed99582bc806a844e265c966b527f913a
BLAKE2b-256 checksum
How to use checksums
888b8a35d3fde8bbedc3252ec088f2d1d5256f6a0bbfb98d5c2b6383d163bbf6
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 11, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.1-cp313-cp313-musllinux_1_2_armv7l.whl
Size 709.6 kB
Tags CPython 3.13 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
1eaaa002fd6516c86a93b35302e801c8130680afcc9670ddb03d8ac6d2e3d016
BLAKE2b-256 checksum
How to use checksums
9361e0523850d7fbd3ed9968fb4d08fab8abc5c64fd1e667a11ffb3038e829bb
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 11, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.1-cp313-cp313-musllinux_1_2_aarch64.whl
Size 736.3 kB
Tags CPython 3.13 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
aaa58d0b14676b052c20d01e1ecd6b7a4089f704346d20a8f929385937e7ecb3
BLAKE2b-256 checksum
How to use checksums
dc035cbb7583368c5935fce20ef0fe7d776cdd529e6e4e16bf8751de7a025a1c
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 11, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 760.2 kB
Tags CPython 3.13 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
75d0d29fc5175011df569c0f6e6184a576a7cebf2c334345d9454e1fa6559c25
BLAKE2b-256 checksum
How to use checksums
92338fd6692be142a7809f1b5e25f656ca7863a4d25c4e924370e27126e68c65
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 11, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.1-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Size 711.4 kB
Tags CPython 3.13 Linux glibc 2.17+ ARMv7l Linux glibc 2.31+ ARMv7l
SHA-256 checksum
How to use checksums
ef1190510dadcfcadd39290941eedcc8914ad30b446fdf48076b363d8e6ac518
BLAKE2b-256 checksum
How to use checksums
e5284c07f5ce3db7a4ebe2338a87a79155ebca5c48dca133a0a17c20e7b620f5
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 11, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 728.7 kB
Tags CPython 3.13 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
35ce252caaac0e72f55341937ac25bf9d0a548621cc4771615e772a0265ebe2f
BLAKE2b-256 checksum
How to use checksums
261d94fdcabf957c524c1d34ecf51d752fc45da27168456a7d8d53bacd239c19
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 11, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.1-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Size 785.7 kB
Tags CPython 3.13 Linux glibc 2.28+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
04b55a7b8e2ebe1a32d516c211cf9bfe57eb85045dec6ac0b47e63f69a7a621c
BLAKE2b-256 checksum
How to use checksums
c2ac78e3feb9f397fc8173a291f36bb103b937b614737ca613a5aaa13d22d886
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 11, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.1-cp313-cp313-macosx_11_0_arm64.whl
Size 647.6 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
4a810c30e942ccfa23dbb4572f602fedc5f0429410d6515b72cd95540f7d291a
BLAKE2b-256 checksum
How to use checksums
48c50239dd856b3bd21c2ffc6cd21d29a574e0c16e96f7f09a619c7c9b32c0bb
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 11, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.1-cp313-cp313-macosx_10_13_x86_64.whl
Size 666.7 kB
Tags CPython 3.13 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
1c6ffa0f0c7ec1b7b16c0299f16603cb1be466f26d60a01138830cb8072a5d72
BLAKE2b-256 checksum
How to use checksums
f29b283514f645e89ce6edb2ddc002d7b95d8c58a979b4bd8ab8e5911595d3be
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 11, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.1-cp312-cp312-win_amd64.whl
Size 605.9 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
6b48762433694818fa15b2ef363d3530f19afbf77fa0ac16a94b7eee526e33e2
BLAKE2b-256 checksum
How to use checksums
ee434e648cabfd98035926aafa1ab05c79622f1793d5dfb2ebdc875e5c282f9e
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 11, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.1-cp312-cp312-win32.whl
Size 544.2 kB
Tags CPython 3.12 Windows x86-32
SHA-256 checksum
How to use checksums
246b3716d7662981691ccada60a95bc7a8a933a969ef6b3b69e4b52797633b06
BLAKE2b-256 checksum
How to use checksums
bc2497022d6f5e03d27a383f756fd29bb768631e8944424a4c1a069b50846706
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 11, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.1-cp312-cp312-musllinux_1_2_x86_64.whl
Size 773.1 kB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
f56e422a957b803730b2258300c1f01df6ff0fc046a7ebee14ccc65d195a1d68
BLAKE2b-256 checksum
How to use checksums
8eae47e5e076bdbae3ab49363da7d3275e3bb804e99f2b25044d23aef12c7727
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 11, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.1-cp312-cp312-musllinux_1_2_i686.whl
Size 803.1 kB
Tags CPython 3.12 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
019037e4fc5ae0685a695b6d4c3920bebe1dee338ba9d2c575f3a4bbe41c8305
BLAKE2b-256 checksum
How to use checksums
c809fa49705c14de3cfdeb9edcf80cff16f19b74d896390c78d04e6a3168f6e5
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 11, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.1-cp312-cp312-musllinux_1_2_armv7l.whl
Size 714.3 kB
Tags CPython 3.12 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
177e986c338c30ac8126aa017d7aecde7f241e3ffef58bd5300b815213304c0c
BLAKE2b-256 checksum
How to use checksums
b3d6e562f6bbf5bb51a7c8481917b5f0d8cffc7a068b125ef0bd633226cf0281
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 11, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.1-cp312-cp312-musllinux_1_2_aarch64.whl
Size 739.6 kB
Tags CPython 3.12 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
48878c09201ead88ca9d04f696f675aff776bf31f58c5e995a309e3d2108ab48
BLAKE2b-256 checksum
How to use checksums
ff1a8e301a026d040ef6fe0a0c5808e2c966736d4c39ac5310562528c8537f12
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 11, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 765.6 kB
Tags CPython 3.12 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
9e43350956ec19cfaa311457b5fc17b90d4bed26c1438b04cf05d17537b0330b
BLAKE2b-256 checksum
How to use checksums
6f616e1cedfc9bfa227a6a4700da1e2d976386c04cff52cb51f078e01d05dc26
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 11, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.1-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Size 717.1 kB
Tags CPython 3.12 Linux glibc 2.17+ ARMv7l Linux glibc 2.31+ ARMv7l
SHA-256 checksum
How to use checksums
1261dddfdb369481bee2ada846dcc19480f35ae91ae23cf927d76d3666a825b3
BLAKE2b-256 checksum
How to use checksums
b224f62955fa92545ed66d438c169d70c6bd52e8825321ca041fcf9ba8339b2b
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 11, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 732.9 kB
Tags CPython 3.12 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
a4d2925b9194f70f4f155d933a1c57854999f316079e759fdc7408325eda00ed
BLAKE2b-256 checksum
How to use checksums
48ac7f667a734501807887d8c2d552dbed9a4e049e90a0cb2adcf1922504ea2b
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 11, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.1-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Size 793.0 kB
Tags CPython 3.12 Linux glibc 2.28+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
ccc6450cbd0907b21838d785e94faaba8997804e248657ec1ee358691335182f
BLAKE2b-256 checksum
How to use checksums
530fdd897aae45d7443ff9bff014df6a1dd0232f03f4c5cb91a9d90b75cbbff4
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 11, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.1-cp312-cp312-macosx_11_0_arm64.whl
Size 653.6 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
19802b4e271c26521ec450fb77a376d7c4b8b1a525748c8b3f44d3b483667b94
BLAKE2b-256 checksum
How to use checksums
bf0324e60a39adcd4cbcdc6d4f660d3cbc04aae2929eafaa4432ab26eb9d5223
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 11, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.1-cp312-cp312-macosx_10_13_x86_64.whl
Size 671.6 kB
Tags CPython 3.12 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
8cfc2de34a3bdcbb5385f1eb7ae724b5f1ca38bc64711bd1e95cd922d6b2fbcc
BLAKE2b-256 checksum
How to use checksums
57b11f47d3b5880c5c9473f24b92c34531d60a1d6e38226345c046dab72a836f
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 11, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.1-cp311-cp311-win_amd64.whl
Size 615.6 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
199a58ad7870b101f4e07fe6c7d2888ba60c4330be0b333e1d06587b6c98294a
BLAKE2b-256 checksum
How to use checksums
222020a5e5ea570da8f977ef4e152ceb2c5dfc6a05f6033a1225214892bd7ac1
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 11, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.1-cp311-cp311-win32.whl
Size 550.5 kB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
4a89bb1f274a321ca0a9095dbd7add967c1b94ef019cecf345ca4cdeaacfae21
BLAKE2b-256 checksum
How to use checksums
c0ac5a149a1f957260a8ca9617596ed5975b96e7bfec817da7d82d9d6f8302c2
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 11, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.1-cp311-cp311-musllinux_1_2_x86_64.whl
Size 792.9 kB
Tags CPython 3.11 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
b79e4cd06421d9a122d5f666cee4ea07549e061b1141b67152ab11a797ce8c8b
BLAKE2b-256 checksum
How to use checksums
c27fe80b04a3ec44699f2b5a4b90db95bee19bae496bcac7c92b3e53f173d091
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 11, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.1-cp311-cp311-musllinux_1_2_i686.whl
Size 828.4 kB
Tags CPython 3.11 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
dc81d6b02d91d6e3f65534b272d90f944767fbf5526457b7717ba99af857322e
BLAKE2b-256 checksum
How to use checksums
d5687106a18a8c91e6671d50ea6ac380b57f5db858ca344919f4ca7edcf512ff
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 11, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.1-cp311-cp311-musllinux_1_2_armv7l.whl
Size 726.7 kB
Tags CPython 3.11 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
9950f3b0bb68d46d251c97a699825ae123534f3f4157bf011c1a3e6254314f36
BLAKE2b-256 checksum
How to use checksums
d6d27667894e7427f9b6e12ea9deb7542ee4224dfc334eaf2a5c5cf05a4520dd
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 11, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.1-cp311-cp311-musllinux_1_2_aarch64.whl
Size 765.8 kB
Tags CPython 3.11 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
d619fa23f6289adbfd68ec8df2487755b61fabd16d19c5f9705224a24df34fe9
BLAKE2b-256 checksum
How to use checksums
8927a4648db5a36d63b2a342ad5e66517e4d2024bf8a77aa5da3f2ef8e6921ed
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 11, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 785.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
fb649b560317139cafc65ee143da5a90ff13dc9027ae68c9312dc66d5d117ebd
BLAKE2b-256 checksum
How to use checksums
fa24ff4c39b8c28b7fe0b31d50c4ff67a7c3537541bce2a8de45cad6a4416f61
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 11, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.1-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Size 727.9 kB
Tags CPython 3.11 Linux glibc 2.17+ ARMv7l Linux glibc 2.31+ ARMv7l
SHA-256 checksum
How to use checksums
ce2adbb2163d9b9335222dd588cd2d6678481563143e65c5b8c444c16576b74f
BLAKE2b-256 checksum
How to use checksums
e52eb0b33fff15205ea74fefc1eb9b097f18f9ab23eaebf4b70ae58fe23c0b70
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 11, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 759.2 kB
Tags CPython 3.11 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
d5978b4fb58c0cfd725270aebbf665f08ab53ef6577b73b71bccd32b667da208
BLAKE2b-256 checksum
How to use checksums
28c5e4b8fe368d166c5e4672a809776a3c74594dcd6a3ed32ffeda7c4fae9169
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 11, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.1-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Size 817.0 kB
Tags CPython 3.11 Linux glibc 2.28+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
8cdeeda7701444a566f15fca561d640aff2d25252f8926c9032f9b4842b8918b
BLAKE2b-256 checksum
How to use checksums
94c4909c7f9cb2bafb1f77b68b53573206cc995de0631438bcbd2e11a46043a8
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 11, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.1-cp311-cp311-macosx_11_0_arm64.whl
Size 646.8 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
018a212328890884e50852aafcfc8e7302b27eaeef85bae981d9824c6f5b2f44
BLAKE2b-256 checksum
How to use checksums
921a29bfbbee90e5ee7389f664de886bc8b29b7664cbcaa20ea12d49a96d5f9e
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 11, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.1-cp311-cp311-macosx_10_9_x86_64.whl
Size 663.6 kB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
8665e41081d6e465aa032f243734b0eea545ed0c16d0cb62455534cae217cac7
BLAKE2b-256 checksum
How to use checksums
24ec35d0b057522515b8aae0988c5dc1cac1ac88714fb493e0deda7a8214173c
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 11, 2026.

Transparency log

Release history Release notifications | RSS feed

This release

46.4.1 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