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.0

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

Source distribution (sdist)

Source distribution for aioesphomeapi 46.4.0
File Size Uploaded
aioesphomeapi-46.4.0.tar.gz 263.4 kB Details

Built distributions (wheels)

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

Total release size: 60.1 MB

Release files / aioesphomeapi-46.4.0.tar.gz

Download URL aioesphomeapi-46.4.0.tar.gz
Size 263.4 kB
Tags Source
SHA-256 checksum
How to use checksums
7382ce4ffe38def0abb071d592d5f8bd716f927ec529e1ee062af1044504e771
BLAKE2b-256 checksum
How to use checksums
8c6e3c79bc13a5b9ba91252aac9b1b0a756b9860756f915af1ffd3ce8017ce3d
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 10, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.0-cp315-cp315t-win_amd64.whl
Size 651.7 kB
Tags CPython 3.15 CPython 3.15 free-threading Windows x86-64
SHA-256 checksum
How to use checksums
a512d87d1a8a00b466f00409084ef6f9bd37af0d78aa53fc2de6c4659e891991
BLAKE2b-256 checksum
How to use checksums
c865ed316c9fcfa61f97971c2e0896c738db90d53b9e7c54e4d5ba0fb932c165
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 10, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.0-cp315-cp315t-win32.whl
Size 590.7 kB
Tags CPython 3.15 CPython 3.15 free-threading Windows x86-32
SHA-256 checksum
How to use checksums
75e88f7b9ef25ad6816cf4c3539ed73a04ffb10595b0ed7c60b49c4e394ad3c9
BLAKE2b-256 checksum
How to use checksums
063b0d3a657adc1072f38da2d625d800241bb066448b4a88a3d06d9f7ee3959f
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 10, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.0-cp315-cp315t-musllinux_1_2_x86_64.whl
Size 777.5 kB
Tags CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
0667ef78d0a483bfb741a23e874d11fdd1e057767a30f9fd7488efb1ba7211cd
BLAKE2b-256 checksum
How to use checksums
c3f1c10e7d33cc27b70e8a93980cdac3d5563f64fc89eed5d74155ee0bb02ac1
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 10, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.0-cp315-cp315t-musllinux_1_2_i686.whl
Size 758.3 kB
Tags CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
21eb392122a2ae94b2f44a3f39243f89bfed7e27cc8f52d153eb922d012c9340
BLAKE2b-256 checksum
How to use checksums
46d79fe74db3950db5fca86d62d106936bd75590ce3e103dff3ad95faff2d3fd
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 10, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.0-cp315-cp315t-musllinux_1_2_armv7l.whl
Size 748.0 kB
Tags CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
bd7d9e5803807ccbf52d4f0c20bb4ab089d1af180bdf969449418dc1c7ef9160
BLAKE2b-256 checksum
How to use checksums
df7e2a8349679f6692605e380256ff8e672d2563e23fe02b1f4eda660bfadd90
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 10, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.0-cp315-cp315t-musllinux_1_2_aarch64.whl
Size 760.5 kB
Tags CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
21affc6f5e90fc14844d58ad4b75ad73cff9ce3aa48784241ad4c1f4a16e9cde
BLAKE2b-256 checksum
How to use checksums
af58e7898db0423a2063b6bf5bc52b87b12a7b5d5c562ded073712143a6c7011
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 10, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.0-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 768.1 kB
Tags CPython 3.15 CPython 3.15 free-threading Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
375720feb5fe711610d41c9767575878ecee428d16783d2ceef94484ea2ab0bf
BLAKE2b-256 checksum
How to use checksums
7dc783948eaebbe7b8f8ae350da2e66ba8032206d32d4a0f5398ded93fb95ed9
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 10, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.0-cp315-cp315t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Size 727.9 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
788aaac2d80d188b61a45662f2732711e465e5699f26d48f684fa366c80f31e1
BLAKE2b-256 checksum
How to use checksums
0cc98b9ac6d241fed1251ca20a927761603ca4270df398cc86f010b6084cda35
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 10, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.0-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 751.2 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
503e7269305f8e09b3425fc94fecfcade4a4a6ae4e9c5de7d5b6f306294d9d39
BLAKE2b-256 checksum
How to use checksums
27185ae8887a57ed098de72ba1aa5a55487807ed8965e0c92e3a83a8191e8ad2
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 10, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.0-cp315-cp315t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Size 745.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
aada21c86f753ee361340e2360605dbe7dfc4e85414c99463453baf82aa9bc5e
BLAKE2b-256 checksum
How to use checksums
e54251f677b996c43cd146f2c16c406ee36a35c87a0b6b9ed23ffae8502cdd5c
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 10, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.0-cp315-cp315t-macosx_11_0_arm64.whl
Size 692.6 kB
Tags CPython 3.15 CPython 3.15 free-threading macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
fbf9c779c013b6088c8327edfa2e93f688779e6d8ca3650df8988ca17a1e3b7d
BLAKE2b-256 checksum
How to use checksums
24feab08b21820ca0394da6b3cda2aee4894bc685a7d5a5d9dfd321fde861829
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 10, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.0-cp315-cp315t-macosx_10_15_x86_64.whl
Size 697.2 kB
Tags CPython 3.15 CPython 3.15 free-threading macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
a7c33c2cdd35c63057fb959342be19b5539f3bf3feca0628c1c17340f3a6ef3f
BLAKE2b-256 checksum
How to use checksums
55893b3de6880f0e5a0699e33e6a15a94d1c5f175fdb9859f475e4ce9b6350a9
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 10, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.0-cp315-cp315-win_amd64.whl
Size 611.3 kB
Tags CPython 3.15 Windows x86-64
SHA-256 checksum
How to use checksums
fe357b6d53a7ded76139151ef278d370e4c2c096172bd53869315b6c1828fba6
BLAKE2b-256 checksum
How to use checksums
4743328632d450519e649b1eb0f8ae8b463ea17edaed4124e86c800e45f87b30
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 10, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.0-cp315-cp315-win32.whl
Size 548.8 kB
Tags CPython 3.15 Windows x86-32
SHA-256 checksum
How to use checksums
3d17634fb96c61227861f18423f7fc5c9254f316bc21ac6dad4358de6b7316d1
BLAKE2b-256 checksum
How to use checksums
6b9e29df96379e7a0be391f763574c38ee8952d1751c40e98afa8b1ef7dcd1f8
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 10, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.0-cp315-cp315-musllinux_1_2_x86_64.whl
Size 772.2 kB
Tags CPython 3.15 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
a4756fa8bd6425a8f45e6a438bde41cd753499ec1cf8d11a426b404abed548e2
BLAKE2b-256 checksum
How to use checksums
bf448b8db7f94989a4e69b32f679bf02139cefd2fe14a364c4d57a54660b1605
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 10, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.0-cp315-cp315-musllinux_1_2_i686.whl
Size 752.2 kB
Tags CPython 3.15 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
b20061c64eff79862bce021b4d0864770059c689b616a0999d971a66c62b2dfb
BLAKE2b-256 checksum
How to use checksums
bc4dc35dc0edad8edc038839beb9077119523aee1ea23e1b90952080b7d6500e
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 10, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.0-cp315-cp315-musllinux_1_2_armv7l.whl
Size 735.4 kB
Tags CPython 3.15 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
813d469bcfbb7f3f2c8a08f66f3754b92d961819206b00fbb70c8f1c2f9d7bea
BLAKE2b-256 checksum
How to use checksums
ddd84432f85db2af6572d9537b2e2b25326cd334444710cc19e3c4dbbfc2bf28
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 10, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.0-cp315-cp315-musllinux_1_2_aarch64.whl
Size 743.6 kB
Tags CPython 3.15 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
218aee2c6050c352ca5d309544fcc2226874fc287c6c37be58345f29bfebc3de
BLAKE2b-256 checksum
How to use checksums
8a78ac5ef8d9f2805f77c17ae3c4c850eb8ba6a2e81847ef5a510f2d1dad173f
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 10, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.0-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 764.7 kB
Tags CPython 3.15 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
640bc4ec516c8e79faaedea81fd8a7899a2552e50cc68801008021a1dc94ea9f
BLAKE2b-256 checksum
How to use checksums
b942df868df6a447667a942f1fbbf55377bcb0ac95347e86a5165d6ce9fc5957
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 10, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.0-cp315-cp315-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Size 741.2 kB
Tags CPython 3.15 Linux glibc 2.17+ ARMv7l Linux glibc 2.31+ ARMv7l
SHA-256 checksum
How to use checksums
ca5bed88c4513d11600d523da6f73790691570f7e4ae2783b4c9709db8e64b75
BLAKE2b-256 checksum
How to use checksums
4bc6ecc06800da0ba7ae2b23d68c2ee0db68be55a88605f0b5f7b8790a134dd3
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 10, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.0-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 736.1 kB
Tags CPython 3.15 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
36175f9072ee24c0f998fa49d034538373c1458acc9245d303ddcb6578b3505f
BLAKE2b-256 checksum
How to use checksums
35888afa0ff31368fb14f9a6f69edddb7a57c3c614b40fab0aa8bd855e4ba088
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 10, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.0-cp315-cp315-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Size 740.8 kB
Tags CPython 3.15 Linux glibc 2.28+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
62430c02f15e9b141de42a33aba175051f964010be10c95adc5af9074226e6b9
BLAKE2b-256 checksum
How to use checksums
ab47ddb6d905ba2a542d9f4e1c6a928013617d16210947c607ee4ba02c632fbb
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 10, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.0-cp315-cp315-macosx_11_0_arm64.whl
Size 649.1 kB
Tags CPython 3.15 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
60df3f4feb8051b4f4f0db0b705f4255914c8f3d4751201bb4d0b428cdb3bc53
BLAKE2b-256 checksum
How to use checksums
e1988dca1abb11e804b80318f212c1f483e652b4686cc60eaf666ce882565ee4
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 10, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.0-cp315-cp315-macosx_10_15_x86_64.whl
Size 665.9 kB
Tags CPython 3.15 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
3e01c51d38be658b6f583e17691d8c53681c93303e19c1c2fc881623d34ab525
BLAKE2b-256 checksum
How to use checksums
64bda2339903fbb43ce430955abd4cf1f8114e00389054be2a5a54cf56970413
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 10, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.0-cp314-cp314t-win_amd64.whl
Size 657.2 kB
Tags CPython 3.14 CPython 3.14 free-threading Windows x86-64
SHA-256 checksum
How to use checksums
ec67b6e2231a7188131d5a67650b31f955330233f023542fb1975939af97c39d
BLAKE2b-256 checksum
How to use checksums
5668923c11c6508d0e73bf785a6c06668cda62f9102e5cac0b466ed12c92a21f
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 10, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.0-cp314-cp314t-win32.whl
Size 593.8 kB
Tags CPython 3.14 CPython 3.14 free-threading Windows x86-32
SHA-256 checksum
How to use checksums
73e3e27752708272b89bf31b7e6919115a744c8b22569e3f1be9aae8915e2b29
BLAKE2b-256 checksum
How to use checksums
20ec5c7f242d3f564a3dcce250dd6810559bfd45c0220d1c4ea1ce6d32b35588
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 10, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Size 777.9 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
e42c27ae49de06229f2ca7ca2f7424fb2bb4172d9b454788d25513548381fb20
BLAKE2b-256 checksum
How to use checksums
dc8250aeaf9bcd9fc4ee9bead3b7fce74db907826a93ca2fe6eed7dc7783ac39
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 10, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.0-cp314-cp314t-musllinux_1_2_i686.whl
Size 799.3 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
97ff819d175b26ca1e7991f7cff02a5b0a398b6b5a7b20d8dcb0a9d9dfe2a16e
BLAKE2b-256 checksum
How to use checksums
49df21f5a953367ac49017740a98f22f871bceaa588556a385e126a72a9b14af
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 10, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Size 713.7 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
1da2b7217cb07b4e6d938a4cd945a7abb9f10da4056bf4b4f6cf504f2e7c75ee
BLAKE2b-256 checksum
How to use checksums
4b85dbc118ff64427016732ab72a2637f47b8f79fb39a383a2c4543f784b7d82
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 10, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Size 763.1 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
d2fa49b4555e7150fb6d76e1b216b63d60e448073f8beb669122b019277c2358
BLAKE2b-256 checksum
How to use checksums
3a0178ac61399a1b87632f8ee91ef7e4a905ee3d505872c148d69df7b6e16afc
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 10, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 769.6 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
352060d10d239b14a6fabdf735fb843dc82e8978610773fa7cad5f68cc59467c
BLAKE2b-256 checksum
How to use checksums
7e9c33ace76309706bc12a7a8024aa8cc36cb85419102563f923f7834a81c926
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 10, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Size 696.4 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
a4b2378d8bb777337d17dc15d5450d3bf1476d4bb0af3ce6ae26af34e00e7615
BLAKE2b-256 checksum
How to use checksums
848308e8914cc44fa81ab98f3323dc6d031faa6895e029d90064b39e216f0a5e
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 10, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 754.5 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
4247ee16ea0de1bbddc210f24c1fed2f3499882dd1e8046172e9522c1f758462
BLAKE2b-256 checksum
How to use checksums
a98b23a4372589977960ab93b5ffe7ca9b5fe6a7daff219b9636065c5766bb47
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 10, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Size 786.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
f3b595ddf71ad63d206eb912375f0b802e48be24f54b6639ae29e77a0d4e6569
BLAKE2b-256 checksum
How to use checksums
664dc582a140eeec80c30fd8da459a3c79667f1a1c9431f339120849b8169f77
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 10, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.0-cp314-cp314t-macosx_11_0_arm64.whl
Size 697.9 kB
Tags CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
e840db99aab3df96512927a6757758722ef7ce8f0e711f11b809bd3204f1feed
BLAKE2b-256 checksum
How to use checksums
0756b1d5de24aa9f68c9fb2282545bb291e0592dcac8bc1fadf0dd3d6eaefb23
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 10, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.0-cp314-cp314t-macosx_10_15_x86_64.whl
Size 703.0 kB
Tags CPython 3.14 CPython 3.14 free-threading macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
6b6a6f742e42c69ba2a76d8addf2949b6afad8c40a4247c79cbc3d157abe7832
BLAKE2b-256 checksum
How to use checksums
ec3ecb3dc2a99ae59399c10d5152af5215508f5fb9595ddb2c82ed0de062b842
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 10, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.0-cp314-cp314-win_amd64.whl
Size 612.4 kB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
73e01d640576749cdac8056344b9485f125de38201f3dfecdbbf0491408f2668
BLAKE2b-256 checksum
How to use checksums
4ec6d05ca19162cde837e0ebcc8d983207959f8c60e5363d12b54b85f87e99ac
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 10, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.0-cp314-cp314-win32.whl
Size 549.3 kB
Tags CPython 3.14 Windows x86-32
SHA-256 checksum
How to use checksums
61fe2f88bf89391b86d4ac609da09ebea2b1927e489426ddd14029fe20f8ab9e
BLAKE2b-256 checksum
How to use checksums
958fb6f8b61a05d08150e62ee8c4735aae54b4104d640fa87677c659e05177c3
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 10, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.0-cp314-cp314-musllinux_1_2_x86_64.whl
Size 769.4 kB
Tags CPython 3.14 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
4413d2f223ce69193bfeab5c04dab1431e44cb3da9e2adb758c01b36a0e1f8ec
BLAKE2b-256 checksum
How to use checksums
d2c7eaebda7ea9114000167986f6e889452f9be8f2e450027c3e1813af062a46
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 10, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.0-cp314-cp314-musllinux_1_2_i686.whl
Size 795.8 kB
Tags CPython 3.14 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
ec3feb12614c974564e88c5e78d906d61fb2872e25e5327889daa51ea45fad16
BLAKE2b-256 checksum
How to use checksums
f1528fac4842edd79e22d2e222487ba4a49e40a520cccdca32a94576df373ef6
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 10, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.0-cp314-cp314-musllinux_1_2_armv7l.whl
Size 698.4 kB
Tags CPython 3.14 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
39741131d2f7c5327071323b3d40f72624f416ffca14974db3d0657108a619d7
BLAKE2b-256 checksum
How to use checksums
515af219b7686f81f129eef9b2cd535b596c690d0078321b1774957b8d8499c8
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 10, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.0-cp314-cp314-musllinux_1_2_aarch64.whl
Size 743.6 kB
Tags CPython 3.14 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
e8dfd4b100b78b8b92a5f254589de29592bb4fd1c268186a88eec7538901d43a
BLAKE2b-256 checksum
How to use checksums
956520b8fd422d5f592f39b0cc65a111beeaf3d98d3b4a174300ffa901dc7e84
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 10, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 760.2 kB
Tags CPython 3.14 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
6a879095909cedaaf423fc62121916ce5c6a7446ffda796e53fad3769a9c097e
BLAKE2b-256 checksum
How to use checksums
72f93b2b3cf2e610eb128b81dc8a94ad3fb458bf14dcb96e94c16f5476080026
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 10, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Size 700.7 kB
Tags CPython 3.14 Linux glibc 2.17+ ARMv7l Linux glibc 2.31+ ARMv7l
SHA-256 checksum
How to use checksums
d5b861a8fc6b4e50137252cf18d37e3121d1ba83bac7fe444de7d3d7010f5705
BLAKE2b-256 checksum
How to use checksums
8feb16e30a1a932bb40d8238235c65a4c5286b5314cfe8c3c63bd5863da182b4
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 10, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 735.0 kB
Tags CPython 3.14 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
32f4e710db9ff807c1fcc4787a4bc923a99c32f3af434b070132b352f69571c8
BLAKE2b-256 checksum
How to use checksums
86256b84874a71108335ee69f8caf79e91e1f160edd437543a41fe4c98aa0e2e
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 10, 2026.

