Skip to main content

Tealet - A greenlet-like library using tealets

Project description

Tealet

A Python wrapper for libtealet, giving Python code low-level stack-slicing primitives.

Normal Python functions have a nice property: they can call other functions without changing their own shape. tealet keeps that feeling while allowing a stack to pause and resume later, so higher-level runtimes can build cooperative scheduling without forcing async/await through every layer.

Related Workspace Projects

This repository also contains higher-level packages built on top of core tealet:

  • tealetio: a synchronous, asyncio-like runtime for tealet, including schedulers, tasks, futures, locks, queues, selector helpers, and asyncio coexistence.
  • tealet-greenlet: an experimental greenlet emulation layer via tealet, including greenlet-compatible imports and upstream-style compatibility tests.

About

tealet is intentionally small. It is a building-block library, not a scheduler, event loop, or complete async framework. The core package provides stack-switching primitives such as switch, run, and throw, plus thread ownership and runtime state checks that schedulers can use directly.

Why is that useful? Because stack slicing lets code keep its ordinary call shape. Instead of colouring every function with async and propagating await through the stack, a tealet can suspend where it is and continue from the same Python frame later.

Built on vendored libtealet release archives, currently v0.7.6, the core package provides:

  • Stack slicing: suspend and resume Python execution stacks without kernel thread switches
  • Low memory overhead: roughly 2-16 KB per tealet, instead of megabytes for an OS thread stack
  • Fast context switches: stack transfers intended to be cheap enough for cooperative runtimes
  • Composable primitives: enough machinery to build custom schedulers and runtime policies

Need a scheduler, locks, futures, selector helpers, asyncio coexistence, or greenlet compatibility? Use the related workspace packages above. They depend on tealet, while tealet itself stays dependency-light and runtime-focused.

Development

Development Setup

This repository is a uv workspace. The main package is tealet; secondary workspace projects live under packages/.

Use uv for dependency and environment management.

# Create and activate a local virtual environment
uv venv --python 3.13
source .venv/bin/activate

# Install project and development dependencies
uv sync --active --dev

Using a custom debug CPython build? Prefer uv pip with an explicit interpreter, so the debug ABI is unambiguous:

uv venv --python /path/to/cpython-debug/python .venv-cpython313-debug
uv pip install --python .venv-cpython313-debug/bin/python -e . --group dev

Running Tests

uv run --active python -m pytest tests/

Core Example Code

The repository includes runnable development examples in src/tealet_examples.py. They show:

  • a simple tealet-backed generator
  • a deliberately minimal tealet.simple_scheduler.SimpleScheduler example

The core SimpleScheduler example demonstrates basic cooperative scheduling on top of tealet primitives only. It intentionally has no IO facilities, timers, thread-safe callbacks, futures, or asyncio interoperability. For those features, use tealetio.

Run the module from a source checkout:

uv run --active python -m tealet_examples

Scheduler Package

Scheduler, task/future, lock, selector, and asyncio coexistence APIs live in the separate tealetio workspace package. tealetio depends on tealet; tealet has no dependency on tealetio.

Package-specific documentation lives under packages/tealetio/docs/.

Run the tealetio test suite from the workspace root:

uv run --active --package tealetio python -m pytest packages/tealetio/tests/

Greenlet Compatibility Package

Greenlet compatibility APIs live in the separate tealet-greenlet workspace package. Its canonical import is tealet_greenlet, with a transition wrapper available at tealet.greenlet when the package is installed.

Run the package tests from the workspace root:

uv run --active --package tealet-greenlet python -m pytest packages/tealet-greenlet/tests/

Runtime Frame Introspection Toggle

Need to inspect dormant tealet frames while debugging? The extension exposes a module-level runtime switch for dormant-frame exposure:

import _tealet

enabled = _tealet.frame_introspection()      # get current setting
_tealet.frame_introspection(False)           # disable dormant-frame capture

Compile-time capability is exposed as _tealet.PYTEALET_WITH_PENDING_FRAME_INTROSPECTION.

Building Third-Party Extensions Against Tealet C API

Building a C extension against tealet? The package installs a public C API header and exposes an include-path helper:

import tealet

include_dir = tealet.get_include()

The public header is:

  • pytealet_capi.h

Client extensions should include this header at build time and import the runtime capsule using PyTealetApi_Import().

API Documentation

Detailed API references live in the docs/ folder:

Supported Python and Platforms

tealet supports Python 3.10 through 3.15, including free-threaded Python builds where CPython provides that ABI.

tealet is a C extension based on libtealet and Stackman, so platform support depends on the native stack-switching code that ships in the vendored libtealet release archive. The default build can select pre-built libtealet libraries for these targets:

  • Linux / System V ABI: x86, x86_64, ARM32, AArch64, and RISC-V 64
  • macOS / Darwin: x86_64 and Apple Silicon
  • Windows: x86, x64, and ARM64

Other platforms need corresponding libtealet/Stackman support and a matching build integration. In other words, tealet is not a pure-Python portability layer; it follows the platforms where libtealet can safely save and restore native stacks.

Building the C Extension

The C extension, _tealet, links against pre-built libtealet libraries from the vendored release archive. It depends on:

  • libtealet v0.7.6: core stack-slicing library, with pre-built binaries in src/_tealet/libtealet/lib/
  • stackman: platform-specific stack operations, bundled with libtealet

