Skip to main content

Python API for interacting with ESPHome devices.

Project description

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:
  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, "MyPassword")
    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."""
    cli = aioesphomeapi.APIClient("api_test.local", 6053, "MyPassword")

    await cli.connect(login=True)

    def change_callback(state):
        """Print the state changes of the device.."""
        print(state)

    # Subscribe to the state changes
    cli.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 a protobuf compiler installation)
$ script/gen-protoc

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.

Project details


Release history Release notifications | RSS feed

Download files

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

Source Distribution

aioesphomeapi-34.1.0.tar.gz (118.9 kB view details)

Uploaded Source

Built Distributions

aioesphomeapi-34.1.0-cp313-cp313-musllinux_1_2_x86_64.whl (615.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

aioesphomeapi-34.1.0-cp313-cp313-musllinux_1_2_i686.whl (635.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

aioesphomeapi-34.1.0-cp313-cp313-musllinux_1_2_armv7l.whl (570.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

aioesphomeapi-34.1.0-cp313-cp313-musllinux_1_2_aarch64.whl (592.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aioesphomeapi-34.1.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (609.1 kB view details)

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

aioesphomeapi-34.1.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (567.1 kB view details)

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

aioesphomeapi-34.1.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (586.7 kB view details)

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

aioesphomeapi-34.1.0-cp313-cp313-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl (613.3 kB view details)

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

aioesphomeapi-34.1.0-cp313-cp313-macosx_11_0_arm64.whl (468.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aioesphomeapi-34.1.0-cp313-cp313-macosx_10_13_x86_64.whl (496.8 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aioesphomeapi-34.1.0-cp312-cp312-musllinux_1_2_x86_64.whl (620.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

aioesphomeapi-34.1.0-cp312-cp312-musllinux_1_2_i686.whl (640.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

aioesphomeapi-34.1.0-cp312-cp312-musllinux_1_2_armv7l.whl (572.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

aioesphomeapi-34.1.0-cp312-cp312-musllinux_1_2_aarch64.whl (598.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aioesphomeapi-34.1.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (615.6 kB view details)

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

aioesphomeapi-34.1.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (572.5 kB view details)

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

aioesphomeapi-34.1.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (594.3 kB view details)

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

aioesphomeapi-34.1.0-cp312-cp312-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl (618.3 kB view details)

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

aioesphomeapi-34.1.0-cp312-cp312-macosx_11_0_arm64.whl (474.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aioesphomeapi-34.1.0-cp312-cp312-macosx_10_13_x86_64.whl (503.4 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aioesphomeapi-34.1.0-cp311-cp311-musllinux_1_2_x86_64.whl (635.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

aioesphomeapi-34.1.0-cp311-cp311-musllinux_1_2_i686.whl (664.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

aioesphomeapi-34.1.0-cp311-cp311-musllinux_1_2_armv7l.whl (582.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

aioesphomeapi-34.1.0-cp311-cp311-musllinux_1_2_aarch64.whl (617.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aioesphomeapi-34.1.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (629.9 kB view details)

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

aioesphomeapi-34.1.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (580.9 kB view details)

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

aioesphomeapi-34.1.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (612.0 kB view details)

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

aioesphomeapi-34.1.0-cp311-cp311-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl (640.3 kB view details)

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

aioesphomeapi-34.1.0-cp311-cp311-macosx_11_0_arm64.whl (477.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aioesphomeapi-34.1.0-cp311-cp311-macosx_10_9_x86_64.whl (503.5 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

aioesphomeapi-34.1.0-cp310-cp310-musllinux_1_2_x86_64.whl (627.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

aioesphomeapi-34.1.0-cp310-cp310-musllinux_1_2_i686.whl (659.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

aioesphomeapi-34.1.0-cp310-cp310-musllinux_1_2_armv7l.whl (575.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

aioesphomeapi-34.1.0-cp310-cp310-musllinux_1_2_aarch64.whl (608.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

aioesphomeapi-34.1.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (619.8 kB view details)

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

aioesphomeapi-34.1.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (572.4 kB view details)

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

aioesphomeapi-34.1.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (602.9 kB view details)

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

aioesphomeapi-34.1.0-cp310-cp310-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl (637.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

aioesphomeapi-34.1.0-cp310-cp310-macosx_11_0_arm64.whl (471.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

aioesphomeapi-34.1.0-cp310-cp310-macosx_10_9_x86_64.whl (497.4 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

aioesphomeapi-34.1.0-cp39-cp39-musllinux_1_2_x86_64.whl (632.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

aioesphomeapi-34.1.0-cp39-cp39-musllinux_1_2_i686.whl (665.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

aioesphomeapi-34.1.0-cp39-cp39-musllinux_1_2_armv7l.whl (579.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

aioesphomeapi-34.1.0-cp39-cp39-musllinux_1_2_aarch64.whl (614.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

aioesphomeapi-34.1.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (625.5 kB view details)

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

aioesphomeapi-34.1.0-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (577.5 kB view details)

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

aioesphomeapi-34.1.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (609.0 kB view details)

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

aioesphomeapi-34.1.0-cp39-cp39-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl (640.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

aioesphomeapi-34.1.0-cp39-cp39-macosx_11_0_arm64.whl (475.9 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

aioesphomeapi-34.1.0-cp39-cp39-macosx_10_9_x86_64.whl (501.6 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: aioesphomeapi-34.1.0.tar.gz
  • Upload date:
  • Size: 118.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for aioesphomeapi-34.1.0.tar.gz
Algorithm Hash digest
SHA256 d6b08c90e7269b0dd538f3356796b9aef1890cf7e5582cd849575832d5a74664
MD5 4b5bce23728eb98095067dca4efcda67
BLAKE2b-256 a974a18db0c110313eb21c176185768e7ff67798d38b1a20e8df8473aa10f988

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-34.1.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-34.1.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-34.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ef91ad56fc4136157636043b62f7b0be5e9b329f3fd7f001f4198427fa75f96c
MD5 e1443887f1b41ebf1d8a2d498071fa92
BLAKE2b-256 b16950f23368ddb8598b008d75adee304566219c36eb549e4bb4b75dfa58b7b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-34.1.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-34.1.0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for aioesphomeapi-34.1.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 be31e2f424df886f98ba0a08e7ec579c2ae5b9bdf5a63db4cc3b05e1a6132c28
MD5 3c900746f4b1bd378fc2727e91677b6e
BLAKE2b-256 29df160256521086471fa7d2a7da98b18c2917a0716d5c1dfe8992868cbd0784

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-34.1.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-34.1.0-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for aioesphomeapi-34.1.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 69e0c51f04a98453a9e3030aeed6a38166724ae3c76bd802b529623ae88555cf
MD5 f2c175341780d1c903744d68b3fe0279
BLAKE2b-256 6033f227cec82ee42b2849b68d71c61225ee9b5a00601771915284371403bebc

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-34.1.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-34.1.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-34.1.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8f91bcb779072daf7995e567f2535c96d28fa69a9ab97a910d5f0e0109378074
MD5 ace8309b678239787b37f7d1815174aa
BLAKE2b-256 e2e288e412c71bb2eecec4190c3175ba163b7035e3bdeb37a7d56136ae45abd8

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-34.1.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-34.1.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-34.1.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e53d676bf285c4adb6586362fb427c42a67efad307de8648a83a94245d88301f
MD5 e8700121d8f05cf45c1a7d3ac7171093
BLAKE2b-256 49dedd12ee3d99a754bf559f82323de687d600f0f6ea948b1d080cfdfdc4b12f

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-34.1.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-34.1.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for aioesphomeapi-34.1.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 60133b19edec11cf025cba418b2eb0731974a437c7de1dba610e731e47e6deb7
MD5 47bbe91ead0997b36feac752a5a862c2
BLAKE2b-256 7c70ce3126d7b2bdcf47ab7f7ff5d48d407f60422404239e0e7d65d7683a3b73

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-34.1.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-34.1.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-34.1.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1ba9d58beb554fc9713366dba9d606e50f8e5795cede08c13e61da84371ad638
MD5 9092bab27cfa45a1e03590e70104f0fe
BLAKE2b-256 079887ef0e745bd482b163dadd5b7aa53695faa4df07f6f59d2b4692d7fa77db

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-34.1.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-34.1.0-cp313-cp313-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for aioesphomeapi-34.1.0-cp313-cp313-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 40cc45532e90a843ad58f74afd7b930574eedfa664f0faa058521df6e386894d
MD5 d4b128c6e42a374c9e3108a6b9ee4ed8
BLAKE2b-256 e8ea6925e7b70782e091700d8e87957adc78b0f23d5b8cb4e8f534013540c227

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-34.1.0-cp313-cp313-manylinux1_i686.manylinux2014_i686.manylinux_2_17_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-34.1.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-34.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 adb0c676895bc277719b5fb21d6774487eaae4671d054ba4f5ce710c4813b1aa
MD5 8fe178be16aade7a9a55b264de34c0af
BLAKE2b-256 b4a9ba0bad297c7a442378d43e2408a3b9d0932bcfaaf9235dbfce299aac78f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-34.1.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-34.1.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-34.1.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 06bcc287ee6914bb6d74d4331761fbe6d5ecac07f9be21f9d01d53f8841b1dd8
MD5 eb40fde546ec6eb384bee93ef81f64d1
BLAKE2b-256 c852a513c70a5e44870d8c5e63d0ed644776077456e5a31dc4a30e7b2035ccad

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-34.1.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-34.1.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-34.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6d6a4ed9f251e211817397ba4d2c45c1c6ca5caa5635abc5093d901154f746d1
MD5 6658406c5e21c246f18734433a02a230
BLAKE2b-256 c88b42dcf84607bb99fb24fb172d346c3dae2ea9515e8a68e83af12995a1c32d

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-34.1.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-34.1.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for aioesphomeapi-34.1.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e5f52373d6d362352c9ca3ee7dfcb3adc072d289a1f602cdbc938e16276b2689
MD5 09864468276d5ba83096763033cb5e0f
BLAKE2b-256 d30f7fc61c214249e8c345e71b7472018cb40848a3b693ec3d9664248cba5761

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-34.1.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-34.1.0-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for aioesphomeapi-34.1.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d9a4a5d01e0bf05815544a988e0bbb957d4d2c1085f255904edf39a4bdb4408f
MD5 d0ba634c7172579d06a9f668a1be2122
BLAKE2b-256 a97f8d37f9cca8b6497add1ae8f629ec356331598b669be3f3bdb2cb1b49a88c

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-34.1.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-34.1.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-34.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d127d01c370d862e1129ec552660d0631d76de7af31121e57148e1f06f7e783d
MD5 e62cec7527c514fe8ec0e705f4e7dd7f
BLAKE2b-256 1c0d41dfaa5decdb23149545899b88ed40fcaf9181323e30443a72b4917c0d36

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-34.1.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-34.1.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-34.1.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8045fad43b746723c4c1a069988a45ffaf586ecfee69ecc142e9d2190e7881af
MD5 bdefe6e16675833091b1258963849f40
BLAKE2b-256 c8399ee37e03a7413c55fe6ee12c021cdd62878f04b0e8232ed413ffb7a352d2

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-34.1.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-34.1.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for aioesphomeapi-34.1.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 3ddf40d7029401d29b2913d430c63278b2441eb8d433917c09dead8f1c61f94a
MD5 7385bea8c1f6468c402d618a71a36eae
BLAKE2b-256 ff5886f526c1f6b68a688c236b2338213c91aaeac4e3f4353cfd2beefe56b789

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-34.1.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-34.1.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-34.1.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9b523be263ee94e7a462ffaa72828b0923e06db90ad28198a1375a7a6c531eda
MD5 7a6a27b5286ad99c34e238fe494209d2
BLAKE2b-256 6d7e3698e89d6b7ec210ace7e1492270dd4d12f700247832aeb923bad35b02cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-34.1.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-34.1.0-cp312-cp312-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for aioesphomeapi-34.1.0-cp312-cp312-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 ba71e0626bd1cba2c494df748aab613a8524a9e81cef251f5de0d648b146d199
MD5 661e17567eef7190c3273525b0906f68
BLAKE2b-256 261db4c25b07b9190bffb599c58e0432a678a4bbb098471178df04153cb42f84

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-34.1.0-cp312-cp312-manylinux1_i686.manylinux2014_i686.manylinux_2_17_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-34.1.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-34.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1ecb084818a963f47de7e3e499353940eb26a007e0077d3fc1350ad89b88e00e
MD5 b3dc82bbea9ab7f3cd294dafd63820a6
BLAKE2b-256 3a5eef5424d8be59244e536dd138147b113b0b786c7a2edff2b65c9bcf3c1b92

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-34.1.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-34.1.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-34.1.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 06b16deeaba84faa2bfcb0e7365c0c7e3d66547f832c1de54de130033295fef3
MD5 e1860716c8bac4893ab5c323fbbeb0b9
BLAKE2b-256 c5e00720896b58ae111f57100d7d95e3f45a9fed519cc258dd629327e11b4a29

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-34.1.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-34.1.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-34.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4299c2ec954652bbb7a092754696214319881e5e28011c25d97cfb1727fe8f72
MD5 e562e36b7e53092fa87c94c79942e32f
BLAKE2b-256 4a2e1ed85f6841da0573c96d03eff029908be1b95003267ed3bb7adfb93facb9

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-34.1.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-34.1.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for aioesphomeapi-34.1.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6cb6e4b42098da3ee3ac05b34964571a6e429c6d26768c3e9bf1b108a13201dd
MD5 ad5702066407488767ea9d77d44f4c2c
BLAKE2b-256 824166773cdbd1fd62600ce898650e1387e04848d5faf4c6670fc9b223a3ff55

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-34.1.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-34.1.0-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for aioesphomeapi-34.1.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9d5b244c4e61c892fcdf8ea0b01483f41ce172ca766220087b16e9cd3c0e2dc4
MD5 76d6f98ff407035d061ab7549ea07c01
BLAKE2b-256 b19315134329bbac6dcd66c54699abe67da4cbf355b9cf676474bf713c5de5cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-34.1.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-34.1.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-34.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7bbd786209f1266da575b1e483921dabc8eff25c1d9b1267f10aa63ad5736cc3
MD5 e1f79b72fe90a2a8aab9f60f33a4ba69
BLAKE2b-256 287e0371e772114d1ed593a1b6fbf9df42e244e9dad74584ce2a94e0ea3397bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-34.1.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-34.1.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-34.1.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1f43430613633e8e87b214d1eb545e81e24face6886033566e85f9af228e4b8d
MD5 4d9b40bd414f675a7a54e63460792f67
BLAKE2b-256 0e188bf99f8c54df18903db4d9f0b6d4a8d9ad28220a4cb2efa570a5ea33cfa9

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-34.1.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-34.1.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for aioesphomeapi-34.1.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 38950d1748062e6ddb2b9df88ebe6337db033c68b04fbf7a38a32b29de743131
MD5 ae8e7cee1ac86960b645e12f13a7e32a
BLAKE2b-256 ec0f04d209455378c1729912a5d6e38ba9c311b8d4f02dcb4883cb411dae7ce3

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-34.1.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-34.1.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-34.1.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7262ea00d4c26ba474628e94fc3f48d6cdb4cdbd0db3a665d48f2808e65d6d40
MD5 c2eec3c4934b4e8db15a473dd796ca98
BLAKE2b-256 54a8f99e61ff435cb67b859bb6b6173961a15d10e507dd8ed98be25e985cff1d

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-34.1.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-34.1.0-cp311-cp311-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for aioesphomeapi-34.1.0-cp311-cp311-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 17e2aa77ffb587817bafef65c9cc4a95e7397f3d21a27434360ce0c545db8d47
MD5 87a6a9774f5a1311126160ebf8c09a8f
BLAKE2b-256 1212ce19b221c13912fc8b2daa9094d70862f00f84acd928ccc542dbc1b6c72d

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-34.1.0-cp311-cp311-manylinux1_i686.manylinux2014_i686.manylinux_2_17_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-34.1.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-34.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a6cac582eaf19f285781ebf6b3395dccfb42c2896cf4f0c926f023f2ff3994c7
MD5 785780d7024d3f19733a824f15d2b108
BLAKE2b-256 1b021fc5c98f778cc21bda7550a8a5b04add581648716b78a83ba5e4b503984a

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-34.1.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-34.1.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-34.1.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 93be78ca28d7a76d5a66649cc0d3c13f70c1542f03a175986672ee66928c67a5
MD5 4debe0607e9cc86b322254e46fd1478a
BLAKE2b-256 e1a62c8ae3dda5a762701dae148c70722934454d7b839ae54d0ded801615c27b

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-34.1.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.

File details

Details for the file aioesphomeapi-34.1.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-34.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a3c4162a7fbe4e80cd19dc599318eb95a4225f9cc30415d3101685a65cd29f0e
MD5 9255cf7f7447ae4a3615231ced9be5f6
BLAKE2b-256 0ce6319866d46cbaa6312e721bd753d47f945f15a01c090ea65bf62200bc3b45

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-34.1.0-cp310-cp310-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-34.1.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for aioesphomeapi-34.1.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7b784fa8a38f75cd55a595b4dfdc0e049e1f6cb7db646774b1d4ced5cbb8c56e
MD5 2a65ec9487bce7b6b37bfdbc6da9523e
BLAKE2b-256 277acd995760f5d8f32accbce762e58feaf535b0c5e95d5aa134703fe0b84e99

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-34.1.0-cp310-cp310-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-34.1.0-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for aioesphomeapi-34.1.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 437c240f0eb34b611fe4ea4aa6e33aeab5ce07526a9ce790a38420c3ebfcde3d
MD5 3724b4783f2613727ada1dcb6021f08e
BLAKE2b-256 9a3189b798ba1ebfbbb25f2ada2bc2a6a2e7970694de7ad3ceb74f2e916e3474

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-34.1.0-cp310-cp310-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-34.1.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-34.1.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1c2c9a54e92e991712ea18d4de86a935232b9259d338be87d5c95ae48e57962d
MD5 0257487a977da9816df0bde9b176547d
BLAKE2b-256 bb72f56f43a9d230c15e5e8fa174adfadbeda4b2facbfafb0f8624b4d32f7eb3

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-34.1.0-cp310-cp310-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-34.1.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-34.1.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 caa1065e45be98639a369300c499a2c4f828f5a7b61d460c685fd247ef6aa56c
MD5 5376ff4f475a8f9e58d2b3fa1dc65fce
BLAKE2b-256 4a662d4c565c5eb70b42e20919ce83500917c30ad1a081f24b77ac4a0bb5c3d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-34.1.0-cp310-cp310-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-34.1.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for aioesphomeapi-34.1.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 8afda182d85de6408b17b111c290000137e7a0d757ca4a4a352d4b3288eba6b0
MD5 a0537044e542e7b15525092169fe0353
BLAKE2b-256 90e140df51e621ce12c047ae552abd6c986b97a1949e2afea86af43420833840

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-34.1.0-cp310-cp310-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-34.1.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-34.1.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 67400c4949d998d311b67551cd8fd568e07df89dbfd82028ed7bf8db24d369f4
MD5 93beff05ab03b6d0b3bf306596d69741
BLAKE2b-256 eb963e6b4671036a74b0e899d22a7681e4e6726b1f34bd1210346825f77f7e69

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-34.1.0-cp310-cp310-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-34.1.0-cp310-cp310-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for aioesphomeapi-34.1.0-cp310-cp310-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 b823a9743f3bcd769f1d2787166909c39b877751ec3624f9cf813cdd892e84b7
MD5 8594fe7713810a7fccfb40043b8c85c0
BLAKE2b-256 a7236fbae90b9adc7d8e71228b099760ddae392d062a4a4b0db3f271c6179db9

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-34.1.0-cp310-cp310-manylinux1_i686.manylinux2014_i686.manylinux_2_17_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-34.1.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-34.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 db4af9430581e490f6f451b45166ffc00293630b960519175dbc32ce932818cf
MD5 b85fd80dc80f0f06d8fe211791c116e7
BLAKE2b-256 ab84d173d151072bf1fa9a32e6428f85b4dac698c03a66073cc41387a5092b11

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-34.1.0-cp310-cp310-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-34.1.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-34.1.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f37ce408bea1d7fff7748b8e1f2fcbdfcd0ee87a362ef0d4127c60cf0514135e
MD5 dd27d679cd602463d8bc8b1c08e6565f
BLAKE2b-256 6656341e02c5b453d495eb1d39b40f07e1e72bacdca00a520ac899148c99fe1d

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-34.1.0-cp310-cp310-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.

File details

Details for the file aioesphomeapi-34.1.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-34.1.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dd0bedc95a47d97901044adf7dae9da4382a750d27ea6bfff20af96efaccee7c
MD5 a188571ac7765aba8cfd59f3b6aa9424
BLAKE2b-256 2a7261929c2161c3eed5cc4eda2ebb66cfa0393533057b47f0d50036854f23fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-34.1.0-cp39-cp39-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-34.1.0-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for aioesphomeapi-34.1.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3209e7775bae49f286e9656288d80df44f186724ad75e305945877cdcf4f9911
MD5 0f9c056f21f1e0ba409a107d2a512f84
BLAKE2b-256 9b0e3cbc5e8e4772013ccceb389a76233105072f99d1c5aa8dbaa3466dfc3082

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-34.1.0-cp39-cp39-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-34.1.0-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for aioesphomeapi-34.1.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1c8da0dda1f96d8b31fad128f678eea3595fd1d32e164fa34a1cb903a15f3139
MD5 f1360a6b8bb5f37c435b1062491f6c98
BLAKE2b-256 beb55d5c604909e526b0e2c1e94533f7d0422cd1d5a61020494588abf8bfa5e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-34.1.0-cp39-cp39-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-34.1.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-34.1.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8e51ed2204372345416259d7eade53a8b32363bc89c4c97e646c5988e50c76df
MD5 052f2c5db6239f7549f6e1e68b6955a2
BLAKE2b-256 392e8d22d9fab2292b83722a37faa5fd23034c7a427cf4854712729daafd520f

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-34.1.0-cp39-cp39-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-34.1.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-34.1.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ca220077948d6f405586ee48a05dec690c9b42e763f787b60457662800a6ea33
MD5 9813240b45ba6d60aaba2a0a828d4c43
BLAKE2b-256 95f303b85e90f4e48ec9fa896dfb9950e6dfde227fd03534d929bcbbb1dbcfff

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-34.1.0-cp39-cp39-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-34.1.0-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for aioesphomeapi-34.1.0-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 99664aeafe81ff1123c8add03b70cfecf64cfa54beb58245ee49c99bd5d92785
MD5 4fa5de695ebfe10b6da4112e9f3b5f4a
BLAKE2b-256 900e4e3c5272191e388197bb7f35c4bbcb95995f384513a27c72ce38748b1d53

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-34.1.0-cp39-cp39-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-34.1.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-34.1.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4303718c73d8b24b763b32982c45958d6dc4ca9ed63d6d86d8d83a082186df29
MD5 08254a488a6b5a5f196d94415b83665f
BLAKE2b-256 2d5a278c11d763a5fa46e89bfbcf08a5511479cd8c09aaa3e7841b8573ba0f68

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-34.1.0-cp39-cp39-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-34.1.0-cp39-cp39-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for aioesphomeapi-34.1.0-cp39-cp39-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 d8aa43f6b5a95ba17d2dbd72e3131fb356cea20938d53497b81fc48eb693e0c9
MD5 7c8860ca38a7691861c4ea0c1cfe8651
BLAKE2b-256 db131169bf14d17f6a317d86cc9fdc87be5c6bf7ed23672a54a84a57f0f0a7a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-34.1.0-cp39-cp39-manylinux1_i686.manylinux2014_i686.manylinux_2_17_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-34.1.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-34.1.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e439dac3a152364d2230ede9748a41c86aed47a8083e23d625801e4a053ffef7
MD5 78b747f7e4273c4041cacb72f620e161
BLAKE2b-256 4c17bda981b683f2dbab0fb24b2a6470c2e705047db9f4efe4555bcc154f6b0d

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-34.1.0-cp39-cp39-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-34.1.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for aioesphomeapi-34.1.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fc8721d96f760c6353c56698bd03ab6c9ab8d01eb1ba6ea02958cb23421c9ce8
MD5 54c3c7bc53ffa12189f34d742c467460
BLAKE2b-256 6bf163ce4949d45cedcfe64d2caa76963a619af4258fd4237861e869d1797bb1

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioesphomeapi-34.1.0-cp39-cp39-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.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page