Transparency log

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

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

Transparency log

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

Download URL aioesphomeapi-46.4.0-cp314-cp314-macosx_11_0_arm64.whl
Size 652.2 kB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
2f06bca0ab5030e754d8c60e0417008dbac09e2bc92bcc343a246a70a518c457
BLAKE2b-256 checksum
How to use checksums
fc7a7daa9fd81a104e39a4cc325d1ffd28500c3f3caf1a0616a4d984b5b3d810
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 10, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.0-cp314-cp314-macosx_10_15_x86_64.whl
Size 667.9 kB
Tags CPython 3.14 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
fd09999f0f3fe5e26e7157e3d7a041b5a92dba6502c7f6f0d6a49352a5d608b2
BLAKE2b-256 checksum
How to use checksums
9b7fa3fe9473964a6931c0b5c95cb998bde815b0ff6ea01f3068daf3fd2af673
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 10, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.0-cp313-cp313-win_amd64.whl
Size 599.2 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
6737c5e5fa4c6a39eeb12f26643b5b2bbd9e8801101360012988053b11b0e46c
BLAKE2b-256 checksum
How to use checksums
be9b387c9773b35705bf880fb32b76b299f2ace550b560b40494c5f4e04ca681
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 10, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.0-cp313-cp313-win32.whl
Size 539.3 kB
Tags CPython 3.13 Windows x86-32
SHA-256 checksum
How to use checksums
73cfc1af666488f8601d93eb662748a412da209977d18eb789b6188681907fff
BLAKE2b-256 checksum
How to use checksums
cbeb8c84b4f75e50779c8393b174c1f8d393be53632085b456f4c111236bbab0
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 10, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.0-cp313-cp313-musllinux_1_2_x86_64.whl
Size 765.2 kB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
6500628f25f397790dbd87f2f22193f47dfa19321a9a90cb352cd839ba71427a
BLAKE2b-256 checksum
How to use checksums
e258b3acbde2f2b3f4e158a6c9a7eadffc88e18191a36ab4e0ff1e682206c192
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 10, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.0-cp313-cp313-musllinux_1_2_i686.whl
Size 793.7 kB
Tags CPython 3.13 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
cf2f3379b22383539ba74b1bae241835c861570c2debf5c5541513dd0864df91
BLAKE2b-256 checksum
How to use checksums
1bd4b20662abfb10b845deb327108ca0381aa9978d87a5b6f250e5f069f180a7
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 10, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.0-cp313-cp313-musllinux_1_2_armv7l.whl
Size 706.4 kB
Tags CPython 3.13 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
7774479e02425386698e92333be9df7d4d184ea674662c15aba796bc153d33e8
BLAKE2b-256 checksum
How to use checksums
7bec440fefc395fa393a6a5b35245796d2e21d3c392cd7ffc8b8c3bb0fc46a7e
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 10, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.0-cp313-cp313-musllinux_1_2_aarch64.whl
Size 732.8 kB
Tags CPython 3.13 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
ba1d24c0e81783767849705c5306e8978fc52a8c1e6e60c8d5c700f6287b4061
BLAKE2b-256 checksum
How to use checksums
e5f978f97b3b6cadcff809a9627eecff3c0c23971ef5cab1ae1437e8d58a5a60
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 10, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 756.8 kB
Tags CPython 3.13 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
82dca6b5d66fdde68bfb67a9a602b2243793709e50e4aa8a861c55022dbec9d7
BLAKE2b-256 checksum
How to use checksums
d92092e408c25d563a3a440622eb34d8687f4d85a2290fc2047415bc6ae33dba
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 10, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Size 708.5 kB
Tags CPython 3.13 Linux glibc 2.17+ ARMv7l Linux glibc 2.31+ ARMv7l
SHA-256 checksum
How to use checksums
eac4fdb964345c5238cf246581eb358b19988c3b5b78619d4a0419024395eeb2
BLAKE2b-256 checksum
How to use checksums
579c06211228127edfad085af255e639c40d13fd5a2753c53282314a2f9b6e6d
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 10, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 725.2 kB
Tags CPython 3.13 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
eb1d4ce688e0d8901858f2648cd4b9de1f371680bd81d8723e0f840ceef65c40
BLAKE2b-256 checksum
How to use checksums
9a40ffc442edb8056cd0b66a666efda03a69c1c72f620b70291fa03302aeaa83
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 10, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Size 782.4 kB
Tags CPython 3.13 Linux glibc 2.28+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
90c912fadc6e7e2e232430a3ddc518f5c2436eab988b9d3203c874ab8921af38
BLAKE2b-256 checksum
How to use checksums
6f0ea593f4460754c63a62cf8c2fd7aa12f50953a0ab4c0edc324daf126a58e5
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 10, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.0-cp313-cp313-macosx_11_0_arm64.whl
Size 645.0 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
28cf6bdfdb383458e824fd7569ca115e177b9be11668758be5f4e4c3e8b0a7f5
BLAKE2b-256 checksum
How to use checksums
79e33747b1d1088b2422681e6383cc217ec772604caa1329aaee97bcae214aeb
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 10, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.0-cp313-cp313-macosx_10_13_x86_64.whl
Size 664.0 kB
Tags CPython 3.13 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
6dc822cf45a7e41485646d2cd4a801a061438b7a68476628387b38ef429ee369
BLAKE2b-256 checksum
How to use checksums
eaf470981bfb8be51b224b7716f1b2697cd1274e4ba18092eda67518611f4f0f
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 10, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.0-cp312-cp312-win_amd64.whl
Size 603.3 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
fbc1fc294ef3edc538647eb60b183e15103638721951c8c7528bd8160939f741
BLAKE2b-256 checksum
How to use checksums
85d23dea5ed282b27973eb77d1cd460cabe46ee99ee98a486628885652bb0c1c
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 10, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.0-cp312-cp312-win32.whl
Size 541.6 kB
Tags CPython 3.12 Windows x86-32
SHA-256 checksum
How to use checksums
82e3ce327d7e6826bb326cd569f9878066f05b435e6d7d517d8dd09873b80828
BLAKE2b-256 checksum
How to use checksums
930f6f715cfc038fcef2c0955751a90446fac8f6cfa2bc1764dd687ec218c7e8
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 10, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.0-cp312-cp312-musllinux_1_2_x86_64.whl
Size 769.9 kB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
7ae53a09ce3bfa867c9f0f86621e15b1f1020aeffb977e114dc6df01a2ea50f4
BLAKE2b-256 checksum
How to use checksums
b6ce318edbdc157aa13a1baf623e794eacbd5e6010a16cec095e203636a8b6a3
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 10, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.0-cp312-cp312-musllinux_1_2_i686.whl
Size 799.6 kB
Tags CPython 3.12 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
dae852cfef965e88198f3e1843f8955945c11fdc81bf55405ebf1de6bc494846
BLAKE2b-256 checksum
How to use checksums
81a3d3c1568b0b1052e0ff13bfee9c1b5f9f4b7064aa5e3a793f256d0c560505
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 10, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.0-cp312-cp312-musllinux_1_2_armv7l.whl
Size 710.9 kB
Tags CPython 3.12 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
34145af5a4e82aed1fc21958b57d2df0b800bc053c69822671a24d48c4b19f34
BLAKE2b-256 checksum
How to use checksums
fe7792bd5f637f927e98c4d450de87e0caa548b852956c5e8187e765d5403c65
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 10, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.0-cp312-cp312-musllinux_1_2_aarch64.whl
Size 736.3 kB
Tags CPython 3.12 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
b6721cea87841d6526e4175446e61b4bf5bb5068ffe5edfaab1c6ebd1d4bf663
BLAKE2b-256 checksum
How to use checksums
fea04f869685d5227e901e1bfbcc4de55db8a51485f5dd943102e176ced5bf81
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 10, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 762.3 kB
Tags CPython 3.12 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
ecec64c227d3f3675558f2ca3995e44543387e564bc3b77bbbbaa054e6a81ca3
BLAKE2b-256 checksum
How to use checksums
646ba108c3b5d08657b89943894abb99d1f225fca46bdefe65c6784b4a47a003
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 10, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Size 714.6 kB
Tags CPython 3.12 Linux glibc 2.17+ ARMv7l Linux glibc 2.31+ ARMv7l
SHA-256 checksum
How to use checksums
f33a87b3590485ea093c9529494a3e6cbb0b53af8ae19a44f366815057585345
BLAKE2b-256 checksum
How to use checksums
ec6db474de03ead9cfa636fd74da8d000102862da88cbc40c956078c4af4087a
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 10, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 729.7 kB
Tags CPython 3.12 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
2ffac1a4b61d771630e576c516369c325a08a79a4fedb3ccea56e1b36c1c6ed1
BLAKE2b-256 checksum
How to use checksums
3d21c902dbc59f36295538ddd280464ace6ef8522b7d840aeb984b34cb4a0f9a
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 10, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Size 789.4 kB
Tags CPython 3.12 Linux glibc 2.28+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
d2db80c689b6b7c0aa8b859c7ac0c17ff61d216c6bdd06afd0e43bc6c771a046
BLAKE2b-256 checksum
How to use checksums
0dcc4a0f8d54c67fe54cc1b8f8e4d0e2c9ec6dab06c04448df845e13cac59389
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 10, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.0-cp312-cp312-macosx_11_0_arm64.whl
Size 650.8 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
7d80b1995fc00eb083a018481e7058486f900a31d70503766d4debace8b5938d
BLAKE2b-256 checksum
How to use checksums
448ed50a05db23b25061ae54f6d08100864dbbe0cd3937ae17df654705515616
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 10, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.0-cp312-cp312-macosx_10_13_x86_64.whl
Size 668.9 kB
Tags CPython 3.12 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
d5adfaaebec239b7f46ef29ebad0210d7be224356a856011cae606f3a5bc0de0
BLAKE2b-256 checksum
How to use checksums
4090c1eb28e4eaeecef42bb370d87091a12088eeede72c76e5e723b904fa351b
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 10, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.0-cp311-cp311-win_amd64.whl
Size 613.1 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
779468629e9d144ba044cfc6cb4a4b5472ec7803237b2a8a81c815ee2752aca0
BLAKE2b-256 checksum
How to use checksums
6fb8f7feeb12b888dec4329065c76c3c31b488c99f4735efa11e4965970115f1
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 10, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.0-cp311-cp311-win32.whl
Size 548.0 kB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
547362284f6ec69a1651595484cef5037ff8db42ac066384d1b0d7e75d881db7
BLAKE2b-256 checksum
How to use checksums
cc2ddff9a14bdcf20c80a514990950819ad6c245e52d0bc76f1769863c146f06
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 10, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.0-cp311-cp311-musllinux_1_2_x86_64.whl
Size 790.8 kB
Tags CPython 3.11 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
3db767b660c4e1b63f45ae274827df7028ebe44bef3693611e0e4c971edb7d98
BLAKE2b-256 checksum
How to use checksums
a15ac0bff4ac73102277bda96a36917e8b90527a1570b22384abcde20bcfdf71
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 10, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.0-cp311-cp311-musllinux_1_2_i686.whl
Size 826.8 kB
Tags CPython 3.11 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
2820f08964d00baab3e99baf8e644256894d5a77076dc3a3ac17d8b2c6c67079
BLAKE2b-256 checksum
How to use checksums
1923cc3a6a58df97c3832713a61550d61aae149276050edbc6003df76196a1f7
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 10, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.0-cp311-cp311-musllinux_1_2_armv7l.whl
Size 723.8 kB
Tags CPython 3.11 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
67e34bf50ac8d4cb0861218a79ea91002f59333d80a2c3451490e96fc7407d3e
BLAKE2b-256 checksum
How to use checksums
cc71d0fc340f725673f7e56b339bdf3a79ad51ba42a2606611b9831b71105f4e
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 10, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.0-cp311-cp311-musllinux_1_2_aarch64.whl
Size 763.3 kB
Tags CPython 3.11 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
c30cfbcc945d0f8d61045de4d579aff7e9a12023a88d2e3d2e569b74d196b084
BLAKE2b-256 checksum
How to use checksums
f6a850bc3089d63064edc5ea7755f9e87129f674569d28ad8c71121b81b3f3ab
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 10, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 783.4 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
a516fc9f0d65b6d551ead8d42716bc1a77fd1f9b7f95f3ad427c5c349b25d6d8
BLAKE2b-256 checksum
How to use checksums
aaba87c890598fbb4391fd7b40163d3430fb54e5ecfbf7617f055dafb4756868
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 10, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Size 725.4 kB
Tags CPython 3.11 Linux glibc 2.17+ ARMv7l Linux glibc 2.31+ ARMv7l
SHA-256 checksum
How to use checksums
06620ebe2d63157dac77c2f15a6bbf33f9271f0963ebfa287e1c498e71e574cd
BLAKE2b-256 checksum
How to use checksums
7b8c9c3b4367ae9fb429cc15316e0ea75650557f767ded398e55c8fb8ed8acba
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 10, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 756.7 kB
Tags CPython 3.11 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
5804559b64b5a001f977609f208d71ddb1c97e181198423e0b05c537e0c055c0
BLAKE2b-256 checksum
How to use checksums
e3f7d732b6eb5eee07eb5f9902a86baf61ff1c7f07eb81efa59b3e3cca6be3a9
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 10, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Size 814.9 kB
Tags CPython 3.11 Linux glibc 2.28+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
f1ccc2ee73b96eef0d12a3be0bd71c1e90c019f87d91b7ee8a028aa2f34a2ffe
BLAKE2b-256 checksum
How to use checksums
18246c6a666ee8a62963e758feb31d06944eb6094c0f8a8a87c7dc361cec420f
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 10, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.0-cp311-cp311-macosx_11_0_arm64.whl
Size 644.0 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
7eb4d393ef7093e39c46641a749da4e0df704b6a74d58917acd0ebffd47c8338
BLAKE2b-256 checksum
How to use checksums
9b36db688d59ac458cd8152bbc41d22c6e69b9db7508d0abb2d6b2fef8223ce7
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 10, 2026.