Default build mode is release-archive based. To use a local source checkout for debugging instead, place it at src/_tealet/libtealet-src/ and enable source mode:

BUILD_LIBTEALET_FROM_SOURCE=1 uv sync --active --reinstall-package tealet

Build requirements:

  • Python development headers (python3.10-dev or similar)
  • C compiler, such as gcc, clang, or MSVC
  • Make (for ABI detection)

Current status: The build infrastructure and Python 3 modernisation work are in place. Active work is focused on runtime stability, stress-test robustness, and keeping the C extension memory-safe across supported Python versions.

Contributing

Contributions are welcome. Issues, focused bug reports, and small pull requests are especially helpful while the runtime is still hardening.

Project Structure

Need to find your way around the checkout? The main pieces are:

pytealet/
├── docs/
│   ├── ARCHITECTURE.md
│   ├── PYTHON_API.md
│   ├── C_API.md
│   └── ISSUES.md
├── scripts/
│   └── fast_build.sh
├── src/
│   ├── tealet_examples.py    # Development examples for core tealet primitives
│   ├── tealet/              # Pure Python package
│   │   ├── __init__.py
│   │   └── greenlet/         # Transition wrapper for tealet-greenlet
│   └── _tealet/             # C extension module
│       ├── pytealet.c       # Core runtime for tealet objects
│       ├── pytealet_module.c # CPython module lifecycle
│       ├── frame_info.c     # Frame capture/restore helpers
│       ├── tstate_state.c   # Thread-state transfer helpers
│       ├── libtealet/       # Vendored libtealet release archive (primary)
│       └── libtealet-src/   # Optional local libtealet source checkout (gitignored)
├── tests/
│   ├── test_tealet.py
│   └── test_examples.py
├── packages/
│   ├── tealetio/             # Optional scheduler/asyncio package built on tealet
│   │   └── docs/             # tealetio-specific API and design docs
│   └── tealet-greenlet/      # Greenlet compatibility package built on tealet
│       ├── docs/             # tealet-greenlet-specific API and architecture docs
│       └── tests/            # Legacy and upstream-compat greenlet tests
├── pyproject.toml
└── README.md

Related Projects

Changelog

See CHANGELOG.md for version history and release notes.

License

MIT License. See LICENSE for details.

Project details


Download files

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

Source Distribution

tealet-0.1.0rc2.tar.gz (589.7 kB view details)

Uploaded Source

Built Distributions

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

tealet-0.1.0rc2-cp314-cp314t-win_arm64.whl (683.7 kB view details)

Uploaded CPython 3.14tWindows ARM64

tealet-0.1.0rc2-cp314-cp314t-win_amd64.whl (692.3 kB view details)

Uploaded CPython 3.14tWindows x86-64

tealet-0.1.0rc2-cp314-cp314t-win32.whl (684.5 kB view details)

Uploaded CPython 3.14tWindows x86

tealet-0.1.0rc2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (959.5 kB view details)

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

tealet-0.1.0rc2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (968.7 kB view details)

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

tealet-0.1.0rc2-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (940.6 kB view details)

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

