Skip to main content

espp

Python bindings for the cross-platform components of espp — a collection of C++ components originally built for ESP32 / ESP-IDF development, many of which are pure, portable C++ and useful on the desktop as well.

The bindings are generated with pybind11 and expose real native threads, sockets, and protocol implementations — unlike Python threading, an espp.Task or espp.Timer runs on a real OS thread.

Installation

pip install espp

Or straight from the repository:

pip install git+https://github.com/esp-cpp/espp.git

Building from source requires CMake (>= 3.20) and a C++20 compiler.

What's included

  • Task / Timer: native-threaded tasks and periodic timers with callbacks
  • Sockets: UDP / TCP client & server helpers (unicast & multicast)
  • RTSP: client & server with MJPEG / H.264 (de)packetizers
  • RTPS: minimal RTPS participant for DDS interop (e.g. with embedded espp nodes)
  • CDR: OMG Common Data Representation reader / writer
  • COBS: consistent overhead byte stuffing encoder / decoder (incl. streaming)
  • Serialization: alpaca-based binary serialization
  • Math: vectors, Bézier curves, range mapping, fast approximations, filters (lowpass, Butterworth, ...), PID
  • Utilities: logger, event manager, state machine, FTP, joystick, color, ...

The package ships complete type stubs (py.typed), so you get full autocompletion and type checking in your editor.

Quick example

import time
import espp

def task_fn():
    print("hello from a native thread!")
    time.sleep(0.5)
    return False  # don't stop the task

task = espp.Task(task_fn, espp.Task.BaseConfig("example task"))
task.start()
time.sleep(2)
task.stop()

More example scripts live in the python/ folder of the repository.

Links

Download files

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

Source Distribution

espp-1.1.7.tar.gz (4.4 MB view details)

Uploaded Source

Built Distributions

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

espp-1.1.7-cp314-cp314-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.14Windows x86-64

espp-1.1.7-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.1 MB view details)

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

espp-1.1.7-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (993.0 kB view details)

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

espp-1.1.7-cp314-cp314-macosx_11_0_universal2.whl (1.7 MB view details)

Uploaded CPython 3.14macOS 11.0+ universal2 (ARM64, x86-64)

espp-1.1.7-cp313-cp313-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.13Windows x86-64

espp-1.1.7-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.1 MB view details)

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

espp-1.1.7-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (990.9 kB view details)

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

espp-1.1.7-cp313-cp313-macosx_11_0_universal2.whl (1.7 MB view details)

Uploaded CPython 3.13macOS 11.0+ universal2 (ARM64, x86-64)

espp-1.1.7-cp312-cp312-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.12Windows x86-64

espp-1.1.7-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.1 MB view details)

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

espp-1.1.7-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (990.9 kB view details)

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

espp-1.1.7-cp312-cp312-macosx_11_0_universal2.whl (1.7 MB view details)

Uploaded CPython 3.12macOS 11.0+ universal2 (ARM64, x86-64)

espp-1.1.7-cp311-cp311-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.11Windows x86-64

espp-1.1.7-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.1 MB view details)

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

espp-1.1.7-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (987.8 kB view details)

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

espp-1.1.7-cp311-cp311-macosx_11_0_universal2.whl (1.7 MB view details)

Uploaded CPython 3.11macOS 11.0+ universal2 (ARM64, x86-64)

espp-1.1.7-cp310-cp310-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.10Windows x86-64

espp-1.1.7-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.1 MB view details)

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

espp-1.1.7-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (987.2 kB view details)

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

espp-1.1.7-cp310-cp310-macosx_11_0_universal2.whl (1.7 MB view details)

Uploaded CPython 3.10macOS 11.0+ universal2 (ARM64, x86-64)

File details

Details for the file espp-1.1.7.tar.gz.

File metadata

  • Download URL: espp-1.1.7.tar.gz
  • Upload date:
  • Size: 4.4 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for espp-1.1.7.tar.gz