Transparency log

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

Download URL aioesphomeapi-46.4.0-cp311-cp311-macosx_10_9_x86_64.whl
Size 661.0 kB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
2e53f7fade8f5bb30a273083737bbeac64266d2b6ed6d8ab56d442f74c732dd3
BLAKE2b-256 checksum
How to use checksums
8e8bbab0b0fddf9bbca5114b8f08c726d43142bf24174ff0c930d3e4641406e3
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 10, 2026.

Transparency log

Release history Release notifications | RSS feed

This release

46.4.0 This release

85 release files

24.6.2

7 release files

24.6.1

7 release files

24.6.0

7 release files

24.5.0

7 release files

24.4.0

7 release files

24.3.0

7 release files

24.2.0

7 release files

24.1.0

7 release files

23.2.0

7 release files

23.1.1

7 release files

23.0.0

7 release files

22.1.0

7 release files

22.0.0

7 release files

21.0.3

7 release files

21.0.1

7 release files

21.0.0

7 release files

20.1.0

7 release files

20.0.0

7 release files

19.3.1

7 release files

19.2.1

7 release files

19.2.0

7 release files

19.1.7

7 release files

19.1.6

7 release files

19.1.5

7 release files

19.1.4

7 release files

19.1.3

7 release files

19.1.2

