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.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

aioesphomeapi-46.3.0.tar.gz (247.7 kB view details)

Uploaded Source

Built Distributions

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

aioesphomeapi-46.3.0-cp315-cp315t-win_amd64.whl (636.8 kB view details)

Uploaded CPython 3.15tWindows x86-64

aioesphomeapi-46.3.0-cp315-cp315t-win32.whl (577.0 kB view details)

Uploaded CPython 3.15tWindows x86

aioesphomeapi-46.3.0-cp315-cp315t-musllinux_1_2_x86_64.whl (761.5 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ x86-64

aioesphomeapi-46.3.0-cp315-cp315t-musllinux_1_2_i686.whl (742.7 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ i686

aioesphomeapi-46.3.0-cp315-cp315t-musllinux_1_2_armv7l.whl (732.9 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARMv7l

aioesphomeapi-46.3.0-cp315-cp315t-musllinux_1_2_aarch64.whl (745.0 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARM64

aioesphomeapi-46.3.0-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (752.1 kB view details)

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

aioesphomeapi-46.3.0-cp315-cp315t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (712.4 kB view details)

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

aioesphomeapi-46.3.0-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (736.0 kB view details)

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

aioesphomeapi-46.3.0-cp315-cp315t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (729.9 kB view details)

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

aioesphomeapi-46.3.0-cp315-cp315t-macosx_11_0_arm64.whl (677.6 kB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

aioesphomeapi-46.3.0-cp315-cp315t-macosx_10_15_x86_64.whl (681.3 kB view details)

Uploaded CPython 3.15tmacOS 10.15+ x86-64

aioesphomeapi-46.3.0-cp315-cp315-win_amd64.whl (597.6 kB view details)

Uploaded CPython 3.15Windows x86-64

aioesphomeapi-46.3.0-cp315-cp315-win32.whl (535.1 kB view details)

Uploaded CPython 3.15Windows x86

aioesphomeapi-46.3.0-cp315-cp315-musllinux_1_2_x86_64.whl (757.7 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ x86-64

aioesphomeapi-46.3.0-cp315-cp315-musllinux_1_2_i686.whl (736.8 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ i686

aioesphomeapi-46.3.0-cp315-cp315-musllinux_1_2_armv7l.whl (719.9 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARMv7l

aioesphomeapi-46.3.0-cp315-cp315-musllinux_1_2_aarch64.whl (728.3 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARM64

aioesphomeapi-46.3.0-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (750.4 kB view details)

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

aioesphomeapi-46.3.0-cp315-cp315-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (727.0 kB view details)

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

aioesphomeapi-46.3.0-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (720.5 kB view details)

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

aioesphomeapi-46.3.0-cp315-cp315-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (724.4 kB view details)

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

aioesphomeapi-46.3.0-cp315-cp315-macosx_11_0_arm64.whl (633.9 kB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

aioesphomeapi-46.3.0-cp315-cp315-macosx_10_15_x86_64.whl (650.1 kB view details)

Uploaded CPython 3.15macOS 10.15+ x86-64

aioesphomeapi-46.3.0-cp314-cp314t-win_amd64.whl (642.2 kB view details)

Uploaded CPython 3.14tWindows x86-64

aioesphomeapi-46.3.0-cp314-cp314t-win32.whl (580.1 kB view details)

Uploaded CPython 3.14tWindows x86

aioesphomeapi-46.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl (762.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

aioesphomeapi-46.3.0-cp314-cp314t-musllinux_1_2_i686.whl (784.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

aioesphomeapi-46.3.0-cp314-cp314t-musllinux_1_2_armv7l.whl (698.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

aioesphomeapi-46.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl (747.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

aioesphomeapi-46.3.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (754.0 kB view details)

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

aioesphomeapi-46.3.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (680.9 kB view details)

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

aioesphomeapi-46.3.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (739.1 kB view details)

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

aioesphomeapi-46.3.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (770.6 kB view details)

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

aioesphomeapi-46.3.0-cp314-cp314t-macosx_11_0_arm64.whl (683.0 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

aioesphomeapi-46.3.0-cp314-cp314t-macosx_10_15_x86_64.whl (687.3 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

aioesphomeapi-46.3.0-cp314-cp314-win_amd64.whl (598.6 kB view details)

Uploaded CPython 3.14Windows x86-64

aioesphomeapi-46.3.0-cp314-cp314-win32.whl (535.8 kB view details)

Uploaded CPython 3.14Windows x86

aioesphomeapi-46.3.0-cp314-cp314-musllinux_1_2_x86_64.whl (753.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

aioesphomeapi-46.3.0-cp314-cp314-musllinux_1_2_i686.whl (780.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

aioesphomeapi-46.3.0-cp314-cp314-musllinux_1_2_armv7l.whl (684.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

aioesphomeapi-46.3.0-cp314-cp314-musllinux_1_2_aarch64.whl (727.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

aioesphomeapi-46.3.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (745.8 kB view details)

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

aioesphomeapi-46.3.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (687.6 kB view details)

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

aioesphomeapi-46.3.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (720.3 kB view details)

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

aioesphomeapi-46.3.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (769.5 kB view details)

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

aioesphomeapi-46.3.0-cp314-cp314-macosx_11_0_arm64.whl (637.1 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

aioesphomeapi-46.3.0-cp314-cp314-macosx_10_15_x86_64.whl (652.2 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

aioesphomeapi-46.3.0-cp313-cp313-win_amd64.whl (585.2 kB view details)

Uploaded CPython 3.13Windows x86-64

aioesphomeapi-46.3.0-cp313-cp313-win32.whl (526.8 kB view details)

Uploaded CPython 3.13Windows x86

aioesphomeapi-46.3.0-cp313-cp313-musllinux_1_2_x86_64.whl (750.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

aioesphomeapi-46.3.0-cp313-cp313-musllinux_1_2_i686.whl (778.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

aioesphomeapi-46.3.0-cp313-cp313-musllinux_1_2_armv7l.whl (692.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

aioesphomeapi-46.3.0-cp313-cp313-musllinux_1_2_aarch64.whl (718.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aioesphomeapi-46.3.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (741.6 kB view details)

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

aioesphomeapi-46.3.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (694.2 kB view details)

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

aioesphomeapi-46.3.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (711.4 kB view details)

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

aioesphomeapi-46.3.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (768.0 kB view details)

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

aioesphomeapi-46.3.0-cp313-cp313-macosx_11_0_arm64.whl (630.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aioesphomeapi-46.3.0-cp313-cp313-macosx_10_13_x86_64.whl (648.1 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aioesphomeapi-46.3.0-cp312-cp312-win_amd64.whl (589.1 kB view details)

Uploaded CPython 3.12Windows x86-64

aioesphomeapi-46.3.0-cp312-cp312-win32.whl (529.1 kB view details)

Uploaded CPython 3.12Windows x86

aioesphomeapi-46.3.0-cp312-cp312-musllinux_1_2_x86_64.whl (754.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

aioesphomeapi-46.3.0-cp312-cp312-musllinux_1_2_i686.whl (784.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

aioesphomeapi-46.3.0-cp312-cp312-musllinux_1_2_armv7l.whl (697.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

aioesphomeapi-46.3.0-cp312-cp312-musllinux_1_2_aarch64.whl (721.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aioesphomeapi-46.3.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (747.3 kB view details)

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

aioesphomeapi-46.3.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (700.9 kB view details)

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

aioesphomeapi-46.3.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (714.6 kB view details)

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

aioesphomeapi-46.3.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (774.7 kB view details)

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

aioesphomeapi-46.3.0-cp312-cp312-macosx_11_0_arm64.whl (636.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aioesphomeapi-46.3.0-cp312-cp312-macosx_10_13_x86_64.whl (653.1 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aioesphomeapi-46.3.0-cp311-cp311-win_amd64.whl (599.3 kB view details)

Uploaded CPython 3.11Windows x86-64

aioesphomeapi-46.3.0-cp311-cp311-win32.whl (535.5 kB view details)

Uploaded CPython 3.11Windows x86

aioesphomeapi-46.3.0-cp311-cp311-musllinux_1_2_x86_64.whl (773.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

aioesphomeapi-46.3.0-cp311-cp311-musllinux_1_2_i686.whl (808.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

aioesphomeapi-46.3.0-cp311-cp311-musllinux_1_2_armv7l.whl (708.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

aioesphomeapi-46.3.0-cp311-cp311-musllinux_1_2_aarch64.whl (746.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aioesphomeapi-46.3.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (766.3 kB view details)

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

aioesphomeapi-46.3.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (707.2 kB view details)

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

aioesphomeapi-46.3.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (740.3 kB view details)

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

aioesphomeapi-46.3.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (797.5 kB view details)

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

aioesphomeapi-46.3.0-cp311-cp311-macosx_11_0_arm64.whl (629.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aioesphomeapi-46.3.0-cp311-cp311-macosx_10_9_x86_64.whl (645.8 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: aioesphomeapi-46.3.0.tar.gz
  • Upload date:
  • Size: 247.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for aioesphomeapi-46.3.0.tar.gz
Algorithm Hash digest
SHA256 574be92b1c38d60b011107ed8ecf56b26fc10751ebc86f8b4188a0133e5b92c6
MD5 da3a2aefca1d3ca44569e57a400d7b4d
BLAKE2b-256 54afecdf53e8b4e09e4851124e1bf4a5fb41121469d04a7935f4e0740a67ffb4

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-46.3.0-cp315-cp315t-win_amd64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-46.3.0-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 4cc02107a670172a6a8d95b79a3b3d7be9ba798cf0906c31b7a6fb7c82646cef
MD5 45732bc19c84e191f96bfd66d52ba36d
BLAKE2b-256 1b3d3ebb5b47d969be4fc062a2ed68a945e4efde4bc54944962d2be743674ad2

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-46.3.0-cp315-cp315t-win_amd64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-46.3.0-cp315-cp315t-win32.whl.

File metadata

File hashes

Hashes for aioesphomeapi-46.3.0-cp315-cp315t-win32.whl
Algorithm Hash digest
SHA256 942a9b2b5db185fe65a977a0dab53e05d90221341053c2afbbb1387ab77fdcd1
MD5 b6f0cf412af560c07e21ce6ad04aae90
BLAKE2b-256 a9ff80dbcb6733255cdccc8a086d9a4a6c45f2b08c8dcc2413037479d61954ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-46.3.0-cp315-cp315t-win32.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-46.3.0-cp315-cp315t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-46.3.0-cp315-cp315t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 107b6f12888c1c36992e93d2d85187318ae187572e9321c7dc16067cf722fa75
MD5 ee9bd494bbedb5a23aa46e6b9f57871f
BLAKE2b-256 07e5b25fc20b4a6d6c99be44323fb7e7493fe796b73ff819c8285533e8f79ebe

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-46.3.0-cp315-cp315t-musllinux_1_2_x86_64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-46.3.0-cp315-cp315t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for aioesphomeapi-46.3.0-cp315-cp315t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d07cd3109a8fc7220c8a00628f31ef8efb8571cd18da1ae2b2ce222cbea252ed
MD5 086822844528c320686a1973d15cd498
BLAKE2b-256 c64664c566383db2ebc34ad615094ce2efd29637efebcefa248625850068a4c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-46.3.0-cp315-cp315t-musllinux_1_2_i686.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-46.3.0-cp315-cp315t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for aioesphomeapi-46.3.0-cp315-cp315t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 33fd3f29486f0c5281442410102b8604177cabbaad78cd7191ef61b9b7a74e97
MD5 fb111b5a31d14c98eaab93759f67704b
BLAKE2b-256 d15bf9bc29686bcf22cca25333bbf7789f793b062e368c4599522d1444ff53c0

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-46.3.0-cp315-cp315t-musllinux_1_2_armv7l.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-46.3.0-cp315-cp315t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-46.3.0-cp315-cp315t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 07612cd5d64be6c913fd44e04f4afbd89a27dd8cf8fe00e4d7d5aafd0afc7343
MD5 dff45602fdc8922b158c70ee2304b388
BLAKE2b-256 cd474a658b5a850e9572bbed8eb17a67e5f141a869a67fa8025480e97dc8ac30

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-46.3.0-cp315-cp315t-musllinux_1_2_aarch64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-46.3.0-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-46.3.0-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 badf5e5b4f839494f0e24a7339e867cd5477490babd6d614486240641dca765e
MD5 aa1f713d5ab9fbc429081c386b411470
BLAKE2b-256 e9bd5668e3f421e4b828016d04d1ae85384a7c816250ad6d7509d255d0a37a54

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-46.3.0-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-46.3.0-cp315-cp315t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for aioesphomeapi-46.3.0-cp315-cp315t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 331e8c639a637af80235ef953faef6967b5437b613678c8aa79572c807473e1b
MD5 4e3930690438856f72929dc3abadf6fe
BLAKE2b-256 9d00121ec8131a2e376fe1cc1eaac0c3f1703278b7186b14b8746854f9570dbf

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-46.3.0-cp315-cp315t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-46.3.0-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-46.3.0-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1db41279e916ce9c7dce1d0f045d09d5b66169a0f263754109fc3a586ba765ff
MD5 553da42297132bcfd7e7145316158220
BLAKE2b-256 3e00bd63518c01ecb3ec30dc2f2e0fc45c935c54c1c67fac464b13c2430b475e

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-46.3.0-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-46.3.0-cp315-cp315t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for aioesphomeapi-46.3.0-cp315-cp315t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 76736bd345987a4f297a8e1ac48ec91951beae5656273e35eb5b52878d3893bd
MD5 33171bbf6225816e6c1f12cff07d3a46
BLAKE2b-256 0a36c822919499a569a2e2c46f7a13d3e8775f6dfcea67295cacbbbe903f33a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-46.3.0-cp315-cp315t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-46.3.0-cp315-cp315t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-46.3.0-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d107cb1a900ce2b589ca52eea8d0cca2138135f4bf5ddcc733852398a2293106
MD5 0214a3d0481d55f1a3c5993ed26acef0
BLAKE2b-256 800df60efa86e4e667514844c6221b94f994a5b4f50c75bbc6198cbffb4c8d87

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-46.3.0-cp315-cp315t-macosx_11_0_arm64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-46.3.0-cp315-cp315t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-46.3.0-cp315-cp315t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 1ed605aa9988295a4fe3d6b2e16d52fbd272cb539689f7a8fb2e92dbc5206639
MD5 302e1101a0daa2d28329a62133716c93
BLAKE2b-256 9f8b176fa2554c256973896b197a8a8d57fa1dd7842fbb2ffde7493feacbf93b

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-46.3.0-cp315-cp315t-macosx_10_15_x86_64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-46.3.0-cp315-cp315-win_amd64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-46.3.0-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 7cbd8ee2e7fab2dd3a331ebd99781a7e8490ea05926f98ca7d5f962859610162
MD5 9889046db7ea81bc6c3b0a60d207e00f
BLAKE2b-256 65f737a3e1d263525de1ec8f61625c5bdc433f25cd6963c018cfa068f5f5dd0d

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-46.3.0-cp315-cp315-win_amd64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-46.3.0-cp315-cp315-win32.whl.

File metadata

  • Download URL: aioesphomeapi-46.3.0-cp315-cp315-win32.whl
  • Upload date:
  • Size: 535.1 kB
  • Tags: CPython 3.15, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for aioesphomeapi-46.3.0-cp315-cp315-win32.whl
Algorithm Hash digest
SHA256 7d9f3fecc2f4f15b2e19e3fac36d71c7e6ac17baa72ff3340c43e463c612b801
MD5 dcf616a9a0ddb83261c7824e84b5a795
BLAKE2b-256 d13a0a4825173277a0d372b14cdf93a73aa2108c348e669c064d1e77e5acaeca

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-46.3.0-cp315-cp315-win32.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-46.3.0-cp315-cp315-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-46.3.0-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cfd71c4f497cc8d2b2afb4e3c93c60c426f539948c570e6f75b1224a5987f6a2
MD5 5ff57ab79e2e3beeaba72594bb36e4ac
BLAKE2b-256 f5126017520496dd06337906c58da6600eb08877833692a76740fff191508a4c

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-46.3.0-cp315-cp315-musllinux_1_2_x86_64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-46.3.0-cp315-cp315-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for aioesphomeapi-46.3.0-cp315-cp315-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d50a23d2bba99711514b8507a9dd731c0dfc26486588b9327891e9e8603ecd4e
MD5 5ad3907a99a1bbefe0aed85bf641b279
BLAKE2b-256 cb9e9a4776ac56faf096705e0dd26ba4d5fc05bcc1e7852af39a810af7305b0b

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-46.3.0-cp315-cp315-musllinux_1_2_i686.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-46.3.0-cp315-cp315-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for aioesphomeapi-46.3.0-cp315-cp315-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7770721b41cbb6761550752812d58718d0a0f22059c4d31e263b0e99aeeb0784
MD5 3cf4c09c455364c4fe94b28a7a8e92f5
BLAKE2b-256 4ea1bb5de33e3a3309ed66175e6a7fe4126661123ddc0030efd4eb1db89a5d8b

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-46.3.0-cp315-cp315-musllinux_1_2_armv7l.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-46.3.0-cp315-cp315-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-46.3.0-cp315-cp315-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b5213da9bca30f2bcb5e1eed5c57d7ab4e77877a054771215c66a37bcbeb7e93
MD5 a6ba64ce2ad3c6bbdaa8b1a00fbc321b
BLAKE2b-256 83e5a22539d5b778c224c947176a5fc1f210f0e49f8d1a98da686bb939e1eb3c

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-46.3.0-cp315-cp315-musllinux_1_2_aarch64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-46.3.0-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-46.3.0-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b9c9098d71a0e1a8f95e1d394eaf00ae921f68aaac756dd5ee18316b7ada3f06
MD5 b7e2d0d80990accf8503ef306c6bd607
BLAKE2b-256 3c84f2ab557ab9b681ca3f8fafe1b1916898d2242dd15e6190cb958bea09ab66

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-46.3.0-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-46.3.0-cp315-cp315-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for aioesphomeapi-46.3.0-cp315-cp315-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 c58ff085e6adaa38f554fad92aba4ccd729191efd4522ff2e99fcc59fd7ca336
MD5 d23e7f3bb205383aeed23222f34300ee
BLAKE2b-256 0baed7adbf136c46c25be76272d5098fe469dd777cff5160e2c9fcdefd1e2914

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-46.3.0-cp315-cp315-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-46.3.0-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-46.3.0-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 42c448337faa2ea1012907cb2bb3dd244c00f4b28189d7371b9cfbbcdefa7200
MD5 82f3be7fb518dddf2ee67f5916ced0eb
BLAKE2b-256 b4ad0c2a45b2f2aefe7d8a0cee7c53856fd027e03bf42f60bbca6dd5e70fb583

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-46.3.0-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-46.3.0-cp315-cp315-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for aioesphomeapi-46.3.0-cp315-cp315-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 6331a2203ec684728fb76e4dc64ec9e96211c7f8267da21238944ddfe891bc20
MD5 d8106ef77ee984a2c5f42fd003469df9
BLAKE2b-256 254f6d7c7edde64fc8c06573365aa39730e748524c59d68e9af6dd4ef513bd71

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-46.3.0-cp315-cp315-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-46.3.0-cp315-cp315-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-46.3.0-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0329b369fb5be19cd2c49e746cadc85ddcda544702f7b3ef5f5b6350ae90ef31
MD5 15543500bce75567bcbd383b91fb434f
BLAKE2b-256 4f104086d2d756b0f92980a67579e0187ca3c24002245c7bc5ace5f99cc98bcf

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-46.3.0-cp315-cp315-macosx_11_0_arm64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

Details for the file aioesphomeapi-46.3.0-cp315-cp315-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-46.3.0-cp315-cp315-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5efb03b9a4444c58a860c4d18e5750ebc062da7dda11f58a7f98d08a8e35ec0e
MD5 1fa04b4a2307abc6b75700b28aae7519
BLAKE2b-256 d4ef98c65b3168694562c94c8d7edd3ddfc3f4e4747800bc251fbc95df3c07da

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-46.3.0-cp315-cp315-macosx_10_15_x86_64.whl:

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.3.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 4506afa00db83bd40846a9b94d733485056605f20086c09e377cc56d9e8bf493
MD5 779aa5076ca4c056670d831839b0b704
BLAKE2b-256 8eed2245b50845e2662c81bb0868c9da506381bd77384d94badc9a2ceb5c51b0

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.3.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 9d66008cae81c2e934890c85ee477d65038deeced60be65a9b40cd533faa5471
MD5 b1e2171dda002931a4bbb4d48ec39a8c
BLAKE2b-256 52fb40a245e219c4ea0bf506f86fc184ea0540c558cf85a2a98a270fc8431805

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d073089f7d92c53e5bf4be6d59f4ca65ba005c5510494691cd07a02ffa43ca7c
MD5 ca299cca36011672d730142d190442ab
BLAKE2b-256 cab04ae0bfa51d05988d100bc6eb7e40c9817d7a1101c602cf6bf95a621990ba

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.3.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1813bf2454a6baf071664585f2827a45fe15f5504dd103910c3aa14dbdc23685
MD5 3a796b730e313c57463c60afbe713144
BLAKE2b-256 3e5950628e25218440b4591ae2304363565809eff6287b4d387c917437883ee0

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.3.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9f56631626e49d9b5b014eaaac61b524737526b6827f4680ca42631046aac517
MD5 1628ce1b2747b5d0bc46b87d3673486d
BLAKE2b-256 38c4a4993069eaa3b3d6b8c286ba5b12e12da66d17612dedb98cddd782e58baa

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ff076cb8b5ddc7c491c489866a328db3de780f494dfd60cc086b8c83e19650f0
MD5 4777087ab77b6f817a03b1596c7f6b66
BLAKE2b-256 63e021cf962d31234844c14cfa9556d2ee6769cedd3486bb686b612865d46588

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.3.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c35840f75c0eee4ec92d86dfcec377b7a2f64b5bf433041796daa841b9cdf430
MD5 e82b8c159630a39617ea591bb32b25f7
BLAKE2b-256 eea654192de8a902ef036b9baa3182a107e0d7d5dd3f75b43afa80b72e0134c4

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.3.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 1139fa23a1ce1b42694d43000b57d076b17b1c3c5889dde98f733aa745c93e5e
MD5 588b4f09b58adf7ac1a218d907dca4d6
BLAKE2b-256 7c72974e4bf3ca191edd2a178c99027645f0f336dcce3b6ed543cd8a937033da

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.3.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a32fb32a3fc4cd201b1df5dbfad3e69a087c95892f06f641dd653796cec5b16c
MD5 bda2b8c074344f56079b7876e20cedeb
BLAKE2b-256 51f8619cb5bd94e41945c9e5c459e3bb25aad00861458d7cbc0238df582f8cdf

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.3.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 07c9c909c8a01371bd6272014e1a06b4b068f9f5711e5938084b9d71056cb0f3
MD5 5f46bdda5ae13c5e577c35558ea7b638
BLAKE2b-256 03bac0a375db66bf46441cb7a163d68f9cba2e539350eb61321d8ce33680b9d2

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.3.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cc987e25789ba3974faba74c47a6ef3b1f1f5b9bec5c41cd657614ed219f443a
MD5 679a56c4b7596e8c088d1aed80e65159
BLAKE2b-256 730a8f4ab9b7f31148bada9c86da9d2b0b06752ec3b84d1c73ecbe7af2d68145

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.3.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 d40129eba86f73e699fa83e888c90ecfd790238f1d923fbc0e3aa071abb329b0
MD5 ebcb84e3eb92fa6303283a76c2a239d9
BLAKE2b-256 86c6aa7afbc68a93fc70aa6197c1e0172a9f5275c36834675a944e5fcdd554a3

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.3.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 74c9728cbd9b7a1f10e7b89709d29f84ff4a9604d99c7bff024d85f7ca7c08f0
MD5 ad4fb5fa3c07b33e3df48f6ff1868372
BLAKE2b-256 bebaf4f1002c742474a497af1b1289ef0621460f6293d1d36c13e75499b07f2a

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

  • Download URL: aioesphomeapi-46.3.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 535.8 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for aioesphomeapi-46.3.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 789ac9ef4c8e8bf3c05aac0b6a5aa436ca0f7b4874cb2a6b376d21f5a228127b
MD5 af35f558c84ff31b66831416de15e6a6
BLAKE2b-256 36615f5bb406e7eb76a7f591ef64c9ecd7f1bcff3b0ccaa9e758eb438b7ff79c

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.3.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7874d18b9ac60f7586137f281d299cfa2c60010723b55c45c77876f71f9af479
MD5 1ecb62a221c95698a90e4c69350e5be6
BLAKE2b-256 c0531399e29d3bc3d0cae9c28c84bb3c8d49f2b2ee72330c9af96e62cbca46e0

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.3.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a7ed526d22cd4a1035e6f0371bb4237b676aeeb2458c766d53b5340d0865d924
MD5 f764b734527d9cf99503031e11325c8b
BLAKE2b-256 bc25601d814dbbb2d2e78d688aba99c71bd7922e19018e47b2ca4890f9f5fafe

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.3.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e7e33678b49618aaf38ebd2078a18af2b897842ef697427203e1312515b2a855
MD5 09638384effe11789dc53068137b60e5
BLAKE2b-256 65681ad8031c2e28c79f7005f68655ea3e618bf782fe78ba630d5bc1853b7978

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.3.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 094931aace52d77495c7fb22f05560233f608590cc60778b9ff2b2be0e47a9f0
MD5 7c75fbbd043ee7ac24589c328d2a0a46
BLAKE2b-256 084e98550985a0c2f1a6a2e130f641c817f20fbb03908bbffb8a55401aa207a4

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.3.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cae2da40b6a5f9c6769821131fafb0564c53b6612b9dbe20986d35c1943755c0
MD5 ba0180c2bf68520c9ad4882a64b9573d
BLAKE2b-256 3060cf29f6ddf90d894cdd2b0bf8c2d3b062033327c2115308b1fbec8d2537de

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.3.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 b0b73dff7bf25e580b93f193e7fe0b114ec5ec22203351833940f91ca845600f
MD5 e53fee7dbf28663579da5a1b7766c5b5
BLAKE2b-256 8a0217dc502b736d36d43dbf32a32b49b3a97cff206f5244d70f54a06b6345c7

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.3.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 844bea34c0acbd1db837d3fdc38f92ca4a933770bbcde8518378ca21e2faebe9
MD5 48347ae1f27921ae9e61ff93e3cee7b8
BLAKE2b-256 8d3cf84b1c8ffef5e4f2a7e15b8d0c85c34b4bfc766a2bbf393a3f86aca2e77b

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.3.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 36521ef444c5abe72d8991fb156126b9e8e37571d8cc1ff6450f2186f57aceb9
MD5 87d5239b437a22cbfc8ac868ef5cedae
BLAKE2b-256 eee4d8da44fb4dbb69eccafe19e367b7e4c0f043d33c9e829a177b639b41b818

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.3.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e0e18829403acb740c683ef56afa3e4c68f8290b541c1ae5b19b34ee665cb53e
MD5 eb9ce179fb814931e2ce158c542c4e86
BLAKE2b-256 60b1e11ac32a6a0af92e06407e2694a5e02e4bf871836ac6baae194a2b39adc7

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.3.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 9c788dd3ccb9c137bb4b6decff7889fede91f3d302c49816d3dfa5f65627cc89
MD5 c1ae4dd270aaffcc9d795443c3d53bca
BLAKE2b-256 7fe4bdc759447e48f9c5d2c42d4e2e0feff8d88a71f96681a8b43fd0aed69d98

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.3.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e0b15d81842615ee83e147588147a46f5c5bd8a1d7b101b2125b2a4454b9078a
MD5 9e2956ce01a02aa758594738ccb60acc
BLAKE2b-256 13bd4550edfd950089d5a8298ea19a8a98b161dbb94a093ff74e81291edeb7d8

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

  • Download URL: aioesphomeapi-46.3.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 526.8 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for aioesphomeapi-46.3.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 032bf22f3415ab690aaa59b6d47f1ab75a7a65fa6747d987733031592a22b714
MD5 b96abf1d99bbbe76b2c2fb738afbb5b1
BLAKE2b-256 635c08e3e63df7d57f59fed278fdd593e4b0ab50c11fce14b9820ea861e317d0

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.3.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fbfbf522a32217cebd25d45096e78baca90cbd03f1cb072df3128e953a5b2eb2
MD5 d73f2403d9e044e313c028dc1b2f9af3
BLAKE2b-256 3a3fb925052ae38fd19e8318daaa191fe458f2916aa9747b7144e47e0bcf66ce

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.3.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 389dce51a91766755e775dc6a9799ad71cda11f600a220e512ecea6ebe8f93c6
MD5 8e6bdde8f00a5d6cda1479b678cb90f5
BLAKE2b-256 d38408af58d7f12a90b0f670782f4d18b61c93e901f3bb184c2dd8016b80e2d8

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.3.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1a079d46283d43c4706cbfbb07d601a505fe905900b2ed93243e87aa6809fa15
MD5 d05edc396314d9ea54014858f53c27ed
BLAKE2b-256 ee33714850499699a71b4cf77d98a348e2f5ea95f8abc5721250c7e37d6e9cd4

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.3.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c1e7c8f8215ca12d5ff2a280a9924b636ab97f4c356e69b17ed65c43d18727eb
MD5 e6e0bf0752d4ddef1c15586c0bf2ccce
BLAKE2b-256 4640559eeeee8be9788996f401f938ab98d52d02d40dd524d73cba8f7686461e

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.3.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dcf3cffba34921a3f33d43269dda32d51bc8625c8369d362617bf721026ee526
MD5 8112ffb058ab922122e421c9a4d66240
BLAKE2b-256 f4719c20f3f891470a88305b143c7ed7fda077fe21198f0451e1b4b4f537f994

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.3.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 a1466108734f9602d4d7059339450c319907d7cd60963f868f5f4000d8ec0f49
MD5 fb09f4cf9fe6d0b68be4c8ec9bbced50
BLAKE2b-256 1c089e2c21616a3d0fe3ba93e285359d394d827449e1db73bd210c011025fc10

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.3.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 03b6b15be028a807f6c985847f61a3d8c8ce2d99c9e4a704a8eb04ef69544cc5
MD5 25e87d76170c1441c0968799d015e3c8
BLAKE2b-256 2fb3e6d8c408ad10eb48e83feec73c0ee1711ca319765723449bbdaeabb551bb

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.3.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 54066d02d7fed1350e65f3f7d338f9db7aeac96bf57ae34538c7ed2a30eac325
MD5 0496d5e7c9a81f23037b46ea8fac819d
BLAKE2b-256 1fb4bb0986916aab372c3da5d93a6dd8b27e86e6aecd8aa362b3a7e8445797e3

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.3.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 04687a737359a0cb78aaa3a9a0c6d2eb53375de96508a6d80c9c723286a784e1
MD5 5b8bfa7ce4981b41c6663dda402e6b3f
BLAKE2b-256 03f6bc6a8f449757f1e74c89c847acd3516a95bf9bc986772f59434b75172b72

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.3.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 bb5a54f98a12add88f5c5b017457650a77c803075e75150e540a392c9fb02ce0
MD5 9b0899bcda0c01ac8bed939edac64f52
BLAKE2b-256 51c0c68750e5d024f64a93459f415919d4f37198dce875fbddd6654f27639eae

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.3.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8ad1acfada9da60bb224dba61c51cacdd409c3cb2ef448996bbb2aa93ca05248
MD5 9fd8422d0a9630c6d710d75096f7c852
BLAKE2b-256 cbfe7a74368ec8d83a9a4dc11a84408e8055a414309461cb6403b8de03879ff4

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

  • Download URL: aioesphomeapi-46.3.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 529.1 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for aioesphomeapi-46.3.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 8799ee56a6dddf5b1ef6fe16b7dc2e841099c8e4bcb9f2bb71872841f470014a
MD5 1b2e6b71c7b5d040871486ee2c036468
BLAKE2b-256 acfde0b4dce97cf33f6c15a44989fb511cfecda3a8068fd1cd24079b38abbad5

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.3.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 025763b89f65574ecc84a60b1c06c13a4cc096b310301b772065f8c56730f7de
MD5 a7243dffa5285f35026dfe907e5c374a
BLAKE2b-256 a5c0e57d024c8630fe8faf278af7980ee15a6c36ef0049bad334f851cb6bf80b

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.3.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 70eb70d9b561dbd075bf103813c213f51b2ce0b1dc9b71dc3755ef3f9d3ac4b1
MD5 800a91d06a51904d4fb90c19efb0f846
BLAKE2b-256 dd13f28981b8c9fc26a990bd461c49caa2391cd6cd778fe91bf48ef77da6447e

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.3.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 945d2b593c582bdf6427e431f31abb1b58271fc07a59fd4c16e0eeb1b8260eea
MD5 02833009e7f1eefeb5df5c71dea89e4e
BLAKE2b-256 e235bfbc6d15d31a4d510600acef90b84ec9c661331109a06365b6935fb0921d

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.3.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ebfc484b909f4020f27ebc50edf15cc8139fec5f648f242514b267f79e289c9a
MD5 411786119b7bb478adc8f82103f8f40b
BLAKE2b-256 c9228042c3f5b918a88662c6ef11e5174e59b215d67ecebddc3c9075fd003aeb

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.3.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2681fd297fd2632b4b63850e0aa28bf6d29f900802503b8a3b5b6618444b6dbb
MD5 6d3f83c4d655ba0bfb0998a5910fec0b
BLAKE2b-256 e4fdd44bd4efe72dded9efa14bdb8f6ffed4f400e9e1074fdf3fad9f3db4bedb

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.3.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 32ef378cff0a4303d6d85c5bf0ecd0561a87e6e8c476f3619b2158b1351f85a7
MD5 b979ded823bca316e1b26f133cd0e842
BLAKE2b-256 4e44b35a2e55cca78e0189347732276bb38f20f6b37227bb2f46771558e30764

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.3.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a7a438a5085786562f2201229a6a1409d3f5ff4fbf3cbce2e201bb28f2a18551
MD5 857220e00bb9607178322ed92e6a9dd9
BLAKE2b-256 63440b7213c22ff849dbe3703e04cf9f2e5793ab854b58ec39d05d59f9593008

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.3.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 98b7fd0f336a97857c7d980f3a3d3330fb3d95fb7d58fb62ea1e9039c53ea1ec
MD5 9e4e4ddd2007f5be49f93bd0d1a31a7e
BLAKE2b-256 391921f7bd3fec4aa52812d3150be4543600e8171039978c6aec39e96eeff599

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.3.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 941c14e28f514245da0807d1f683be6010fac7cc4606feb6588c3087b8f8aa31
MD5 adfb6332b2b1a5fdc3de566e47656bac
BLAKE2b-256 3288e8d12789735219af66cd771fad98e6ddd4f60fac058f334ef1233df38cf0

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.3.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f2b3adb23e3f4552fb9c1ed4188878f796daee4a2ca4469694a0bc4c53ca13f9
MD5 9fc06e7d33a786b9f8eaf9cd6463741b
BLAKE2b-256 2fec57d934acc794ceb8661b5bfcd3491b765676f240630164f7691ddfa4c3f4

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.3.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c2784b1b1779a518fd7611cbe74af96d9c41f88081917e94f219dae77d42834c
MD5 b33b13ed8a683af61af701f83b5c84e6
BLAKE2b-256 70e5ad13b80dc892988c658a0090b92b3440d258e63ca0032538259e9b2e39a7

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

  • Download URL: aioesphomeapi-46.3.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 535.5 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for aioesphomeapi-46.3.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 1423cfd16473c8947f4a3e7890f2d5d09866f32477d3d4fc2933fab57541b2a6
MD5 51827c22752dca592e1c169e771efab1
BLAKE2b-256 6d39af91af6326d880a1ae1cad59e5fdb4f07bff28d2adc37a4f6e5196b1ae89

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.3.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7a0dae117faead1d7119c7c558d7713b51436e8c651caba018d3fdbc1c4a05c7
MD5 74253730df60bd5a8ca6c3ee1dc39e3f
BLAKE2b-256 47b3363cd15b8ac85ca9b408f3e36e00ae4165953ad856fef361e07508512e06

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.3.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fe50b5b2d110651a6f005a55987f5609ef1fa8363e693094f1fc5faa047a321f
MD5 4cd22d3f067b138d7d71e8b0b83d673b
BLAKE2b-256 39a06d212f495a77aa52a7dc523b0ba94f885896e1f78e08fea702bb4db7b439

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.3.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2a83c3342e9296b58bb82d97a00274fee128b10c1a44c50dc66e541cc24815cc
MD5 2088acaa874bf3babac702b652a0979f
BLAKE2b-256 8073bf9c0cdb3056f616c12d9d6abd6901ece28a301ccb2e62db24fb5139b60a

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.3.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 52a75952c6105f241bd3586ad72910df7f65e7d64758137db60f7a15b18b4f4f
MD5 e2628756fe27b92707e2e1cc4ec267bc
BLAKE2b-256 5e4367609aecc2bb594d2498b0a66e524cf4088ac67bad49d536324a3b6fb785

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.3.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 71bf448569a1f0a5cec1c264854054d853f16c23fa635ccf6add49b20f0ac497
MD5 9d73b4b8e462304f3d562f3136723775
BLAKE2b-256 a88a64a54b577d419c60b27644a1d67a5117343f0ba187512d28bf5fdbf6d78d

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.3.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 4284a628fa20f7c7d332644e1145ba6bbc07504cc2090c826c7603e100aff8c7
MD5 fe7358a07c3675d0cdac150c22c2de0f
BLAKE2b-256 2c1626402f7fb092441194d3338baccdcb1968b3cf27670c3c747fdd76a66365

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.3.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 99bf9e95709573de6c26c0981845607c18a2e97f611107ea478522eaeda3365c
MD5 c29bf7a54a67d8da9960e5f4d3610ac5
BLAKE2b-256 e11892d1bd10f683b21a1f9612c63fcfec85bea663ec3aebc8c08c1951dbcb15

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.3.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 3528998f4959249c3a50ea5bf0944f72dca40d7536364c23ca3c9cf469c8635a
MD5 deea38734da2a86c5cacb50691134211
BLAKE2b-256 c66c700c91f9ca69c5cc27b69545b6e83023cb2a43eea9c99f8425e360768d45

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.3.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 87d05bd012c1c3f328902556cb9bf361f59a447182f20574e2c4556852026310
MD5 83e4d2d00e132940184b6ee788b43400
BLAKE2b-256 ed8092d7641eef1c7385f590aa875377294f425ac5c29a8dad5c89007b02ffa7

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

File details

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

File metadata

File hashes

Hashes for aioesphomeapi-46.3.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fa7a61ae21d63b7433503f5b2d130ce2e5c69656f174466b8f83841c0803264b
MD5 3584eeec252cf26a97f627e51867dd95
BLAKE2b-256 7ff03fe8f8f6f0086e358f02dc6f2d6eab2bc683d3833afe998d019461485b8e

See more details on using hashes here.

Provenance

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

Publisher: release.yml on esphome/aioesphomeapi

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

Release history Release notifications | RSS feed

This release

46.3.0 This release

85 files

46.2.1

85 files

46.2.0

85 files

46.1.0

85 files

46.0.0

85 files

45.13.1

85 files

45.12.1

85 files

45.12.0

85 files

45.11.0

85 files

45.10.3

85 files

45.10.2

85 files

45.10.1

85 files

45.10.0

85 files

45.9.0

85 files

45.8.0

85 files

45.7.0

61 files

45.6.2

61 files

45.6.1

61 files

45.6.0

61 files

45.5.2

61 files

45.5.1

61 files

45.3.1

73 files

45.3.0

73 files

45.2.2

73 files

45.2.1

73 files

45.2.0

73 files

45.1.0

73 files

45.0.4

73 files

45.0.3

73 files

45.0.2

73 files

45.0.1

73 files

45.0.0

73 files

44.24.2

73 files

44.24.1

73 files

44.24.0

73 files

44.23.0

73 files

44.22.0

73 files

44.21.0

73 files

44.20.0

73 files

44.19.0

73 files

44.18.0

73 files

44.17.0

73 files

44.16.1

73 files

44.16.0

73 files

44.15.0

73 files

44.14.0

73 files

44.13.3

73 files

44.13.2

73 files

44.13.1

73 files

44.12.0

73 files

44.11.1

73 files

44.11.0

73 files

44.9.1

73 files

44.9.0

73 files

44.8.1

73 files

44.8.0

73 files

44.7.0

73 files

44.6.2

73 files

44.6.1

73 files

44.6.0

73 files

44.5.2

73 files

44.5.1

73 files

44.5.0

73 files

44.4.0

73 files

44.3.1

73 files

44.3.0

73 files

44.2.0

73 files

44.1.0

73 files

44.0.0

73 files

43.14.0

73 files

43.13.0

73 files

43.12.0

73 files

43.11.0

73 files

43.10.1

73 files

43.10.0

73 files

43.9.1

73 files

43.9.0

73 files

43.8.0

73 files

43.7.0

73 files

43.6.0

73 files

43.5.0

73 files

43.4.0

73 files

43.3.0

73 files

43.2.1

61 files

43.1.0

61 files

43.0.0

61 files

42.10.0

61 files

42.9.0

61 files

42.8.0

61 files

42.7.0

61 files

42.6.0

61 files

42.5.0

61 files

42.4.0

61 files

42.3.0

61 files

42.2.0

61 files

42.1.0

61 files

42.0.0

61 files

41.18.0

61 files

41.17.0

61 files

41.16.1

61 files

41.16.0

61 files

41.15.0

61 files

41.14.0

61 files

41.13.0

61 files

41.12.0

61 files

41.11.0

61 files

41.10.0

61 files

41.9.4

61 files

41.9.3

61 files

41.9.2

61 files

41.9.1

61 files

41.9.0

61 files

41.8.0

61 files

41.7.0

61 files

41.6.0

61 files

41.5.0

51 files

41.4.0

51 files

41.3.0

51 files

41.2.0

51 files

41.1.0

51 files

41.0.0

51 files

40.2.1

51 files

40.2.0

51 files

40.1.0

51 files

40.0.2

51 files

40.0.1

51 files

40.0.0

51 files

39.0.1

51 files

39.0.0

51 files

38.2.1

51 files

38.2.0

51 files

38.1.0

51 files

38.0.0

51 files

37.2.5

61 files

37.2.4

61 files

37.2.3

61 files

37.2.2

61 files

37.2.1

61 files

37.2.0

61 files

37.1.6

61 files

37.1.5

61 files

37.1.4

61 files

37.1.3

61 files

37.1.2

61 files

37.1.1

61 files

37.1.0

61 files

37.0.4

41 files

37.0.3

41 files

37.0.2

41 files

37.0.1

41 files

37.0.0

41 files

36.0.1

41 files

36.0.0

41 files

35.0.1

51 files

35.0.0

51 files

34.2.1

51 files

34.2.0

51 files

34.1.0

51 files

34.0.0

51 files

33.1.1

51 files

33.1.0

51 files

33.0.0

51 files

32.2.4

51 files

32.2.3

51 files

32.2.2

51 files

32.2.1

51 files

32.2.0

51 files

32.1.0

51 files

32.0.0

51 files

31.1.0

51 files

31.0.1

51 files

31.0.0

51 files

30.2.0

51 files

30.1.0

51 files

30.0.1

51 files

30.0.0

51 files

29.10.0

51 files

29.9.0

51 files

29.8.0

51 files

29.7.0

51 files

29.6.0

51 files

29.5.1

51 files

29.4.1

51 files

29.4.0

51 files

29.3.2

51 files

29.3.1

51 files

29.3.0

51 files

29.2.0

51 files

29.1.1

51 files

29.1.0

51 files

29.0.2

51 files

29.0.1

46 files

29.0.0

25 files

28.0.1

25 files

28.0.0

10 files

27.0.3

10 files

27.0.2

10 files

27.0.1

10 files

27.0.0

10 files

26.0.0

10 files

25.4.0

10 files

25.3.2

10 files

25.3.1

10 files

25.3.0

10 files

25.2.1

10 files

25.2.0

10 files

25.1.0

10 files

25.0.0

7 files

24.6.2

7 files

24.6.1

7 files

24.6.0

7 files

24.5.0

7 files

24.4.0

7 files

24.3.0

7 files

24.2.0

7 files

24.1.0

7 files

24.0.0

7 files

23.2.0

7 files

23.1.1

7 files

23.1.0

7 files

23.0.0

7 files

22.1.0

7 files

22.0.0

7 files

21.0.3

7 files

21.0.2

7 files

21.0.1

7 files

21.0.0

7 files

20.1.0

7 files

20.0.0

7 files

19.3.1

7 files

19.3.0

7 files

19.2.1

7 files

19.2.0

7 files

19.1.7

7 files

19.1.6

7 files

19.1.5

7 files

19.1.4

7 files

19.1.3

7 files

19.1.2

7 files

19.1.1

7 files

19.1.0

7 files

19.0.1

7 files

19.0.0

7 files

18.5.9

7 files

18.5.8

7 files

18.5.7

7 files

18.5.6

7 files

18.5.5

7 files

18.5.4

7 files

18.5.3

7 files

18.5.2

7 files

18.5.1

7 files

18.5.0

7 files

18.4.1

7 files

18.4.0

7 files

18.3.0

13 files

18.2.7

13 files

18.2.6

25 files

18.2.4

17 files

18.2.3

17 files

18.2.2

17 files

18.2.1

17 files

18.2.0

17 files

18.1.0

17 files

18.0.12

17 files

18.0.11

17 files

18.0.10

17 files

18.0.9

17 files

18.0.8

17 files

18.0.7

17 files

18.0.6

17 files

18.0.5

17 files

18.0.4

17 files

18.0.3

17 files

18.0.2

17 files

18.0.1

17 files

18.0.0

17 files

17.2.0

17 files

17.1.5

17 files

17.1.4

17 files

17.1.3

21 files

17.1.0

2 files

17.0.1

2 files

17.0.0

2 files

16.0.6

2 files

16.0.5

2 files

16.0.4

2 files

16.0.3

2 files

16.0.2

2 files

16.0.1

2 files

16.0.0

2 files

15.1.15

2 files

15.1.14

2 files

15.1.13

2 files

15.1.12

2 files

15.1.11

2 files

15.1.10

2 files

15.1.9

2 files

15.1.8

2 files

15.1.7

2 files

15.1.6

2 files

15.1.5

2 files

15.1.4

2 files

15.1.3

2 files

15.1.2

2 files

15.1.1

2 files

15.1.0

2 files

15.0.1

2 files

15.0.0

2 files

14.1.1

2 files

14.1.0

2 files

14.0.0

2 files

13.9.0

2 files

13.8.0

2 files

13.7.5

2 files

13.7.4

2 files

13.7.3

2 files

13.7.2

2 files

13.7.1

2 files

13.7.0

2 files

13.6.1

2 files

13.6.0

2 files

13.5.1

2 files

13.5.0

2 files

13.4.2

2 files

13.4.1

2 files

13.4.0

2 files

13.3.1

2 files

13.3.0

2 files

13.2.0

2 files

13.1.0

2 files

13.0.4

2 files

13.0.3

2 files

13.0.2

2 files

13.0.1

2 files

13.0.0

2 files

12.2.1

2 files

12.2.0

2 files

12.1.0

2 files

12.0.1

2 files

12.0.0

2 files

11.5.0

2 files

11.4.3

2 files

11.4.2

2 files

11.4.1

2 files

11.4.0

2 files

11.3.0

2 files

11.2.0

2 files

11.1.1

2 files

11.1.0

2 files

11.0.0

2 files

10.14.0

2 files

10.13.0

2 files

10.12.0

2 files

10.11.0

2 files

10.10.0

2 files

10.9.0

2 files

10.8.2

2 files

10.8.1

2 files

10.8.0

2 files

10.7.0

2 files

10.6.0

2 files

10.5.0

2 files

10.4.0

2 files

10.3.0

2 files

10.2.0

2 files

10.1.0

2 files

10.0.3

2 files

10.0.2

2 files

10.0.1

2 files

10.0.0

2 files

9.1.5

2 files

9.1.4

2 files

9.1.3

2 files

9.1.2

2 files

9.1.1

2 files

9.1.0

2 files

9.0.0

2 files

8.0.0

2 files

7.0.0

2 files

6.1.0

2 files

6.0.1

2 files

6.0.0

2 files

5.1.1

2 files

5.1.0

2 files

5.0.1

2 files

5.0.0

2 files

4.1.0

2 files

4.0.1

2 files

4.0.0

2 files

3.1.0

2 files

3.0.1

2 files

3.0.0

2 files

2.9.0

2 files

2.8.0

2 files

2.7.0

2 files

2.6.6

2 files

2.6.5

2 files

2.6.4

2 files

2.6.3

2 files

2.6.2

2 files

2.6.1

2 files

2.6.0

2 files

2.5.0

2 files

2.4.2

2 files

2.4.1

2 files

2.4.0

2 files

2.3.0

2 files

2.2.0

2 files

2.1.0

2 files

2.0.1

2 files

2.0.0

2 files

1.8.0

2 files

1.7.0

2 files

1.6.0

1 file

1.5.0

1 file

1.4.2

1 file

1.4.1

1 file

1.3.0

1 file

1.2.0

1 file

1.1.0

1 file

1.0.0

1 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