tealet-0.1.0rc2-cp314-cp314t-macosx_11_0_arm64.whl (683.7 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

tealet-0.1.0rc2-cp314-cp314t-macosx_10_15_x86_64.whl (684.7 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

tealet-0.1.0rc2-cp314-cp314-win_arm64.whl (682.1 kB view details)

Uploaded CPython 3.14Windows ARM64

tealet-0.1.0rc2-cp314-cp314-win_amd64.whl (688.3 kB view details)

Uploaded CPython 3.14Windows x86-64

tealet-0.1.0rc2-cp314-cp314-win32.whl (681.2 kB view details)

Uploaded CPython 3.14Windows x86

tealet-0.1.0rc2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (908.4 kB view details)

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

tealet-0.1.0rc2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (911.0 kB view details)

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

tealet-0.1.0rc2-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (890.0 kB view details)

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

tealet-0.1.0rc2-cp314-cp314-macosx_11_0_arm64.whl (680.9 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

tealet-0.1.0rc2-cp314-cp314-macosx_10_15_x86_64.whl (681.7 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

tealet-0.1.0rc2-cp313-cp313-win_arm64.whl (672.6 kB view details)

Uploaded CPython 3.13Windows ARM64

tealet-0.1.0rc2-cp313-cp313-win_amd64.whl (678.9 kB view details)

Uploaded CPython 3.13Windows x86-64

tealet-0.1.0rc2-cp313-cp313-win32.whl (672.1 kB view details)

Uploaded CPython 3.13Windows x86

tealet-0.1.0rc2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (863.7 kB view details)

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

tealet-0.1.0rc2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (865.8 kB view details)

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

tealet-0.1.0rc2-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (845.9 kB view details)

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

tealet-0.1.0rc2-cp313-cp313-macosx_11_0_arm64.whl (680.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

tealet-0.1.0rc2-cp313-cp313-macosx_10_13_x86_64.whl (681.6 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

tealet-0.1.0rc2-cp312-cp312-win_arm64.whl (672.4 kB view details)

Uploaded CPython 3.12Windows ARM64

tealet-0.1.0rc2-cp312-cp312-win_amd64.whl (678.4 kB view details)

Uploaded CPython 3.12Windows x86-64

tealet-0.1.0rc2-cp312-cp312-win32.whl (672.1 kB view details)

Uploaded CPython 3.12Windows x86

tealet-0.1.0rc2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (862.9 kB view details)

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

tealet-0.1.0rc2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (865.2 kB view details)

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

tealet-0.1.0rc2-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (846.0 kB view details)

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

tealet-0.1.0rc2-cp312-cp312-macosx_11_0_arm64.whl (680.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

tealet-0.1.0rc2-cp312-cp312-macosx_10_13_x86_64.whl (681.5 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

tealet-0.1.0rc2-cp311-cp311-win_arm64.whl (672.1 kB view details)

Uploaded CPython 3.11Windows ARM64

tealet-0.1.0rc2-cp311-cp311-win_amd64.whl (678.6 kB view details)

Uploaded CPython 3.11Windows x86-64

tealet-0.1.0rc2-cp311-cp311-win32.whl (671.7 kB view details)

Uploaded CPython 3.11Windows x86

tealet-0.1.0rc2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (850.0 kB view details)

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

tealet-0.1.0rc2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (854.2 kB view details)

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

tealet-0.1.0rc2-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (833.3 kB view details)

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

tealet-0.1.0rc2-cp311-cp311-macosx_11_0_arm64.whl (680.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

tealet-0.1.0rc2-cp311-cp311-macosx_10_13_x86_64.whl (680.6 kB view details)

Uploaded CPython 3.11macOS 10.13+ x86-64

tealet-0.1.0rc2-cp310-cp310-win_arm64.whl (672.2 kB view details)

Uploaded CPython 3.10Windows ARM64

tealet-0.1.0rc2-cp310-cp310-win_amd64.whl (678.5 kB view details)

Uploaded CPython 3.10Windows x86-64

tealet-0.1.0rc2-cp310-cp310-win32.whl (671.2 kB view details)

Uploaded CPython 3.10Windows x86

tealet-0.1.0rc2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (844.2 kB view details)

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

tealet-0.1.0rc2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (849.3 kB view details)

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

tealet-0.1.0rc2-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (827.2 kB view details)

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

tealet-0.1.0rc2-cp310-cp310-macosx_11_0_arm64.whl (680.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

tealet-0.1.0rc2-cp310-cp310-macosx_10_13_x86_64.whl (680.3 kB view details)

Uploaded CPython 3.10macOS 10.13+ x86-64

File details

Details for the file tealet-0.1.0rc2.tar.gz.

File metadata

  • Download URL: tealet-0.1.0rc2.tar.gz
  • Upload date:
  • Size: 589.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tealet-0.1.0rc2.tar.gz
Algorithm Hash digest
SHA256 f4e47e2ba61dbd6bf32bfd172a34a64e956064a5abc4dbcb8968bf73fbc34898
MD5 16d92d6971ea31472b9e66d2e8bdb1e8
BLAKE2b-256 cb8d0cbaf86c552dbe390592fecc694618c623b4bb8c41270695ebea81845bc7

See more details on using hashes here.

Provenance

The following attestation bundles were made for tealet-0.1.0rc2.tar.gz:

Publisher: release-publish.yml on kristjanvalur/pytealet

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

File details

Details for the file tealet-0.1.0rc2-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: tealet-0.1.0rc2-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 683.7 kB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tealet-0.1.0rc2-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 9539ae135bf5ebc42efc4acd24d9666c162c1c2f41bb5497cb036f6c9b820867
MD5 546ae70de8e580e6c80ae4c5b4a3f45b
BLAKE2b-256 a405c162015a601798ddec596b4a4d0f018b2959733825abdfe8fd3f974343c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for tealet-0.1.0rc2-cp314-cp314t-win_arm64.whl:

Publisher: release-publish.yml on kristjanvalur/pytealet

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

File details

Details for the file tealet-0.1.0rc2-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: tealet-0.1.0rc2-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 692.3 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tealet-0.1.0rc2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 008f4c707eb410b4d6f7c0e2d4090cc8c8ce156baba5c78cc3a6c1dfa2975d2e
MD5 9c059ac6e762814b177e63d3c27594e1
BLAKE2b-256 37e4feca09d782d557ba84c06c3331c90ca6183399b95b61fc5088d23913e749

See more details on using hashes here.

Provenance

The following attestation bundles were made for tealet-0.1.0rc2-cp314-cp314t-win_amd64.whl:

Publisher: release-publish.yml on kristjanvalur/pytealet

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

File details

Details for the file tealet-0.1.0rc2-cp314-cp314t-win32.whl.

File metadata

  • Download URL: tealet-0.1.0rc2-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 684.5 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tealet-0.1.0rc2-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 02c19c9ce03d9a90d512a4047db3a3bc87de6d340078cce2d5c8227075036849
MD5 27bec775479338f0a55e6132339a6f1b
BLAKE2b-256 60dc19425fc0097ea2ec7f5d93e199365a5f41fc701754b41a2b5bd8ba971e35

See more details on using hashes here.

Provenance

The following attestation bundles were made for tealet-0.1.0rc2-cp314-cp314t-win32.whl:

Publisher: release-publish.yml on kristjanvalur/pytealet

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

File details

Details for the file tealet-0.1.0rc2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for tealet-0.1.0rc2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a93a717c519f2ff3efe92ab66e82137e61edac9b92c7d4e2c060bc76d7311b74
MD5 3250b5c6747f4e53f11f2273289bdf2e
BLAKE2b-256 a6cbcbae1c688da7aa06dac9784f27b5b06de0d2387256deea41d295ba959e9f

See more details on using hashes here.

Provenance

The following attestation bundles were made for tealet-0.1.0rc2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release-publish.yml on kristjanvalur/pytealet

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

File details

Details for the file tealet-0.1.0rc2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for tealet-0.1.0rc2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2a3339be6c9af01cebac14a6c15d1c2caedbf88f7669b84a328d4fe8d562f297
MD5 604918d44a223dddbad9fffd64baa205
BLAKE2b-256 b3644eaa48879a7f0f0fc50161cc8ae0dbc6fa2cb3685f02230f777c0fa85259

See more details on using hashes here.

Provenance

The following attestation bundles were made for tealet-0.1.0rc2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release-publish.yml on kristjanvalur/pytealet

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

File details

Details for the file tealet-0.1.0rc2-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for tealet-0.1.0rc2-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 dffc1e5c703098027a18da72adf8580c31f217eac91c6c7eab41457a66b2aaa9
MD5 c1994d58bfc3a2bc89dcf9a77c5f33f9
BLAKE2b-256 34ba38dbc06961f3c6cb7baff91f5db9fa3a0ecf57fed06020b225a25491c309

See more details on using hashes here.

Provenance

The following attestation bundles were made for tealet-0.1.0rc2-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: release-publish.yml on kristjanvalur/pytealet

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

File details

Details for the file tealet-0.1.0rc2-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tealet-0.1.0rc2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b02018e9d7602438d5749c528527d5b2362de2f772690a6f7250a9eb4e86a14a
MD5 d169d87559ac226065a645582393e2a7
BLAKE2b-256 4274742925bec3b727b8206c75b7ce119a8d0a26bea635da86e9999ab52da77b

See more details on using hashes here.

Provenance

The following attestation bundles were made for tealet-0.1.0rc2-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: release-publish.yml on kristjanvalur/pytealet

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

File details

Details for the file tealet-0.1.0rc2-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for tealet-0.1.0rc2-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ce60a1b207b98a51c2db520fa4d72360889cd6d741913d1bc6f183737472d7ec
MD5 58bb4aa7fec1927eb78cec31946d4657
BLAKE2b-256 4bfe45d77da13e17de5a7bfd1d74c219ec47d079963000c7da3f24ebaa2c0f9b

See more details on using hashes here.

Provenance

The following attestation bundles were made for tealet-0.1.0rc2-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: release-publish.yml on kristjanvalur/pytealet

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

File details

Details for the file tealet-0.1.0rc2-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: tealet-0.1.0rc2-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 682.1 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tealet-0.1.0rc2-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 ece8be7eb4daebbe79468e0baa67673e958e5e3c53e0059257a6c72428ca9ac0
MD5 d796adeab7a7c2273999eca6fb719f6a
BLAKE2b-256 b88b33df40901546acba1b4b45b5e060eeb294a4c5e9c0456b8691b651777f9b

See more details on using hashes here.

Provenance

The following attestation bundles were made for tealet-0.1.0rc2-cp314-cp314-win_arm64.whl:

Publisher: release-publish.yml on kristjanvalur/pytealet

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

File details

Details for the file tealet-0.1.0rc2-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: tealet-0.1.0rc2-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 688.3 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tealet-0.1.0rc2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 a620e7ed7d1e453525eeb4c0e88cc8dafbe51ac491df6111e2fa92909e1ffd21
MD5 676f726ca6b764284f1ec2da148a3f99
BLAKE2b-256 d201aa54b851da0594020c55ffbcfe2a30b23b44e1ed906edd810606f3472128

See more details on using hashes here.

Provenance

The following attestation bundles were made for tealet-0.1.0rc2-cp314-cp314-win_amd64.whl:

Publisher: release-publish.yml on kristjanvalur/pytealet

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

File details

Details for the file tealet-0.1.0rc2-cp314-cp314-win32.whl.

File metadata

  • Download URL: tealet-0.1.0rc2-cp314-cp314-win32.whl
  • Upload date:
  • Size: 681.2 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tealet-0.1.0rc2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 9580bd7198578cb5fbb46dc2a3280d039b1cbdf92b6af9b8b14d30662f755a01
MD5 9fedd6b51b0f753bb711880c97dbd53e
BLAKE2b-256 712f9189d81b31ab603ed67b13f4d551487921b95e0057a5813425d29bb100fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for tealet-0.1.0rc2-cp314-cp314-win32.whl:

Publisher: release-publish.yml on kristjanvalur/pytealet

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

File details

Details for the file tealet-0.1.0rc2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for tealet-0.1.0rc2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 81481e6d364ccb694bf4c360b6248fe0b893aa20f2e1de8e4ca071c24279b364
MD5 143c9d8d185fce567812c6315470fce9
BLAKE2b-256 db7371dfe9a282c5bd99f77cffef16320f42dc377538d756afa9fa801281f18e

See more details on using hashes here.

Provenance

The following attestation bundles were made for tealet-0.1.0rc2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release-publish.yml on kristjanvalur/pytealet

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

File details

Details for the file tealet-0.1.0rc2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for tealet-0.1.0rc2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8b6b3e8be9c76f265429833e09855e69bb58d3f73d8d1fbc0a364e7dfa1d839f
MD5 1a183a14fc59a286756168b00fffb187
BLAKE2b-256 11f36a86fad923107a83bb6f839b3c3044e62b99c1030cfc245ea9b12b0b51a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for tealet-0.1.0rc2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release-publish.yml on kristjanvalur/pytealet

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

File details

Details for the file tealet-0.1.0rc2-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for tealet-0.1.0rc2-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 d1263fa32d72239d95a0c3527bff9c2d53840749fcb1e07331ff1897e5bbc95d
MD5 8ae83006943e1b0f2f650844a8f641de
BLAKE2b-256 3146c6b6a1a79934c20dd02f7bc0055eda587cef70c050dfc4ba9bc2dac69a29

See more details on using hashes here.

Provenance

The following attestation bundles were made for tealet-0.1.0rc2-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: release-publish.yml on kristjanvalur/pytealet

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

File details

Details for the file tealet-0.1.0rc2-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tealet-0.1.0rc2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ece10e438be585a91f26ecd29e255912d8e5cce08caf4b60dec3ca0f9934f56b
MD5 18bb9e56cc437905a350538d0e9609bb
BLAKE2b-256 d422b9b7580604c18ebe9149f4499e085e9dc3fe834bb51b208d570dfa05e5dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for tealet-0.1.0rc2-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: release-publish.yml on kristjanvalur/pytealet

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

File details

Details for the file tealet-0.1.0rc2-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for tealet-0.1.0rc2-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 3116e27c1c0e6ebaaa50bdbbff2d49d8b51f59e47c54301dbfd8777cb828a90a
MD5 9077b82d5ec1f1065765a7c544456090
BLAKE2b-256 89d399f6da7ac93b0d691394916921690c57de9297ce8c9dd2503bed41746f60

See more details on using hashes here.

Provenance

The following attestation bundles were made for tealet-0.1.0rc2-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: release-publish.yml on kristjanvalur/pytealet

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

File details

Details for the file tealet-0.1.0rc2-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: tealet-0.1.0rc2-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 672.6 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tealet-0.1.0rc2-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 9d34d40a8997af855186992fcde83611be9d84deb478de00cc5b009231e9599c
MD5 5d600a8b2c59e84e8098881dbcfa258e
BLAKE2b-256 5ec0fe3a473f25c19663bd4507010c3d3b918b64f2094732016a4893d3b94946

See more details on using hashes here.

Provenance

The following attestation bundles were made for tealet-0.1.0rc2-cp313-cp313-win_arm64.whl:

Publisher: release-publish.yml on kristjanvalur/pytealet

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

File details

Details for the file tealet-0.1.0rc2-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: tealet-0.1.0rc2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 678.9 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tealet-0.1.0rc2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e5b0a3da10a231ff11af0d3066c93cf5c4f38179a3915db58d8e777c50fdcdef
MD5 a57f627870b19eea242ecbb1e1f582cd
BLAKE2b-256 35d5b1119330eec54268669d8343acb0c20fb83c1ce996311d28178bb35d465c

See more details on using hashes here.

Provenance

The following attestation bundles were made for tealet-0.1.0rc2-cp313-cp313-win_amd64.whl:

Publisher: release-publish.yml on kristjanvalur/pytealet

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

File details

Details for the file tealet-0.1.0rc2-cp313-cp313-win32.whl.

File metadata

  • Download URL: tealet-0.1.0rc2-cp313-cp313-win32.whl
  • Upload date:
  • Size: 672.1 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tealet-0.1.0rc2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 a3deb53b39a00b2fa860ddcb92c038cf8ae6c04a996de971a362f15e21cdcc44
MD5 3e39ce40a3994e33cbfe8b4c894d851b
BLAKE2b-256 8e2e9702283bf6be4b3cd559480a734beb5bec061c6e5ecb10cb7cd82f7c7012

See more details on using hashes here.

Provenance

The following attestation bundles were made for tealet-0.1.0rc2-cp313-cp313-win32.whl:

Publisher: release-publish.yml on kristjanvalur/pytealet

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

File details

Details for the file tealet-0.1.0rc2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for tealet-0.1.0rc2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6e31c3804aa6764225fcd02ebeecef99af474712c477ae9d257e1c7f724b8dcb
MD5 1d17247e23b1d0e95c870d031bfff93c
BLAKE2b-256 df6778fba8d51e0491b5ecd56adcf73854c55a186fa609618d73cffa415a961b

See more details on using hashes here.

Provenance

The following attestation bundles were made for tealet-0.1.0rc2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release-publish.yml on kristjanvalur/pytealet

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

File details

Details for the file tealet-0.1.0rc2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for tealet-0.1.0rc2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4bc2ec3b357cd59df73397dc7536792f829201cde4b780ca0f753f5aef7eb911
MD5 1ff166cf03b44d2cdb535597c4b7c006
BLAKE2b-256 05fa261358db405fe87a88254f4bb9b1e3ec358d3a342e5fcba165736516449d

See more details on using hashes here.

Provenance

The following attestation bundles were made for tealet-0.1.0rc2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release-publish.yml on kristjanvalur/pytealet

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

File details

Details for the file tealet-0.1.0rc2-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for tealet-0.1.0rc2-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 62b56750597d213dbd92ce4aa9269d4882bf65bf85831a71091602913db83304
MD5 89d6a1c39be6a272a4e1c14c2ee05cd1
BLAKE2b-256 0d941a15528f7ac5fbc81b5179028ce1fd5eee3f10801e57708cc53900475f60

See more details on using hashes here.

Provenance

The following attestation bundles were made for tealet-0.1.0rc2-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: release-publish.yml on kristjanvalur/pytealet

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

File details

Details for the file tealet-0.1.0rc2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tealet-0.1.0rc2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 847ab78ad553cce6716ec2c9dd450e1566595f296942e5e83592d652660788f0
MD5 be0d9c70235e8945853585c9d362b1fe
BLAKE2b-256 c4b90d1241f6ae88f1e273ceeb4f92abe3161548a40f3a2512d1644e91fd9fda

See more details on using hashes here.

Provenance

The following attestation bundles were made for tealet-0.1.0rc2-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release-publish.yml on kristjanvalur/pytealet

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

File details

Details for the file tealet-0.1.0rc2-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for tealet-0.1.0rc2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 be2fc27deea6cc2f000425aa3d40d17a3a6643dcc0608999c23e1887467ae5de
MD5 405a98284442811686a276e784fdaad2
BLAKE2b-256 cbea91831fae9186a43de86084eabac98813a4fc3d53b267c4a337e117640c13

See more details on using hashes here.

Provenance

The following attestation bundles were made for tealet-0.1.0rc2-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: release-publish.yml on kristjanvalur/pytealet

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

File details

Details for the file tealet-0.1.0rc2-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: tealet-0.1.0rc2-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 672.4 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tealet-0.1.0rc2-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 1c94170d19058c12081c5e0dcb7d517000acd7c9246bd50b808fb666fc53ded0
MD5 e8485ae159ea58dd1951a8dd58aaaef5
BLAKE2b-256 e662a6ff9b67bfbd873746066b91408930a531e2db87664eeb3b83f8ff10edd3

See more details on using hashes here.

Provenance

The following attestation bundles were made for tealet-0.1.0rc2-cp312-cp312-win_arm64.whl:

Publisher: release-publish.yml on kristjanvalur/pytealet

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

File details

Details for the file tealet-0.1.0rc2-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: tealet-0.1.0rc2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 678.4 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tealet-0.1.0rc2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7ec077daf8624b327743a21c13c98a8cd2daee28ce180f24c3d3718ad22b04bb
MD5 c5020db88acdb18af89db524a8c760e0
BLAKE2b-256 23bf45058c037db6c086b775f768b4ee5a3439413c1a30c6beda176e0d05f1cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for tealet-0.1.0rc2-cp312-cp312-win_amd64.whl:

Publisher: release-publish.yml on kristjanvalur/pytealet

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

File details

Details for the file tealet-0.1.0rc2-cp312-cp312-win32.whl.

File metadata

  • Download URL: tealet-0.1.0rc2-cp312-cp312-win32.whl
  • Upload date:
  • Size: 672.1 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tealet-0.1.0rc2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 22bc76f35a593645bedffb7e9ff1175a27bddfb5758b68d8531f878baa5a69c6
MD5 0f8bf23143e88e9dfb576ee377865271
BLAKE2b-256 979e33f5dabadecebb5c3cf420db548cf70dab5ed46b36db11ae216431d4d83f

See more details on using hashes here.

Provenance

The following attestation bundles were made for tealet-0.1.0rc2-cp312-cp312-win32.whl:

Publisher: release-publish.yml on kristjanvalur/pytealet

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

File details

Details for the file tealet-0.1.0rc2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for tealet-0.1.0rc2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 94af6358938cee2bf20cf8772b928d0c16e23fda2e92be63d58f551dd1c752c5
MD5 286a79459c949d2cd7e48cd8c4c576ad
BLAKE2b-256 bbf20553778bc653c64ef73e2a3edb5c2976e0e3b0a0b0154e473924c973157e

See more details on using hashes here.

Provenance

The following attestation bundles were made for tealet-0.1.0rc2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release-publish.yml on kristjanvalur/pytealet

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

File details

Details for the file tealet-0.1.0rc2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for tealet-0.1.0rc2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9c7f2b93bc58b1283953e180f8cf237af05440717b0aad1a6bccadb1181b212f
MD5 3e428a9ad604680996faffe5c308b9ab
BLAKE2b-256 d2c85f989c9befaf8103462476ec4ff3ab6b398470ee7f1fcedbe1398070dcb2

See more details on using hashes here.

Provenance

The following attestation bundles were made for tealet-0.1.0rc2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release-publish.yml on kristjanvalur/pytealet

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

File details

Details for the file tealet-0.1.0rc2-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for tealet-0.1.0rc2-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 468a312f701d83aedf887e6cff3cd882e45500c930913c0a3be24ecf8cf4775a
MD5 3061f238886ac1f7eba705bbdbd262c1
BLAKE2b-256 1a4a638b12289f6db54945b5c952690e8ed9377ebec10be4edd9f30e64acce9f

See more details on using hashes here.

Provenance

The following attestation bundles were made for tealet-0.1.0rc2-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: release-publish.yml on kristjanvalur/pytealet

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

File details

Details for the file tealet-0.1.0rc2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tealet-0.1.0rc2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 31c674694ed6030d7522fe7ce004adb27485c1d1978cf9c744d7b62ad5f78521
MD5 cdb52e7648e0b01e5d03012d439c2085
BLAKE2b-256 34f0ffa2db80a4261a5a8ed065d09b819daa6767415b5a2a8dbc2b728c0e61a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for tealet-0.1.0rc2-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release-publish.yml on kristjanvalur/pytealet

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

File details

Details for the file tealet-0.1.0rc2-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for tealet-0.1.0rc2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 e92d170fe53064fbeee96bee2b9adb2c1c581e48b9a5bca8e83b4b36535c13d2
MD5 5573c06a89c98737f33ca22955bf0e18
BLAKE2b-256 ad82afa3df7f1bb472fe08391d851bc4cd72f69497d25ecf871e809dae72f54a

See more details on using hashes here.

Provenance

The following attestation bundles were made for tealet-0.1.0rc2-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: release-publish.yml on kristjanvalur/pytealet

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

File details

Details for the file tealet-0.1.0rc2-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: tealet-0.1.0rc2-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 672.1 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tealet-0.1.0rc2-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 341b27969cf93e712f34df104db8583ef3a939a1cd270af148f5a695a83223f5
MD5 3a88d3f82110ec0b70048e34896ab7a2
BLAKE2b-256 0f1e1f0c4fdeded1a6605d6caedd591f2cbc83c992f99f72c7021643685750f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for tealet-0.1.0rc2-cp311-cp311-win_arm64.whl:

Publisher: release-publish.yml on kristjanvalur/pytealet

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

File details

Details for the file tealet-0.1.0rc2-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: tealet-0.1.0rc2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 678.6 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tealet-0.1.0rc2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8b055cdc75e326f2e49ae21de3a4237c4639b0a36b8693fc412cb0a080fd41cd
MD5 fa4916bd1b723c6de8a3e98cd4dbed98
BLAKE2b-256 8b5de5140c645b3de07f99611f7161c43acc4ee5fc2ef37a5a2669b35f157a45

See more details on using hashes here.

Provenance

The following attestation bundles were made for tealet-0.1.0rc2-cp311-cp311-win_amd64.whl:

Publisher: release-publish.yml on kristjanvalur/pytealet

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

File details

Details for the file tealet-0.1.0rc2-cp311-cp311-win32.whl.

File metadata

  • Download URL: tealet-0.1.0rc2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 671.7 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tealet-0.1.0rc2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 5f2cbc6c5b6b6d30f3262d346b684f62d97ed7bfaae34e0fdba208b6a07e731e
MD5 8da30c176555488373a530dbb6b1cf15
BLAKE2b-256 2cbd89a705b5a450cdbe706d529696a591e69af738f9ba20a500dc7638394f11

See more details on using hashes here.

Provenance

The following attestation bundles were made for tealet-0.1.0rc2-cp311-cp311-win32.whl:

Publisher: release-publish.yml on kristjanvalur/pytealet

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

File details

Details for the file tealet-0.1.0rc2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for tealet-0.1.0rc2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 09fe7140537d2d9e1abc52698a71aff90bdbacc147872619638915e29bbbd12b
MD5 48142133f3d591aefbc5e9376964e232
BLAKE2b-256 70fe4c7c760960338bb81324fead9e2171fdef199da411917aa71ae6b7d8ec77

See more details on using hashes here.

Provenance

The following attestation bundles were made for tealet-0.1.0rc2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release-publish.yml on kristjanvalur/pytealet

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

File details

Details for the file tealet-0.1.0rc2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for tealet-0.1.0rc2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9d21db93344dff7881a8bb30d6e639132e17ecaae6a0bae232a9d398127169a8
MD5 2b628e514429710ad88b169b9a4efbcb
BLAKE2b-256 7e8fbed3c8ea1fa19d81fcb051ea83bdbbdfb234e27951448b297b8b09240ab1

See more details on using hashes here.

Provenance

The following attestation bundles were made for tealet-0.1.0rc2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release-publish.yml on kristjanvalur/pytealet

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

File details

Details for the file tealet-0.1.0rc2-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for tealet-0.1.0rc2-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 fc406c0cda2758bc7d6c6edd2946b8f56dd1e7e6bedd810f5a5f89af8202362f
MD5 1a892eff097fe83488cfe35e03220733
BLAKE2b-256 a650fe752f69c7ebee239f146579c7659e1d178d6e86d21aaa490279cddf1c60

See more details on using hashes here.

Provenance

The following attestation bundles were made for tealet-0.1.0rc2-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: release-publish.yml on kristjanvalur/pytealet

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

File details

Details for the file tealet-0.1.0rc2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tealet-0.1.0rc2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9d748245b5a61c0f4d16330edd31a5b3c630789e1f91b3c2be40ad0b614092ef
MD5 d67485ad4c5916c6dae1a831cddd7051
BLAKE2b-256 67bf2f71fcbeb0144e2cc06ec0f62edca1298570873db1db0483b6abf4446fbd

See more details on using hashes here.

Provenance

The following attestation bundles were made for tealet-0.1.0rc2-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release-publish.yml on kristjanvalur/pytealet

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

File details

Details for the file tealet-0.1.0rc2-cp311-cp311-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for tealet-0.1.0rc2-cp311-cp311-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 51b6ec09e96f4bcf8a8002e5279082ceb9a0702d642ce286eee1eac11e8fe0c5
MD5 dfaff0f7a89fb8c8eb6427b3dfc5aedc
BLAKE2b-256 98c93c1e8e3ef4dbf3f875070b21450c89b0750ef399f64f23bf32c2a60b02c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for tealet-0.1.0rc2-cp311-cp311-macosx_10_13_x86_64.whl:

Publisher: release-publish.yml on kristjanvalur/pytealet

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

File details

Details for the file tealet-0.1.0rc2-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: tealet-0.1.0rc2-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 672.2 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tealet-0.1.0rc2-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 fd91b969ae990ded18ac442e2560fece45da21a15cd6ae9ed388460f3a28e20e
MD5 d163dbc60e6e60403ba0295fc5fc3da6
BLAKE2b-256 6a8a5e8be2f8a8bdfe358e01a0d4a81423de40a1927e97bc191d81d44f8b2bd9

See more details on using hashes here.

Provenance

The following attestation bundles were made for tealet-0.1.0rc2-cp310-cp310-win_arm64.whl:

Publisher: release-publish.yml on kristjanvalur/pytealet

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

File details

Details for the file tealet-0.1.0rc2-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: tealet-0.1.0rc2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 678.5 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tealet-0.1.0rc2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 22883a3758a9f2c740afd2ca28179355267fc643f188bdd49b7df2c27739a7c8
MD5 36c20d570f547257ba80db6d8abfa022
BLAKE2b-256 4f2f6b0f3df86f52c70f919aef13f228150606b4017a55099055a6bdd6746359

See more details on using hashes here.

Provenance

The following attestation bundles were made for tealet-0.1.0rc2-cp310-cp310-win_amd64.whl:

Publisher: release-publish.yml on kristjanvalur/pytealet

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

File details

Details for the file tealet-0.1.0rc2-cp310-cp310-win32.whl.

File metadata

  • Download URL: tealet-0.1.0rc2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 671.2 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tealet-0.1.0rc2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 e6c1f5d07ace17f06867c73f00f9a5c6c05e544955b674e69ed92624e26b1624
MD5 a73da0c110dbdd111f64262d66ebac8b
BLAKE2b-256 33e13c6ddb7d167a1a72e256fb13ef31d4a1e4be4869c5e537c2fae26776a5df

See more details on using hashes here.

Provenance

The following attestation bundles were made for tealet-0.1.0rc2-cp310-cp310-win32.whl:

Publisher: release-publish.yml on kristjanvalur/pytealet

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

File details

Details for the file tealet-0.1.0rc2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for tealet-0.1.0rc2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b12456a6e5b85a1ea69064eed48e0eebed336f76da5b3cc7cde2071f944b456c
MD5 6c523432b316b8a8fe20a17ddb8e5ea9
BLAKE2b-256 33885e44c7d8ee6f9a8a99f2c311aa3e4ce7cfb2200a0dbd3dc5b4c284f251e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for tealet-0.1.0rc2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release-publish.yml on kristjanvalur/pytealet

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

File details

Details for the file tealet-0.1.0rc2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for tealet-0.1.0rc2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2bdaccbdc38f5131e4a53bf663b88dd0584cc7a2f27d59802d3c27c4ce18c2cf
MD5 4240b8a78a1a164dfb1b6aab3a70ab8f
BLAKE2b-256 c6964eaaa44c13bb2f190ba56988695d8b83be0717a1a0ce6dc9e2fd418e6905

See more details on using hashes here.

Provenance

The following attestation bundles were made for tealet-0.1.0rc2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release-publish.yml on kristjanvalur/pytealet

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

File details

Details for the file tealet-0.1.0rc2-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for tealet-0.1.0rc2-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 4ae913ad4022c8b5ee71acf2d963d1de5250c333d2f420e195c98e188809e7e8
MD5 f172db5a614b1b2daaef38e1905555f9
BLAKE2b-256 78a7d6fd0aaca2eadd094829d0e8600c306a2f2cf075565716a964b8172209f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for tealet-0.1.0rc2-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: release-publish.yml on kristjanvalur/pytealet

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

File details

Details for the file tealet-0.1.0rc2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tealet-0.1.0rc2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 901940468ed6fffe19a6d252d1f28e82d5e652107f30868c725e7dde1d5d748f
MD5 696a354d9ab5af0dfc7e79cf59cdc6ac
BLAKE2b-256 ef45560687f98a69cf4b3a6b14694b48e94716a3fc6e506969d5f63bb25f9d8a

See more details on using hashes here.

Provenance

The following attestation bundles were made for tealet-0.1.0rc2-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: release-publish.yml on kristjanvalur/pytealet

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

File details

Details for the file tealet-0.1.0rc2-cp310-cp310-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for tealet-0.1.0rc2-cp310-cp310-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 16fa7fe530501a6ff8bbbea028e9aee4dc1d8ccb23f5fe67bb672753ff241250
MD5 3d3d0ef5559aaea70e9ef33b0606724d
BLAKE2b-256 fc4c62cb00f4b63aacef66a44c122a736ce43bbe9bab4aea1e70767a67c082e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for tealet-0.1.0rc2-cp310-cp310-macosx_10_13_x86_64.whl:

Publisher: release-publish.yml on kristjanvalur/pytealet

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 Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page