Algorithm Hash digest
SHA256 1bb1b893983ff41144f92800d75b489fb5c852076f23c1bc5a469eafc6511b40
MD5 f203b7e3e7c5fb7b740646732c74ab08
BLAKE2b-256 3d0cad60771fb16b09ff873c2ba7d361bd06c9112d04d45dba30e0efce40a38e

See more details on using hashes here.

Provenance

The following attestation bundles were made for espp-1.1.7.tar.gz:

Publisher: build_wheels.yml on esp-cpp/espp

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

File details

Details for the file espp-1.1.7-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: espp-1.1.7-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for espp-1.1.7-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 465cea3e07720f5607caebdffc9e975bcfe336b52d5d20a55261a4c195c5e615
MD5 1f3230770b7682d07e50d7a6bf150ca7
BLAKE2b-256 0a0826aab69b72a871e4d9c6277a17353f57efed76a7b667b1ea57e39519f91e

See more details on using hashes here.

Provenance

The following attestation bundles were made for espp-1.1.7-cp314-cp314-win_amd64.whl:

Publisher: build_wheels.yml on esp-cpp/espp

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

File details

Details for the file espp-1.1.7-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for espp-1.1.7-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 096f5857b886c3b02663203617e35bc4fd2990b948b1e92bdef6dd52c921aedf
MD5 28f1d0fd90bdd91707a96056acf58795
BLAKE2b-256 28a1d29f974efb6838730631c30e2575b92d4917dbffdf4695d66247e0703beb

See more details on using hashes here.

Provenance

The following attestation bundles were made for espp-1.1.7-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on esp-cpp/espp

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

File details

Details for the file espp-1.1.7-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for espp-1.1.7-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bbcab20f970473bb8f8b90cb74fc6aeb70e509e685daa783c139acbc4f8fb236
MD5 463d2ec3eb82fe9637310a341ce22304
BLAKE2b-256 d5376780cbcab2a172b0301755961f7abc8c918ab2678f9baedc834d493d5d18

See more details on using hashes here.

Provenance

The following attestation bundles were made for espp-1.1.7-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on esp-cpp/espp

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

File details

Details for the file espp-1.1.7-cp314-cp314-macosx_11_0_universal2.whl.

File metadata

File hashes

Hashes for espp-1.1.7-cp314-cp314-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 ec103497b9a44568cb7ee2c5dd07cd8dc40a309177cfb4584d24c25550469af1
MD5 4dd8339425060d5bebb902e655146cee
BLAKE2b-256 a3e153d49324a70e286766d1446c295f3192b1029470792c0340f42914dd04bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for espp-1.1.7-cp314-cp314-macosx_11_0_universal2.whl:

Publisher: build_wheels.yml on esp-cpp/espp

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

File details

Details for the file espp-1.1.7-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: espp-1.1.7-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for espp-1.1.7-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f6588a609e1e65889fbf3eb7b66e7f8617a2d8feb6dee5f3b02dd7eeee96f952
MD5 8da71022f416ed7728b188a9cd82236f
BLAKE2b-256 43dae0d92dd78082fd7797b300e28aa339ac0e849273ff908de9750524927b38

See more details on using hashes here.

Provenance

The following attestation bundles were made for espp-1.1.7-cp313-cp313-win_amd64.whl:

Publisher: build_wheels.yml on esp-cpp/espp

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

File details

Details for the file espp-1.1.7-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for espp-1.1.7-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 95212813d94c1e630edb117cb5128561410ca938c537b650531568347191c11b
MD5 a2117a2d63a123d8ae7bb3562f22fad6
BLAKE2b-256 d41e0b387cd259082c0875ab9cd3e4f6775640a0a2f60b07bcb7bd17b237f5c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for espp-1.1.7-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on esp-cpp/espp

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

File details

Details for the file espp-1.1.7-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for espp-1.1.7-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 01d6d43695ee9fed20e9ca1507a5bf57a572b4b7a36bd70f066bb061496660da
MD5 13e78d2cb60c56f9667c48f6a8982414
BLAKE2b-256 7888a7bd8ec8f742668af6e470ff570a02a35ab26e1ce35695226941046e390f