7 release files

19.1.1

7 release files

19.1.0

7 release files

19.0.1

7 release files

19.0.0

7 release files

18.5.9

7 release files

18.5.8

7 release files

18.5.7

7 release files

18.5.6

7 release files

18.5.5

7 release files

18.5.4

7 release files

18.5.3

7 release files

18.5.2

7 release files

18.5.1

7 release files

18.5.0

7 release files

18.4.1

7 release files

18.4.0

7 release files

17.1.0

2 release files

17.0.0

2 release files

16.0.6

2 release files

16.0.3

2 release files

16.0.2

2 release files

16.0.1

2 release files

16.0.0

2 release files

15.1.9

2 release files

15.1.8

2 release files

15.1.7

2 release files

15.1.6

2 release files

15.1.5

2 release files

15.0.1

2 release files

15.0.0

2 release files

14.1.1

2 release files

14.1.0

2 release files

13.9.0

2 release files

13.8.0

2 release files

13.7.5

2 release files

13.7.2

2 release files

13.7.1

2 release files

13.7.0

2 release files

13.6.0

2 release files

13.5.1

2 release files

13.4.1

2 release files

13.4.0

2 release files

13.3.1

2 release files

13.3.0

2 release files

13.1.0

2 release files

13.0.2

2 release files

12.2.1

