aioesphomeapi
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.6.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| aioesphomeapi-46.6.0.tar.gz | 268.7 kB | Details |
Built distributions (wheels)
Total release size: 60.5 MB
Release files / aioesphomeapi-46.6.0.tar.gz
| Download URL | aioesphomeapi-46.6.0.tar.gz |
|---|---|
| Size | 268.7 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
e846145cc5c2a20e9de0b150f1a9a69231f3a1da77c51e8d81b650874fae3690
|
|
BLAKE2b-256 checksum How to use checksums |
32f5aff19fb735a083c33046ee23bcad023692662a745e500dde33f8e84bc6af
|
| 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 25, 2026.
Transparency logRelease files / aioesphomeapi-46.6.0-cp315-cp315t-win_amd64.whl
| Download URL | aioesphomeapi-46.6.0-cp315-cp315t-win_amd64.whl |
|---|---|
| Size | 656.3 kB |
| Tags | CPython 3.15 CPython 3.15 free-threading Windows x86-64 |
|
SHA-256 checksum How to use checksums |
e50dfa6bf1b5d29acbfb4e397c70d5f70ae04cea4cde461f4394df3c3ca7530c
|
|
BLAKE2b-256 checksum How to use checksums |
fb114be793c8de79245f546d339f4403f6f21319609f731b5b68552d7290f54f
|
| 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 25, 2026.
Transparency logRelease files / aioesphomeapi-46.6.0-cp315-cp315t-win32.whl
| Download URL | aioesphomeapi-46.6.0-cp315-cp315t-win32.whl |
|---|---|
| Size | 594.9 kB |
| Tags | CPython 3.15 CPython 3.15 free-threading Windows x86-32 |
|
SHA-256 checksum How to use checksums |
7b5afd41b7eb524c9a54a37880f8072fcfbbc566af90c458349bcdbb58285f9f
|
|
BLAKE2b-256 checksum How to use checksums |
5834e412f673828475bdfd1af1c2ac2fffa6ef718aedeb425dec02140a76d242
|
| 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 25, 2026.
Transparency logRelease files / aioesphomeapi-46.6.0-cp315-cp315t-musllinux_1_2_x86_64.whl
| Download URL | aioesphomeapi-46.6.0-cp315-cp315t-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 781.8 kB |
| Tags | CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
5509cf483cd4bd5f2226ccb2c7559f32c41f7ba3e734b888b7d8a1e502f1fd8f
|
|
BLAKE2b-256 checksum How to use checksums |
f3b651b89e9f9acf3db80b1d960a37a6a43971e3c3572cee5add074ab40f544b
|
| 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 25, 2026.
Transparency logRelease files / aioesphomeapi-46.6.0-cp315-cp315t-musllinux_1_2_i686.whl
| Download URL | aioesphomeapi-46.6.0-cp315-cp315t-musllinux_1_2_i686.whl |
|---|---|
| Size | 763.1 kB |
| Tags | CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ x86-32 |
|
SHA-256 checksum How to use checksums |
649c5d09236b38d392e270d21580e197fd2493dfe2e5e42e5fa77445208f0bcf
|
|
BLAKE2b-256 checksum How to use checksums |
22ba61431d99ec6ab36d7d5caf18c8dbc20052647872b4f2b7e2ed8c5a3597ce
|
| 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 25, 2026.
Transparency logRelease files / aioesphomeapi-46.6.0-cp315-cp315t-musllinux_1_2_armv7l.whl
| Download URL | aioesphomeapi-46.6.0-cp315-cp315t-musllinux_1_2_armv7l.whl |
|---|---|
| Size | 752.0 kB |
| Tags | CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ ARMv7l |
|
SHA-256 checksum How to use checksums |
aa1d3313380b75597018bb975b9706261591e950786b00c8e2340807bc74d522
|
|
BLAKE2b-256 checksum How to use checksums |
8dfa2d93a826cabba74c74b8c084d0f9fb79c7dabba841cf3cce555a5ebd1932
|
| 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 25, 2026.
Transparency logRelease files / aioesphomeapi-46.6.0-cp315-cp315t-musllinux_1_2_aarch64.whl
| Download URL | aioesphomeapi-46.6.0-cp315-cp315t-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 765.0 kB |
| Tags | CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
787f8b2c7d61f5419a498b9fa358a4a2b8c00469dbe47e2f0523176fc9aec7f4
|
|
BLAKE2b-256 checksum How to use checksums |
7283d6e4ed9905d0d2db37374a015b1b44fa48d1ae72549a4efe79c4904c9fb2
|
| 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 25, 2026.
Transparency logRelease files / aioesphomeapi-46.6.0-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
| Download URL | aioesphomeapi-46.6.0-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl |
|---|---|
| Size | 772.1 kB |
| Tags | CPython 3.15 CPython 3.15 free-threading Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64 |
|
SHA-256 checksum How to use checksums |
9561cd5034cc4d941592302fe943db5361f16cde640eb5c7c3703d019e581295
|
|
BLAKE2b-256 checksum How to use checksums |
e5355f7bfadc5de1f698a4cb12a35dd002d019ba68d89192028548297f9c1700
|
| 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 25, 2026.
Transparency logRelease files / aioesphomeapi-46.6.0-cp315-cp315t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
| Download URL | aioesphomeapi-46.6.0-cp315-cp315t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl |
|---|---|
| Size | 731.4 kB |
| Tags | CPython 3.15 CPython 3.15 free-threading Linux glibc 2.17+ ARMv7l Linux glibc 2.31+ ARMv7l |
|
SHA-256 checksum How to use checksums |
0ad59f75cfb145a6ad6c3ed814da256403b41e4368f7dfb99b5e4cde22741294
|
|
BLAKE2b-256 checksum How to use checksums |
79e9428ea128fa8e6448715e3868ddb77f8a2c6ed70c490b6090731b080ce7d2
|
| 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 25, 2026.
Transparency logRelease files / aioesphomeapi-46.6.0-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
| Download URL | aioesphomeapi-46.6.0-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl |
|---|---|
| Size | 755.9 kB |
| Tags | CPython 3.15 CPython 3.15 free-threading Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64 |
|
SHA-256 checksum How to use checksums |
1999d601710593fdf50e8c870e1d7165fb2412f848a2b368c3834f9e2fe45cfd
|
|
BLAKE2b-256 checksum How to use checksums |
09b56a957a59f30d65498a2d2944803587555a86a54b37eeda5bda2cdabfe6f8
|
| 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 25, 2026.
Transparency logRelease files / aioesphomeapi-46.6.0-cp315-cp315t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
| Download URL | aioesphomeapi-46.6.0-cp315-cp315t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl |
|---|---|
| Size | 750.3 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 |
101ecd0aa88f8777b403e17d5a98f8bcce4d9a19f0247a3fa2fbdc3239c379f1
|
|
BLAKE2b-256 checksum How to use checksums |
ed70c08178fe2e95754531265e51a68d69d0f7a0a9c59e88f5f77eb48fa1473d
|
| 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 25, 2026.
Transparency logRelease files / aioesphomeapi-46.6.0-cp315-cp315t-macosx_11_0_arm64.whl
| Download URL | aioesphomeapi-46.6.0-cp315-cp315t-macosx_11_0_arm64.whl |
|---|---|
| Size | 697.1 kB |
| Tags | CPython 3.15 CPython 3.15 free-threading macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
e95b7d77d7aeb56c4e5c3db23bddbe1be5bacdcbe7d6230506c56f8425f0ffeb
|
|
BLAKE2b-256 checksum How to use checksums |
c0dc03d66fbd1ad626fb6d8e7bd195542929b9b54f23ae1e29428dd1c6b347d4
|
| 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 25, 2026.
Transparency logRelease files / aioesphomeapi-46.6.0-cp315-cp315t-macosx_10_15_x86_64.whl
| Download URL | aioesphomeapi-46.6.0-cp315-cp315t-macosx_10_15_x86_64.whl |
|---|---|
| Size | 701.7 kB |
| Tags | CPython 3.15 CPython 3.15 free-threading macOS 10.15+ x86-64 |
|
SHA-256 checksum How to use checksums |
26b529a605e2dd04f7731c458174d83a43bd208130f57ce83d4c36168ec95508
|
|
BLAKE2b-256 checksum How to use checksums |
ca64a40509caf3e4061bc68cb214b273129a336d61d392d50c6e776753d0f3c3
|
| 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 25, 2026.
Transparency logRelease files / aioesphomeapi-46.6.0-cp315-cp315-win_amd64.whl
| Download URL | aioesphomeapi-46.6.0-cp315-cp315-win_amd64.whl |
|---|---|
| Size | 615.7 kB |
| Tags | CPython 3.15 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
f538ff10b323743daa6de54edf1c01cb9fd07d55392c6abb6f586c2d9e012cb2
|
|
BLAKE2b-256 checksum How to use checksums |
7b23cd66a4685663158dc1488f4db35023867eaab128098bcd7ee17586053aec
|
| 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 25, 2026.
Transparency logRelease files / aioesphomeapi-46.6.0-cp315-cp315-win32.whl
| Download URL | aioesphomeapi-46.6.0-cp315-cp315-win32.whl |
|---|---|
| Size | 553.0 kB |
| Tags | CPython 3.15 Windows x86-32 |
|
SHA-256 checksum How to use checksums |
6d0246ff122e97bd30dc7218a428b0c2fa2fd8abfe0245a6f3d13cfa75e563cf
|
|
BLAKE2b-256 checksum How to use checksums |
b611ed67486276512a4e02ac741a3fa5ed7d49ba599f66ca28e96f0df9b8f45f
|
| 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 25, 2026.
Transparency logRelease files / aioesphomeapi-46.6.0-cp315-cp315-musllinux_1_2_x86_64.whl
| Download URL | aioesphomeapi-46.6.0-cp315-cp315-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 776.8 kB |
| Tags | CPython 3.15 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
cc17d438e5248d8b5fce5cd72662a4ea44e71eb50a2b80984dc263857582b29b
|
|
BLAKE2b-256 checksum How to use checksums |
be1de03b09d1f0f6939c5dcfd62134241c4e6f26086b235ea7c0ed9e2507621c
|
| 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 25, 2026.
Transparency logRelease files / aioesphomeapi-46.6.0-cp315-cp315-musllinux_1_2_i686.whl
| Download URL | aioesphomeapi-46.6.0-cp315-cp315-musllinux_1_2_i686.whl |
|---|---|
| Size | 757.4 kB |
| Tags | CPython 3.15 Linux musl 1.2+ x86-32 |
|
SHA-256 checksum How to use checksums |
443a92a1ceb6a6775d7fe552854deb79e9f643e510e529551e24a1b6eaacf1cd
|
|
BLAKE2b-256 checksum How to use checksums |
3b2d6758be3ac4da078fe082d32be7809e477700dc8419fef095bb77e45956d1
|
| 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 25, 2026.
Transparency logRelease files / aioesphomeapi-46.6.0-cp315-cp315-musllinux_1_2_armv7l.whl
| Download URL | aioesphomeapi-46.6.0-cp315-cp315-musllinux_1_2_armv7l.whl |
|---|---|
| Size | 740.3 kB |
| Tags | CPython 3.15 Linux musl 1.2+ ARMv7l |
|
SHA-256 checksum How to use checksums |
85d4497b4a883267435745d60fcc5a2769d662c8453828a39c4e8dc3f27dc98d
|
|
BLAKE2b-256 checksum How to use checksums |
4f06a50276fb3df86047a2a45293f4a6081e2b669e93e71eb2e55c84cf7a6217
|
| 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 25, 2026.
Transparency logRelease files / aioesphomeapi-46.6.0-cp315-cp315-musllinux_1_2_aarch64.whl
| Download URL | aioesphomeapi-46.6.0-cp315-cp315-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 749.0 kB |
| Tags | CPython 3.15 Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
b34f1a47b9501d086bf3b144da0170cb814b3da76a8efcb49adb42a6b5269142
|
|
BLAKE2b-256 checksum How to use checksums |
7cf8f8490c4c47964f333c98b3b698dc9ffbb165421f75f281508a77a31da545
|
| 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 25, 2026.
Transparency logRelease files / aioesphomeapi-46.6.0-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
| Download URL | aioesphomeapi-46.6.0-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl |
|---|---|
| Size | 769.5 kB |
| Tags | CPython 3.15 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64 |
|
SHA-256 checksum How to use checksums |
df7fdd2660a77b5c939f58eebcb3eb6d9d611b82e059dd1195ec99283db1254a
|
|
BLAKE2b-256 checksum How to use checksums |
526965358d8f0b6955b49f4b18ab315d2d17b9642905f4e34a58a03886a57764
|
| 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 25, 2026.
Transparency logRelease files / aioesphomeapi-46.6.0-cp315-cp315-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
| Download URL | aioesphomeapi-46.6.0-cp315-cp315-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl |
|---|---|
| Size | 744.8 kB |
| Tags | CPython 3.15 Linux glibc 2.17+ ARMv7l Linux glibc 2.31+ ARMv7l |
|
SHA-256 checksum How to use checksums |
1353fa3ac3687d2433d640f61494d6db6c7b57837a23a2baac026f2e1a9aee80
|
|
BLAKE2b-256 checksum How to use checksums |
a515363267f2aaae32eb403c4e52684747b1b5b3aafd07e72b1d4b52f4d0a778
|
| 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 25, 2026.
Transparency logRelease files / aioesphomeapi-46.6.0-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
| Download URL | aioesphomeapi-46.6.0-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl |
|---|---|
| Size | 741.2 kB |
| Tags | CPython 3.15 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64 |
|
SHA-256 checksum How to use checksums |
02ddc7ebb6f3ca875693300716bdb60d9a467eb3776fd89975d9af12428dcf49
|
|
BLAKE2b-256 checksum How to use checksums |
489298218f5e051bf16eed865f31f5017f8a067ff214f0031251e6dbcca79a6e
|
| 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 25, 2026.
Transparency logRelease files / aioesphomeapi-46.6.0-cp315-cp315-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
| Download URL | aioesphomeapi-46.6.0-cp315-cp315-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl |
|---|---|
| Size | 745.9 kB |
| Tags | CPython 3.15 Linux glibc 2.28+ x86-32 Linux glibc 2.5+ x86-32 |
|
SHA-256 checksum How to use checksums |
a0ec86d5e48e60461205f395d2d88ae8289e9ca4a5a542b2685b1d774f6bbf02
|
|
BLAKE2b-256 checksum How to use checksums |
8525c0e305f2923c67e22d4626af30edf70c0ba3b8a3d78d9a6da51580c55166
|
| 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 25, 2026.
Transparency logRelease files / aioesphomeapi-46.6.0-cp315-cp315-macosx_11_0_arm64.whl
| Download URL | aioesphomeapi-46.6.0-cp315-cp315-macosx_11_0_arm64.whl |
|---|---|
| Size | 653.5 kB |
| Tags | CPython 3.15 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
05e5ae9e4ba762785684f20c56850135e6c955c3480ab6e3bcab60b7e2bd0e67
|
|
BLAKE2b-256 checksum How to use checksums |
0f62079103bffbd057654866aefc800b8d6407349aaaf6e849a88498a9d24538
|
| 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 25, 2026.
Transparency logRelease files / aioesphomeapi-46.6.0-cp315-cp315-macosx_10_15_x86_64.whl
| Download URL | aioesphomeapi-46.6.0-cp315-cp315-macosx_10_15_x86_64.whl |
|---|---|
| Size | 670.4 kB |
| Tags | CPython 3.15 macOS 10.15+ x86-64 |
|
SHA-256 checksum How to use checksums |
5b5ed948caf6618cd906e7780344acdc127d874c7ec0947377f634ef08b5731a
|
|
BLAKE2b-256 checksum How to use checksums |
c499832dce33bc030f666ed117193336aa76e6a9e0b24070b3d67a7114b47139
|
| 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 25, 2026.
Transparency logRelease files / aioesphomeapi-46.6.0-cp314-cp314t-win_amd64.whl
| Download URL | aioesphomeapi-46.6.0-cp314-cp314t-win_amd64.whl |
|---|---|
| Size | 661.8 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading Windows x86-64 |
|
SHA-256 checksum How to use checksums |
e4317a8406d430732e69c79693361df4252326edeaa8e3310006834da2d85b20
|
|
BLAKE2b-256 checksum How to use checksums |
f3b90ed5aae86d8bebba402dbdd5cb279886d289ab67d56481759957dd40a3fb
|
| 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 25, 2026.
Transparency logRelease files / aioesphomeapi-46.6.0-cp314-cp314t-win32.whl
| Download URL | aioesphomeapi-46.6.0-cp314-cp314t-win32.whl |
|---|---|
| Size | 597.9 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading Windows x86-32 |
|
SHA-256 checksum How to use checksums |
d702af3673a8b337afef9823bc5ef99893c8f747a8e1f5140fe41a489c657aa7
|
|
BLAKE2b-256 checksum How to use checksums |
4f0395f93d50e8b282423bb7fd478bc77676f710492d12fe711f76fe13096a6d
|
| 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 25, 2026.
Transparency logRelease files / aioesphomeapi-46.6.0-cp314-cp314t-musllinux_1_2_x86_64.whl
| Download URL | aioesphomeapi-46.6.0-cp314-cp314t-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 782.3 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
2e5e50a2e5daa3ad12f1e8c3f01c8d9a5ba36ef1c48d7e1291fcacfcce8a8fd3
|
|
BLAKE2b-256 checksum How to use checksums |
e08bc75bc5da00221885eab492eca42c9ac25f18a996630bf3b8df6fba8b8689
|
| 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 25, 2026.
Transparency logRelease files / aioesphomeapi-46.6.0-cp314-cp314t-musllinux_1_2_i686.whl
| Download URL | aioesphomeapi-46.6.0-cp314-cp314t-musllinux_1_2_i686.whl |
|---|---|
| Size | 804.0 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-32 |
|
SHA-256 checksum How to use checksums |
fc1a47f73cfe03614e16e9a0ea117eaaa5c231ebab41179f17c72707df0c421e
|
|
BLAKE2b-256 checksum How to use checksums |
8b81699d8b7b710c4af29cc1a822639d7ed4ceb7cefdb0cb21ffca87885abf59
|
| 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 25, 2026.
Transparency logRelease files / aioesphomeapi-46.6.0-cp314-cp314t-musllinux_1_2_armv7l.whl
| Download URL | aioesphomeapi-46.6.0-cp314-cp314t-musllinux_1_2_armv7l.whl |
|---|---|
| Size | 718.7 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARMv7l |
|
SHA-256 checksum How to use checksums |
62be252a29504bbab9ed033a3c47bc5e6e1177d5d54d43793982c86c559a6272
|
|
BLAKE2b-256 checksum How to use checksums |
5481ec3425c081a1aa497e75798d419a7de461bf8f2dc28952b4dc35b74c720e
|
| 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 25, 2026.
Transparency logRelease files / aioesphomeapi-46.6.0-cp314-cp314t-musllinux_1_2_aarch64.whl
| Download URL | aioesphomeapi-46.6.0-cp314-cp314t-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 767.7 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
8ba362a8f669bb42ff175911c12daabce500aeb05e3db16d8a6d6d9968a58093
|
|
BLAKE2b-256 checksum How to use checksums |
3cdec844da05f789c93984cde78867936ad01aa6ba6aa7565acca859de2f481a
|
| 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 25, 2026.
Transparency logRelease files / aioesphomeapi-46.6.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
| Download URL | aioesphomeapi-46.6.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl |
|---|---|
| Size | 774.1 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 |
02d34b43675158c9c5014dffa84d78840cfa822de5877f4b17bfbf49959dff6d
|
|
BLAKE2b-256 checksum How to use checksums |
d2fd0c63fb0c4a4d776b5f19e1ab9996de2559891de786eb5ab1d7df36b42124
|
| 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 25, 2026.
Transparency logRelease files / aioesphomeapi-46.6.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
| Download URL | aioesphomeapi-46.6.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl |
|---|---|
| Size | 700.5 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARMv7l Linux glibc 2.31+ ARMv7l |
|
SHA-256 checksum How to use checksums |
c8b84e73946429011bcbd4665f39a271e675019c63621a333a2ffb245a38c077
|
|
BLAKE2b-256 checksum How to use checksums |
2e122e0be3a3a4bf3ee0c6a76300e56465019b70cd270698a5ab84f0c08b0f68
|
| 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 25, 2026.
Transparency logRelease files / aioesphomeapi-46.6.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
| Download URL | aioesphomeapi-46.6.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl |
|---|---|
| Size | 759.0 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64 |
|
SHA-256 checksum How to use checksums |
d5d27544888eaeb7814227895681107666e110c5f4f9f8914375e77224eb7a30
|
|
BLAKE2b-256 checksum How to use checksums |
ef7b47e41aae8d2f60ebab076a0a8bdb27be3e43c43f7a7f993812f5742b8264
|
| 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 25, 2026.
Transparency logRelease files / aioesphomeapi-46.6.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
| Download URL | aioesphomeapi-46.6.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl |
|---|---|
| Size | 791.0 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 |
8a59dfc147e81b9fea0225624e8baa604b04908f774813c7cc7b09af98b1c8c6
|
|
BLAKE2b-256 checksum How to use checksums |
535d0104aaad1e0dc9a9ed066262201900a82124fea67e067002af824b50d5c8
|
| 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 25, 2026.
Transparency logRelease files / aioesphomeapi-46.6.0-cp314-cp314t-macosx_11_0_arm64.whl
| Download URL | aioesphomeapi-46.6.0-cp314-cp314t-macosx_11_0_arm64.whl |
|---|---|
| Size | 702.3 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
9b1a6268b835ecd89f89dfabd29304fbee0b01075e92f26bc9dec7f74fc0c5bb
|
|
BLAKE2b-256 checksum How to use checksums |
f888b28cc512685e88d73e7676a3b0af259c8a652c02e0a8bd9540bbf4968294
|
| 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 25, 2026.
Transparency logRelease files / aioesphomeapi-46.6.0-cp314-cp314t-macosx_10_15_x86_64.whl
| Download URL | aioesphomeapi-46.6.0-cp314-cp314t-macosx_10_15_x86_64.whl |
|---|---|
| Size | 707.7 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading macOS 10.15+ x86-64 |
|
SHA-256 checksum How to use checksums |
481c5345dbe7747efa3149afb69e4cdf169546d7dfc44b4018a099ea5424eb2a
|
|
BLAKE2b-256 checksum How to use checksums |
89dfc5c0029514c541a2a6437d07656d2f94a61799bbac8da33eb439e3d14fc0
|
| 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 25, 2026.
Transparency logRelease files / aioesphomeapi-46.6.0-cp314-cp314-win_amd64.whl
| Download URL | aioesphomeapi-46.6.0-cp314-cp314-win_amd64.whl |
|---|---|
| Size | 616.8 kB |
| Tags | CPython 3.14 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
a678b3767f57ad570174c5feb62f8d88617cbe3a07476f6f16430779925b5fc8
|
|
BLAKE2b-256 checksum How to use checksums |
c2de8d232ad5e53153162ee85d5e9ca1c9ae61e71f2e7338704140ce19f56cfa
|
| 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 25, 2026.
Transparency logRelease files / aioesphomeapi-46.6.0-cp314-cp314-win32.whl
| Download URL | aioesphomeapi-46.6.0-cp314-cp314-win32.whl |
|---|---|
| Size | 553.5 kB |
| Tags | CPython 3.14 Windows x86-32 |
|
SHA-256 checksum How to use checksums |
36dce4b24c71a1b02c35b71cee22352d0a7c1901d6171ef962261a4745374a42
|
|
BLAKE2b-256 checksum How to use checksums |
4099a340cf6ad714c47c938414790e8c347c196d415d5436fe271d152cbbf57d
|
| 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 25, 2026.
Transparency logRelease files / aioesphomeapi-46.6.0-cp314-cp314-musllinux_1_2_x86_64.whl
| Download URL | aioesphomeapi-46.6.0-cp314-cp314-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 774.3 kB |
| Tags | CPython 3.14 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
98830bafb43298de0e2dc8e134473a21685f2c85069a0a1c16f1af5fd2dc8a66
|
|
BLAKE2b-256 checksum How to use checksums |
e43cf34255bd14e23eef72051fcac7d3c171a40c981d1e1fe5bde354b67b540d
|
| 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 25, 2026.
Transparency logRelease files / aioesphomeapi-46.6.0-cp314-cp314-musllinux_1_2_i686.whl
| Download URL | aioesphomeapi-46.6.0-cp314-cp314-musllinux_1_2_i686.whl |
|---|---|
| Size | 801.3 kB |
| Tags | CPython 3.14 Linux musl 1.2+ x86-32 |
|
SHA-256 checksum How to use checksums |
f11402e825f3a05b5026dfaa73d0a05f622089ccd66857bb52933224d0c339e8
|
|
BLAKE2b-256 checksum How to use checksums |
79b7780e1dde1839c509808a61989fd4c12b8e13355acc10e80784404bd34d17
|
| 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 25, 2026.
Transparency logRelease files / aioesphomeapi-46.6.0-cp314-cp314-musllinux_1_2_armv7l.whl
| Download URL | aioesphomeapi-46.6.0-cp314-cp314-musllinux_1_2_armv7l.whl |
|---|---|
| Size | 703.1 kB |
| Tags | CPython 3.14 Linux musl 1.2+ ARMv7l |
|
SHA-256 checksum How to use checksums |
205d1593c2371d5e0aef3d87c439ace94a135778b8a2870895b6a92b3ca4f065
|
|
BLAKE2b-256 checksum How to use checksums |
9209110b240a9b6758728eba11d049eae78d1787892f2ed6fc63fb34bdc0515e
|
| 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 25, 2026.
Transparency logRelease files / aioesphomeapi-46.6.0-cp314-cp314-musllinux_1_2_aarch64.whl
| Download URL | aioesphomeapi-46.6.0-cp314-cp314-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 748.8 kB |
| Tags | CPython 3.14 Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
da84ffcee6c8fee99ed7950e2afa62d69e30151dad1c7dc8d9b0e1b960c5cec1
|
|
BLAKE2b-256 checksum How to use checksums |
ce93c7cc161171072b313e8c4151ede81250b74f4aea93953cc73c521d6b1d85
|
| 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 25, 2026.
Transparency logRelease files / aioesphomeapi-46.6.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
| Download URL | aioesphomeapi-46.6.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl |
|---|---|
| Size | 765.0 kB |
| Tags | CPython 3.14 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64 |
|
SHA-256 checksum How to use checksums |
43e31328c6467b7797a7113786af7055d257c4a53c963f3667a4987ba28a7019
|
|
BLAKE2b-256 checksum How to use checksums |
036bb10170c9c18243b36952f52e99d62618b018e44a48d563b25756604a8569
|
| 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 25, 2026.
Transparency logRelease files / aioesphomeapi-46.6.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
| Download URL | aioesphomeapi-46.6.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl |
|---|---|
| Size | 704.9 kB |
| Tags | CPython 3.14 Linux glibc 2.17+ ARMv7l Linux glibc 2.31+ ARMv7l |
|
SHA-256 checksum How to use checksums |
a23d9725b9d04f6370f148fb0652701c7edc3163333d16ba6c35667637b26ca2
|
|
BLAKE2b-256 checksum How to use checksums |
50e2b839bf938aa17cbc86c26f1b81dc17fb67645e6c5bbb86ae628cf4e95ec0
|
| 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 25, 2026.
Transparency logRelease files / aioesphomeapi-46.6.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
| Download URL | aioesphomeapi-46.6.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl |
|---|---|
| Size | 740.3 kB |
| Tags | CPython 3.14 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64 |
|
SHA-256 checksum How to use checksums |
b54cd751cdaaa43c5e919b2aa7d16718184c1ff44a0806725e47e0814347aa08
|
|
BLAKE2b-256 checksum How to use checksums |
a17203719244df33bc8c7d2b2c04167bdcea3dfcf1ba8b19054318bcc417e83c
|
| 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 25, 2026.
Transparency logRelease files / aioesphomeapi-46.6.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
| Download URL | aioesphomeapi-46.6.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl |
|---|---|
| Size | 789.1 kB |
| Tags | CPython 3.14 Linux glibc 2.28+ x86-32 Linux glibc 2.5+ x86-32 |
|
SHA-256 checksum How to use checksums |
4ed0b66ee6ec2cc0f0eed5942493e4a1ac75d24defbc6176e860b4069daf5992
|
|
BLAKE2b-256 checksum How to use checksums |
e1d77ff34685b48eee8899989c979ceb46daf467d0767fe34a55793929a120f8
|
| 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 25, 2026.
Transparency logRelease files / aioesphomeapi-46.6.0-cp314-cp314-macosx_11_0_arm64.whl
| Download URL | aioesphomeapi-46.6.0-cp314-cp314-macosx_11_0_arm64.whl |
|---|---|
| Size | 656.6 kB |
| Tags | CPython 3.14 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
34eabd1b7984f2b43519329fab6ef7c617a8745e902cf19db993a8dc8058dd88
|
|
BLAKE2b-256 checksum How to use checksums |
e0c8c633903631ab746ad097a53f3d8932744548cdbffabc7e1eae817cc04693
|
| 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 25, 2026.
Transparency logRelease files / aioesphomeapi-46.6.0-cp314-cp314-macosx_10_15_x86_64.whl
| Download URL | aioesphomeapi-46.6.0-cp314-cp314-macosx_10_15_x86_64.whl |
|---|---|
| Size | 672.5 kB |
| Tags | CPython 3.14 macOS 10.15+ x86-64 |
|
SHA-256 checksum How to use checksums |
30c22380ed1f5242c399c9cc82f98981fb86638473c835f3bcaaa32a6e7c005b
|
|
BLAKE2b-256 checksum How to use checksums |
c61c972d6613e581fdfcbe414711bf4b04e3a6f4dee4e0f1a683bb74dd5bd957
|
| 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 25, 2026.
Transparency logRelease files / aioesphomeapi-46.6.0-cp313-cp313-win_amd64.whl
| Download URL | aioesphomeapi-46.6.0-cp313-cp313-win_amd64.whl |
|---|---|
| Size | 603.5 kB |
| Tags | CPython 3.13 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
ff6a5a7f921d6203524873121648b066b577c2cdcb015e9242a7e1c563cc0672
|
|
BLAKE2b-256 checksum How to use checksums |
eb5dc135f9552f79079e9f384066312edd4c228cf07a6ada39c652a2568c8176
|
| 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 25, 2026.
Transparency logRelease files / aioesphomeapi-46.6.0-cp313-cp313-win32.whl
| Download URL | aioesphomeapi-46.6.0-cp313-cp313-win32.whl |
|---|---|
| Size | 543.5 kB |
| Tags | CPython 3.13 Windows x86-32 |
|
SHA-256 checksum How to use checksums |
545c9b3ed22ccbd21c574fb06f80956b8c21e4cb8c8cca882faf464e28b5d06e
|
|
BLAKE2b-256 checksum How to use checksums |
9b69c4c4e2cce90d4c098c37ee10f7c10f9a2335297a6b8346125271368e79c9
|
| 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 25, 2026.
Transparency logRelease files / aioesphomeapi-46.6.0-cp313-cp313-musllinux_1_2_x86_64.whl
| Download URL | aioesphomeapi-46.6.0-cp313-cp313-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 770.1 kB |
| Tags | CPython 3.13 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
0fd5254fdf26e9c4b10e6f2f069675d2d63d84a097c144430702a0ffdd1c4106
|
|
BLAKE2b-256 checksum How to use checksums |
fee7f1ac1e7a100034ca6dda56d72d07617e52f77268004d3c1b39308eee268a
|
| 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 25, 2026.
Transparency logRelease files / aioesphomeapi-46.6.0-cp313-cp313-musllinux_1_2_i686.whl
| Download URL | aioesphomeapi-46.6.0-cp313-cp313-musllinux_1_2_i686.whl |
|---|---|
| Size | 799.2 kB |
| Tags | CPython 3.13 Linux musl 1.2+ x86-32 |
|
SHA-256 checksum How to use checksums |
2883112f5e4d957f601f203edbb751045ec6bc11df273b7380cee652c2d4c7d6
|
|
BLAKE2b-256 checksum How to use checksums |
05ca5ae34ac04350989ce3c8600a6ef6dedd0a849c1764785322a1f425b0f651
|
| 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 25, 2026.
Transparency logRelease files / aioesphomeapi-46.6.0-cp313-cp313-musllinux_1_2_armv7l.whl
| Download URL | aioesphomeapi-46.6.0-cp313-cp313-musllinux_1_2_armv7l.whl |
|---|---|
| Size | 711.2 kB |
| Tags | CPython 3.13 Linux musl 1.2+ ARMv7l |
|
SHA-256 checksum How to use checksums |
bf57b0ae0810a3ad1bb5eaa7551c6137b8f980cb806534476e4e6d751ae0f7b6
|
|
BLAKE2b-256 checksum How to use checksums |
ff2564d5f14581a24da3d05969622ac3263643385d3e3e92214f86a714c2131b
|
| 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 25, 2026.
Transparency logRelease files / aioesphomeapi-46.6.0-cp313-cp313-musllinux_1_2_aarch64.whl
| Download URL | aioesphomeapi-46.6.0-cp313-cp313-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 738.3 kB |
| Tags | CPython 3.13 Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
a5aa27f36a28b3988ddaff968fad2e396785f576c68436906c22f4390b1a09db
|
|
BLAKE2b-256 checksum How to use checksums |
79eeb07f9f43136d218a48f99757fc8fe0b014e8046de068501dd9e6a8cf3891
|
| 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 25, 2026.
Transparency logRelease files / aioesphomeapi-46.6.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
| Download URL | aioesphomeapi-46.6.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl |
|---|---|
| Size | 761.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 |
449cee2ec47d2b1611d4d60fd2467133aed5a32149c6a1f654761305c6faa8fa
|
|
BLAKE2b-256 checksum How to use checksums |
d93364d1d12f09ac8bffe202ed950cfb524fd4620d0f97059e8a0d31bfbe8fcb
|
| 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 25, 2026.
Transparency logRelease files / aioesphomeapi-46.6.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
| Download URL | aioesphomeapi-46.6.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl |
|---|---|
| Size | 712.3 kB |
| Tags | CPython 3.13 Linux glibc 2.17+ ARMv7l Linux glibc 2.31+ ARMv7l |
|
SHA-256 checksum How to use checksums |
8b0db5317ef38ba98211bdcee392e3a2e0b1646ad9e254083dae7b7096a010cc
|
|
BLAKE2b-256 checksum How to use checksums |
9e4d00266c9beffe412af2dc9bbe21db8ef1859e0e202509a5dc8ff417e90072
|
| 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 25, 2026.
Transparency logRelease files / aioesphomeapi-46.6.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
| Download URL | aioesphomeapi-46.6.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl |
|---|---|
| Size | 730.4 kB |
| Tags | CPython 3.13 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64 |
|
SHA-256 checksum How to use checksums |
05617c1d24daa428d43f2a3eaa7ab1713961390bc07c7cdf9bbc0b20dc552d41
|
|
BLAKE2b-256 checksum How to use checksums |
1186ea01d4e50513da33ef438edc416c81da2f40971f2da52de99a83632f7b7d
|
| 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 25, 2026.
Transparency logRelease files / aioesphomeapi-46.6.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
| Download URL | aioesphomeapi-46.6.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl |
|---|---|
| Size | 787.5 kB |
| Tags | CPython 3.13 Linux glibc 2.28+ x86-32 Linux glibc 2.5+ x86-32 |
|
SHA-256 checksum How to use checksums |
91cba32ac59c7a42b790583cbc1ddaa8bb64e5d9ef9348ddb62ab9cfce03e90f
|
|
BLAKE2b-256 checksum How to use checksums |
2db95d9731176c832c51ed104f75f32728ea38c455512b0685a262b91fd17878
|
| 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 25, 2026.
Transparency logRelease files / aioesphomeapi-46.6.0-cp313-cp313-macosx_11_0_arm64.whl
| Download URL | aioesphomeapi-46.6.0-cp313-cp313-macosx_11_0_arm64.whl |
|---|---|
| Size | 649.1 kB |
| Tags | CPython 3.13 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
c031fae66fea6160263ab22fb3b1ec4d28b94c601f1cd4a8d2079fedfa0d4ace
|
|
BLAKE2b-256 checksum How to use checksums |
bed7a453c03671cc1e46c843a4818f65ae436095f5cd963fba6e1386c0694de1
|
| 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 25, 2026.
Transparency logRelease files / aioesphomeapi-46.6.0-cp313-cp313-macosx_10_13_x86_64.whl
| Download URL | aioesphomeapi-46.6.0-cp313-cp313-macosx_10_13_x86_64.whl |
|---|---|
| Size | 668.3 kB |
| Tags | CPython 3.13 macOS 10.13+ x86-64 |
|
SHA-256 checksum How to use checksums |
88c42b252d3dbc279bd951296be6861ec81ca8337ad3933c6726dd80ef7a8dda
|
|
BLAKE2b-256 checksum How to use checksums |
e20e6add3575ecacf8b43729d7110463d7be21dfa6a6622c78ebf07870f5fcb0
|
| 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 25, 2026.
Transparency logRelease files / aioesphomeapi-46.6.0-cp312-cp312-win_amd64.whl
| Download URL | aioesphomeapi-46.6.0-cp312-cp312-win_amd64.whl |
|---|---|
| Size | 607.4 kB |
| Tags | CPython 3.12 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
f9e16f11a50d2415a3911767b6f5fc1598841746bc11a37d89579a0a4dd58bbe
|
|
BLAKE2b-256 checksum How to use checksums |
9171749022047fbe58418aba1d64e97a90dc18016634432bf3e8488337b6a832
|
| 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 25, 2026.
Transparency logRelease files / aioesphomeapi-46.6.0-cp312-cp312-win32.whl
| Download URL | aioesphomeapi-46.6.0-cp312-cp312-win32.whl |
|---|---|
| Size | 545.8 kB |
| Tags | CPython 3.12 Windows x86-32 |
|
SHA-256 checksum How to use checksums |
363309f13de59c397d25b79038c8fc600553ddf729ec43d935b2358f0b7e87db
|
|
BLAKE2b-256 checksum How to use checksums |
942015d8f8de60484f7d36a39dd47680cf7b1629f1e25b94ffa26b197cb5cd6d
|
| 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 25, 2026.
Transparency logRelease files / aioesphomeapi-46.6.0-cp312-cp312-musllinux_1_2_x86_64.whl
| Download URL | aioesphomeapi-46.6.0-cp312-cp312-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 774.5 kB |
| Tags | CPython 3.12 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
e2fa7fc7cd6ba8d4503476e030b58498dce4876945a42d97bd9ca3cd26c401a0
|
|
BLAKE2b-256 checksum How to use checksums |
42f2824cc05fcf750b43c1dc79ef006776aeec7b5b1babd70a092d9f71b679ba
|
| 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 25, 2026.
Transparency logRelease files / aioesphomeapi-46.6.0-cp312-cp312-musllinux_1_2_i686.whl
| Download URL | aioesphomeapi-46.6.0-cp312-cp312-musllinux_1_2_i686.whl |
|---|---|
| Size | 805.0 kB |
| Tags | CPython 3.12 Linux musl 1.2+ x86-32 |
|
SHA-256 checksum How to use checksums |
912387c836679f744ef846e54d6af09843e6935f4e01a6a334d27193939bd82b
|
|
BLAKE2b-256 checksum How to use checksums |
9df7cf66f4ff8a5d8a3ae41a7ea709f0c73e5ba267b88d5899fdce5c530e67a7
|
| 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 25, 2026.
Transparency logRelease files / aioesphomeapi-46.6.0-cp312-cp312-musllinux_1_2_armv7l.whl
| Download URL | aioesphomeapi-46.6.0-cp312-cp312-musllinux_1_2_armv7l.whl |
|---|---|
| Size | 716.0 kB |
| Tags | CPython 3.12 Linux musl 1.2+ ARMv7l |
|
SHA-256 checksum How to use checksums |
360b8331620276d756845464c9cd7b0405adb7729c861374aee86b82ace7c493
|
|
BLAKE2b-256 checksum How to use checksums |
808beb85eabf393c6dd21974db6970cb31c061f66eb7583d3e115dcd13c35779
|
| 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 25, 2026.
Transparency logRelease files / aioesphomeapi-46.6.0-cp312-cp312-musllinux_1_2_aarch64.whl
| Download URL | aioesphomeapi-46.6.0-cp312-cp312-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 740.8 kB |
| Tags | CPython 3.12 Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
4f21c2ec7efbbc2b11d4def94d8ddc04fcb9ee69c737decb2a03d3be5686e2ec
|
|
BLAKE2b-256 checksum How to use checksums |
c8b4d9f16be22df914596fe6262aa750a3f0596b83c8cc13e58c71420327ee10
|
| 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 25, 2026.
Transparency logRelease files / aioesphomeapi-46.6.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
| Download URL | aioesphomeapi-46.6.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl |
|---|---|
| Size | 767.1 kB |
| Tags | CPython 3.12 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64 |
|
SHA-256 checksum How to use checksums |
3bcf65f52af1b70881d58523e6f8cb3b4add999ef5c453dc49c0206996b61514
|
|
BLAKE2b-256 checksum How to use checksums |
a30a828cde5e3b07779abfdc8c935f5444844d9dcd6024f4af03c2c0ee6a88ce
|
| 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 25, 2026.
Transparency logRelease files / aioesphomeapi-46.6.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
| Download URL | aioesphomeapi-46.6.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl |
|---|---|
| Size | 718.7 kB |
| Tags | CPython 3.12 Linux glibc 2.17+ ARMv7l Linux glibc 2.31+ ARMv7l |
|
SHA-256 checksum How to use checksums |
a897e1b0e1ddb2654f30c99e2b858155e8de34609a9fa893a1b25b1ab6f5dde9
|
|
BLAKE2b-256 checksum How to use checksums |
fa972b2c8b9d28b1244c920bbddae6788b6d9abf0d89e95b7ac51bd531298594
|
| 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 25, 2026.
Transparency logRelease files / aioesphomeapi-46.6.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
| Download URL | aioesphomeapi-46.6.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl |
|---|---|
| Size | 733.6 kB |
| Tags | CPython 3.12 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64 |
|
SHA-256 checksum How to use checksums |
314f1a35df36170cc1fc62de6d50848b4b92778fd13552f1cceb4440e0297d9f
|
|
BLAKE2b-256 checksum How to use checksums |
4c04d3c53bc4c47f32fd86a048c924cf1dd73455699184fac006e6597abb35e1
|
| 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 25, 2026.
Transparency logRelease files / aioesphomeapi-46.6.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
| Download URL | aioesphomeapi-46.6.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl |
|---|---|
| Size | 794.0 kB |
| Tags | CPython 3.12 Linux glibc 2.28+ x86-32 Linux glibc 2.5+ x86-32 |
|
SHA-256 checksum How to use checksums |
fbd1ee6479948148c655bd1e89339bdf60d721148d03a77e37b924fa25d84d44
|
|
BLAKE2b-256 checksum How to use checksums |
ab74a295fae22040858a4f67f39d5c426823c7efdc58d58a8865634b1c0611bf
|
| 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 25, 2026.
Transparency logRelease files / aioesphomeapi-46.6.0-cp312-cp312-macosx_11_0_arm64.whl
| Download URL | aioesphomeapi-46.6.0-cp312-cp312-macosx_11_0_arm64.whl |
|---|---|
| Size | 654.9 kB |
| Tags | CPython 3.12 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
fd977b160825052db7b376fd28da2679fe58ee0bf87d6b1bfd512e5c8641e03b
|
|
BLAKE2b-256 checksum How to use checksums |
82c03c9fe7826f06c4713a3efde06765731022eb8ebc3fbb83066350f751399f
|
| 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 25, 2026.
Transparency logRelease files / aioesphomeapi-46.6.0-cp312-cp312-macosx_10_13_x86_64.whl
| Download URL | aioesphomeapi-46.6.0-cp312-cp312-macosx_10_13_x86_64.whl |
|---|---|
| Size | 673.2 kB |
| Tags | CPython 3.12 macOS 10.13+ x86-64 |
|
SHA-256 checksum How to use checksums |
cbf57c65b1e98cab02fab41805df6c45e4d87fd4898c7004c7e1f3acbf179ae9
|
|
BLAKE2b-256 checksum How to use checksums |
994e8bde14dbe5df4f99729b1c8032c567c95e2f561bb0bd1064c823795a8392
|
| 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 25, 2026.
Transparency logRelease files / aioesphomeapi-46.6.0-cp311-cp311-win_amd64.whl
| Download URL | aioesphomeapi-46.6.0-cp311-cp311-win_amd64.whl |
|---|---|
| Size | 617.8 kB |
| Tags | CPython 3.11 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
341a71c255e27d6055b21b1589dd68701924a97c0f3fc89d5352f2789ff8a160
|
|
BLAKE2b-256 checksum How to use checksums |
dc864e7e195bab06a183a69c0bf7fcde3a0ef837a694ad10ca02b264da6b2b58
|
| 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 25, 2026.
Transparency logRelease files / aioesphomeapi-46.6.0-cp311-cp311-win32.whl
| Download URL | aioesphomeapi-46.6.0-cp311-cp311-win32.whl |
|---|---|
| Size | 552.7 kB |
| Tags | CPython 3.11 Windows x86-32 |
|
SHA-256 checksum How to use checksums |
9fcca350557ae91c791feb4e89aeb6b3fd4178232f5c8572ea8d7f8e33e5cba8
|
|
BLAKE2b-256 checksum How to use checksums |
70246173975d20948a14a2a33cc69dd8a0d6e0b8ee8559c082c979fad2f285b6
|
| 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 25, 2026.
Transparency logRelease files / aioesphomeapi-46.6.0-cp311-cp311-musllinux_1_2_x86_64.whl
| Download URL | aioesphomeapi-46.6.0-cp311-cp311-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 795.0 kB |
| Tags | CPython 3.11 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
515a3bd54513d9a6e77cf71f087e0723e9c95d0fca61e7342d8514ddb83cc4fc
|
|
BLAKE2b-256 checksum How to use checksums |
3683acc18241c523fc396f73fe6e6c617c1679bdb2a50e058e1794b4388e5c60
|
| 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 25, 2026.
Transparency logRelease files / aioesphomeapi-46.6.0-cp311-cp311-musllinux_1_2_i686.whl
| Download URL | aioesphomeapi-46.6.0-cp311-cp311-musllinux_1_2_i686.whl |
|---|---|
| Size | 829.7 kB |
| Tags | CPython 3.11 Linux musl 1.2+ x86-32 |
|
SHA-256 checksum How to use checksums |
a296b746e9d5f6052c8b01b0e55cd911113e951a29c1394e072fa0ae48f35482
|
|
BLAKE2b-256 checksum How to use checksums |
566440369b499c625bff0c5f3f6e273a1efd9d10ca3ecca4452d5c7aee86eaaf
|
| 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 25, 2026.
Transparency logRelease files / aioesphomeapi-46.6.0-cp311-cp311-musllinux_1_2_armv7l.whl
| Download URL | aioesphomeapi-46.6.0-cp311-cp311-musllinux_1_2_armv7l.whl |
|---|---|
| Size | 727.9 kB |
| Tags | CPython 3.11 Linux musl 1.2+ ARMv7l |
|
SHA-256 checksum How to use checksums |
0ca8ad5312cce60992958c82a4b664305c59e35cf2d4b54b99eb86335b0e4d08
|
|
BLAKE2b-256 checksum How to use checksums |
7323de36e8affcbc0fa47897ed84a3d3febd6c821929b0ab68d84c7c81905634
|
| 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 25, 2026.
Transparency logRelease files / aioesphomeapi-46.6.0-cp311-cp311-musllinux_1_2_aarch64.whl
| Download URL | aioesphomeapi-46.6.0-cp311-cp311-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 767.5 kB |
| Tags | CPython 3.11 Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
074b3583421859d0c238ccd2964f23a0528e7c28f45254eee06a9ee6169920d3
|
|
BLAKE2b-256 checksum How to use checksums |
bbf30f4ec48e07a997980ee4ed4999cc14566a8d73324d50880ac7262a7dac3d
|
| 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 25, 2026.
Transparency logRelease files / aioesphomeapi-46.6.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
| Download URL | aioesphomeapi-46.6.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl |
|---|---|
| Size | 787.6 kB |
| Tags | CPython 3.11 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64 |
|
SHA-256 checksum How to use checksums |
f193867dbe8584d684d02b90ada11f61f1a6ba40cf45a193873b33469d468d71
|
|
BLAKE2b-256 checksum How to use checksums |
fe99a56f3929267ed49faaad5c4c746e163b6ff5e81a855bb7a7040ac18002a7
|
| 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 25, 2026.
Transparency logRelease files / aioesphomeapi-46.6.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
| Download URL | aioesphomeapi-46.6.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl |
|---|---|
| Size | 729.0 kB |
| Tags | CPython 3.11 Linux glibc 2.17+ ARMv7l Linux glibc 2.31+ ARMv7l |
|
SHA-256 checksum How to use checksums |
03e25e7f40923edf950f42b79578ee4571706424109118046fe5a39fa01f9967
|
|
BLAKE2b-256 checksum How to use checksums |
b57294a1ddfeb61444549e584fe712fc54218bede4731fa86ec70b724380d749
|
| 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 25, 2026.
Transparency logRelease files / aioesphomeapi-46.6.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
| Download URL | aioesphomeapi-46.6.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl |
|---|---|
| Size | 761.0 kB |
| Tags | CPython 3.11 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64 |
|
SHA-256 checksum How to use checksums |
fe09776dc8b8c114151427e86d738b55ca09416f24a614c19ed29ae93a0e117e
|
|
BLAKE2b-256 checksum How to use checksums |
4aaaf5a143123a711b8feccfdfc30f0f30ddd5368abc03dd8b303e45181a482e
|
| 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 25, 2026.
Transparency logRelease files / aioesphomeapi-46.6.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
| Download URL | aioesphomeapi-46.6.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl |
|---|---|
| Size | 818.6 kB |
| Tags | CPython 3.11 Linux glibc 2.28+ x86-32 Linux glibc 2.5+ x86-32 |
|
SHA-256 checksum How to use checksums |
493f4bb958315975d5a035a97aa596e10e1f310da7ff4efd03fb7d0a8f3e939d
|
|
BLAKE2b-256 checksum How to use checksums |
6449726b382e5048fceae37ce5dab6caefcce6fcd90797a37e1710d1ad20945d
|
| 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 25, 2026.
Transparency logRelease files / aioesphomeapi-46.6.0-cp311-cp311-macosx_11_0_arm64.whl
| Download URL | aioesphomeapi-46.6.0-cp311-cp311-macosx_11_0_arm64.whl |
|---|---|
| Size | 648.4 kB |
| Tags | CPython 3.11 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
b785e7cdac529e017c0d8949e9e34c7ae25f2a322b610c92290f8b2dbf9ce50f
|
|
BLAKE2b-256 checksum How to use checksums |
38ec627550a42c7e4375eab8e81c15e9446da7666cf9f919d6232d28ba6c0425
|
| 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 25, 2026.
Transparency logRelease files / aioesphomeapi-46.6.0-cp311-cp311-macosx_10_9_x86_64.whl
| Download URL | aioesphomeapi-46.6.0-cp311-cp311-macosx_10_9_x86_64.whl |
|---|---|
| Size | 665.4 kB |
| Tags | CPython 3.11 macOS 10.9+ x86-64 |
|
SHA-256 checksum How to use checksums |
95cbebcfa1c9b29ca4560ab00eaf8cee6be9035afa8b0639edda25448ce76f28
|
|
BLAKE2b-256 checksum How to use checksums |
7dde2b07b675c703394e6b966b8d71860098e9cc9c8c2fdf47a92d1dbf407604
|
| 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 25, 2026.
Transparency log