See more details on using hashes here.

Provenance

The following attestation bundles were made for espp-1.1.7-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on esp-cpp/espp

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

File details

Details for the file espp-1.1.7-cp313-cp313-macosx_11_0_universal2.whl.

File metadata

File hashes

Hashes for espp-1.1.7-cp313-cp313-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 a4ed47ba78fbb4cef3d45f43adc85ad4cb89dec17393723025461ecd16c3b07b
MD5 9604c0d110c738be971433e961aba641
BLAKE2b-256 c25e67a1939eae654d5cd379462ec93ef4622126842ba592f7c9396b116f6717

See more details on using hashes here.

Provenance

The following attestation bundles were made for espp-1.1.7-cp313-cp313-macosx_11_0_universal2.whl:

Publisher: build_wheels.yml on esp-cpp/espp

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

File details

Details for the file espp-1.1.7-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: espp-1.1.7-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for espp-1.1.7-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 95287586ca7325df0b91c4a9718638998ae185ae6ee9cc9ad66d3c46404053ff
MD5 3ebc76974a20080a9c0def762b692e1a
BLAKE2b-256 b62e418ae7c26500a0ac925f80a50679c28b9190a89e8b2b0705aa7f150ca349

See more details on using hashes here.

Provenance

The following attestation bundles were made for espp-1.1.7-cp312-cp312-win_amd64.whl:

Publisher: build_wheels.yml on esp-cpp/espp

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

File details

Details for the file espp-1.1.7-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for espp-1.1.7-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6a3c99379a8e334c4573e23386319fd547622d5db35f96163c09566bf315970c
MD5 833b53a19eb128e7a2591c3eea9494dc
BLAKE2b-256 38d9a7b65e565c53415a94d19573b27c3e02233f29860217f50649ca2f0031cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for espp-1.1.7-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on esp-cpp/espp

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

File details

Details for the file espp-1.1.7-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for espp-1.1.7-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3b01558c73761e9b8069f424b863acff93639b325cf42916ff6836b80e9dac58
MD5 fc639e0fcf1ef7083b5e987512bfdde7
BLAKE2b-256 beedb2383baaafbd5aea18402208b4c942b13fbed1f83e61fd74d31a8c8bccf8

See more details on using hashes here.

Provenance

The following attestation bundles were made for espp-1.1.7-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on esp-cpp/espp

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

File details

Details for the file espp-1.1.7-cp312-cp312-macosx_11_0_universal2.whl.

File metadata

File hashes

Hashes for espp-1.1.7-cp312-cp312-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 267589455521fdb1888ae702f477f45d12f82595fa3bfbd7a98830eb08f797ca
MD5 f5ac1bfedfc71331b1f612199a6e394a
BLAKE2b-256 6145244e1551d3aa867b1d2c5111211b0c56208ad195052225e3f5c836454973

See more details on using hashes here.

Provenance

The following attestation bundles were made for espp-1.1.7-cp312-cp312-macosx_11_0_universal2.whl:

Publisher: build_wheels.yml on esp-cpp/espp

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

File details

Details for the file espp-1.1.7-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: espp-1.1.7-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for espp-1.1.7-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 621b3564588f055ad94c7098a0dbbd4b4bbe62514713fbbb2ed89b8562c015ed
MD5 8ab7a93246a337dc485f0e0b60dad8b5
BLAKE2b-256 002401ab39ec0b500af0e9cd009e133ca51a5b5eaf5e04b6dae438718a6dcee7

See more details on using hashes here.

Provenance

The following attestation bundles were made for espp-1.1.7-cp311-cp311-win_amd64.whl:

Publisher: build_wheels.yml on esp-cpp/espp

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

File details