2 release files

12.2.0

2 release files

12.1.0

2 release files

12.0.1

2 release files

12.0.0

2 release files

11.5.0

2 release files

11.4.2

2 release files

11.4.1

2 release files

11.4.0

2 release files

11.3.0

2 release files

11.2.0

2 release files

11.0.0

2 release files

10.9.0

2 release files

10.8.1

2 release files

10.8.0

2 release files

10.7.0

2 release files

10.6.0

2 release files

10.5.0

2 release files

10.4.0

2 release files

10.3.0

2 release files

10.2.0

2 release files

10.1.0

2 release files

10.0.3

2 release files

10.0.2

2 release files

10.0.1

2 release files

10.0.0

2 release files

9.1.5

2 release files

9.1.4

2 release files

9.1.3

2 release files

9.1.2

2 release files

9.1.1

2 release files

9.1.0

2 release files

9.0.0

2 release files

8.0.0

2 release files

7.0.0

2 release files

6.1.0

2 release files

6.0.1

2 release files

6.0.0

2 release files

5.1.1

2 release files

5.1.0

2 release files

5.0.1

2 release files

5.0.0

2 release files

4.1.0

2 release files

4.0.1

2 release files

4.0.0

2 release files

3.1.0

2 release files

3.0.1

2 release files

3.0.0

2 release files

2.9.0

2 release files

2.8.0

2 release files

2.7.0

2 release files

2.6.6

2 release files

2.6.5

2 release files

2.6.4

2 release files

2.6.3

2 release files

2.6.2

2 release files

2.6.1

2 release files

2.6.0

2 release files

2.5.0

2 release files

2.4.2

2 release files

2.4.1

2 release files

2.4.0

2 release files

2.3.0

2 release files

2.2.0

2 release files

2.1.0

2 release files

2.0.1

2 release files

2.0.0

2 release files

1.8.0

2 release files

1.7.0

2 release files

1.6.0

1 release file

1.5.0

1 release file

1.4.2

1 release file

1.4.1

1 release file

1.3.0

1 release file

1.2.0

1 release file

1.1.0

1 release file

1.0.0

1 release file

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