Details for the file espp-1.1.7-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for espp-1.1.7-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c898386ab52394908318511e165c67c48a0905d6c9f467ba064594d5b94cff4f
MD5 2360bc38ce7b0a6217fa3ef69165178c
BLAKE2b-256 1298f64512f78b1eac1744ee9a0c2ab3c4c9372392eb7814171568cf7e81d4c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for espp-1.1.7-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on esp-cpp/espp

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

File details

Details for the file espp-1.1.7-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for espp-1.1.7-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 32cf1e6807784e587fe21fcd8815a09bfaf92d75d74413616b75f53c7222bbf1
MD5 5bf9eb0e9ed67c9266afe6c3dd937ca5
BLAKE2b-256 68751dc8393047f66650adac443e9ac942bf88b89cd92054b2bc4b237ed19ed3

See more details on using hashes here.

Provenance

The following attestation bundles were made for espp-1.1.7-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on esp-cpp/espp

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

File details

Details for the file espp-1.1.7-cp311-cp311-macosx_11_0_universal2.whl.

File metadata

File hashes

Hashes for espp-1.1.7-cp311-cp311-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 de5f70cc659601d76daf6d594923143de12742ccabaf0c15d347d33bf3053f07
MD5 e4525720ac2c22d33ef7540c6f61704b
BLAKE2b-256 7f26732159d83d847fcce9748a8ad4adbc90be5629565f9c4ea02a14d0aa0c4a

See more details on using hashes here.

Provenance

The following attestation bundles were made for espp-1.1.7-cp311-cp311-macosx_11_0_universal2.whl:

Publisher: build_wheels.yml on esp-cpp/espp

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

File details

Details for the file espp-1.1.7-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: espp-1.1.7-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for espp-1.1.7-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1311c91bf91d8ca58be2b763561dd093423fa34c1c55a19f8842ad7450d6761a
MD5 265ddc5066dc2786611fbcba610b70f5
BLAKE2b-256 c50fdb45dfaeb791739485ee9691bb7bf4a1cd6e0f2392064b9b2e036d30ff87

See more details on using hashes here.

Provenance

The following attestation bundles were made for espp-1.1.7-cp310-cp310-win_amd64.whl:

Publisher: build_wheels.yml on esp-cpp/espp

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

File details

Details for the file espp-1.1.7-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for espp-1.1.7-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b5030f3d69021830d97565cdb4de563a8b293888fad8b995f88ea55102a840f9
MD5 99de1320ff4b6f66183994c3d943ee2b
BLAKE2b-256 3a34fd764e560c582f0c5288738b2eec7cebb502f111a6be53ad427d06068155

See more details on using hashes here.

Provenance

The following attestation bundles were made for espp-1.1.7-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on esp-cpp/espp

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

File details

Details for the file espp-1.1.7-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for espp-1.1.7-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5d8c98e0f21e983b6bf4598c3a9eee5e953fee1ce0d6317ade3c7a1e36b294b7
MD5 ac0b3ca75eb2a4c541aa988d9da77d0a
BLAKE2b-256 cf8b0abe03ebdaef7511b24e48e73dddb1264b15c008513d98caf284a9b40538

See more details on using hashes here.

Provenance

The following attestation bundles were made for espp-1.1.7-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on esp-cpp/espp

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

File details

Details for the file espp-1.1.7-cp310-cp310-macosx_11_0_universal2.whl.

File metadata

File hashes

Hashes for espp-1.1.7-cp310-cp310-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 6c13d4575af881a97aa4bac91d85a4a0baef048a6f6fd1163187eb2f1f6ab51c
MD5 d3e4c6e8905de4a3da72cae36f7e3af4
BLAKE2b-256 f799ac4feb674d772e844cb6fd45692e534e809f5bfb2c1bc085a52e7038f820

See more details on using hashes here.

Provenance

The following attestation bundles were made for espp-1.1.7-cp310-cp310-macosx_11_0_universal2.whl:

Publisher: build_wheels.yml on esp-cpp/espp

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

Release history Release notifications | RSS feed

1.2.0

21 files

1.1.8

21 files

This release

1.1.7 This release

21 files

1.1.6

21 files

1.1.5

21 files

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