Skip to main content

A fast Tera template engine Python binding written in Rust

Project description

teraplate

Experimental — for educational purposes only. Not production-ready or tested.

Python bindings for the Tera template engine, built with Rust, PyO3, and Maturin.

teraplate exposes a small Python API over Tera's Jinja2-like template syntax: variables, filters, loops, conditionals, inheritance, and macros.

Features

  • Render named templates loaded from a filesystem glob
  • Render inline template strings with teraplate.render_str(...)
  • Render inline strings on an existing engine with bounded template caching via engine.render_str(...)
  • Inspect loaded template names with engine.templates()
  • Accept plain Python dictionaries as context
  • Support nested JSON-serializable values such as lists, tuples, numbers, booleans, and None
  • Ship type information for Python tooling

Requirements

  • Python >=3.12
  • Rust toolchain for local source builds

Installation

Install from PyPI:

pip install teraplate

Install with uv:

uv add teraplate

Build from source:

git clone https://github.com/amjadjibon/teraplate
cd teraplate
uv run maturin develop --release

Quickstart

Module-level inline render

import teraplate

out = teraplate.render_str(
    "Hello, {{ name }}! You have {{ count }} messages.",
    {"name": "Alex", "count": 42},
)

print(out)
# Hello, Alex! You have 42 messages.

File-based rendering

import teraplate

engine = teraplate.TeraEngine("examples/templates/**/*")
html = engine.render(
    "index.html",
    {
        "page_title": "My Projects",
        "user": {"name": "Alex"},
        "items": [
            {"name": "teraplate", "badge": "new", "tags": ["rust", "python"]},
            {"name": "tera", "badge": None, "tags": ["templates"]},
        ],
    },
)

print(html)

Inline render on an existing engine

import teraplate

engine = teraplate.TeraEngine("examples/templates/**/*")
out = engine.render_str(
    "{% for s in scores %}{{ s.name }}: {{ s.score }}{% if not loop.last %} | {% endif %}{% endfor %}",
    {"scores": [{"name": "Alice", "score": 95}, {"name": "Bob", "score": 87}]},
)

print(out)
# Alice: 95 | Bob: 87

API

teraplate.TeraEngine(glob: str)

Loads templates from a glob pattern.

engine = teraplate.TeraEngine("examples/templates/**/*")

Raises TemplateLoadError if the glob is invalid or any matched template cannot be parsed.

engine.render(template_name: str, context: dict) -> str

Renders a template that was loaded when the engine was created.

html = engine.render("index.html", {"page_title": "Home"})

Raises TemplateNotFoundError if the template is missing, and TemplateRenderError for other rendering failures.

engine.render_str(template_str: str, context: dict) -> str

Renders a raw template string without reading from disk. Compiled inline templates are kept in a bounded engine-local LRU cache so repeated calls with the same template skip recompilation.

out = engine.render_str("Hello {{ name }}", {"name": "Alex"})

engine.templates() -> list[str]

Returns the names of templates currently loaded in the engine.

loaded = sorted(engine.templates())

teraplate.render_str(template_str: str, context: dict) -> str

Renders a raw template string without creating an engine.

out = teraplate.render_str("{{ x }} + {{ y }} = {{ x + y }}", {"x": 1, "y": 2})

Exceptions

teraplate exports Python exception types so callers can catch specific failures:

  • TeraplateError: base exception for package-specific errors
  • TemplateLoadError: templates could not be loaded or parsed from disk
  • TemplateRenderError: rendering failed
  • TemplateNotFoundError: a named template was not found
  • ContextError: the Python context could not be converted into Tera context

Context Rules

Context values are converted directly from Python objects into JSON-compatible Rust values before being passed to Tera. In practice:

  • The top-level context must be a Python dict
  • Values should be JSON-serializable
  • Nested dicts, lists, tuples, strings, numbers, booleans, and None are supported
  • Dict keys may be strings, integers, floats, booleans, or None

If you pass non-JSON Python objects, rendering will fail.

Template Syntax

teraplate uses Tera syntax, which is close to Jinja2.

Variables

<h1>Hello, {{ name }}!</h1>
<p>Price: {{ product.price }}</p>

Filters

{{ name | upper }}
{{ description | truncate(length=100) }}
{{ items | length }}

Conditionals

{% if logged_in %}
  <a href="/logout">Logout</a>
{% elif is_guest %}
  <a href="/login">Login</a>
{% else %}
  <a href="/register">Register</a>
{% endif %}

Loops

<ul>
{% for item in items %}
  <li>{{ loop.index }}. {{ item }}</li>
{% endfor %}
</ul>

Template Inheritance

base.html

<!DOCTYPE html>
<html>
<head><title>{% block title %}My Site{% endblock title %}</title></head>
<body>
  {% block content %}{% endblock content %}
</body>
</html>

page.html

{% extends "base.html" %}

{% block title %}About{% endblock title %}

{% block content %}
  <h1>About Us</h1>
{% endblock content %}

Macros

{% macro input(name, type="text", value="") %}
  <input type="{{ type }}" name="{{ name }}" value="{{ value }}">
{% endmacro input %}

{{ self::input(name="username") }}

Examples

The repository includes runnable examples in examples/render.py and templates in examples/templates/.

Run them with:

python examples/render.py

Project Layout

teraplate/
├── Cargo.toml
├── pyproject.toml
├── teraplate/
│   ├── __init__.py
│   ├── py.typed
│   └── teraplate.pyi
├── src/
│   └── lib.rs
└── examples/
    ├── render.py
    └── templates/

Development

Build and run locally:

uv run maturin develop --release
python examples/render.py
cargo test

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

teraplate-0.0.4.tar.gz (30.2 kB view details)

Uploaded Source

Built Distributions

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

teraplate-0.0.4-cp314-cp314t-musllinux_1_2_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

teraplate-0.0.4-cp314-cp314t-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

teraplate-0.0.4-cp314-cp314t-musllinux_1_2_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

teraplate-0.0.4-cp314-cp314t-musllinux_1_2_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

teraplate-0.0.4-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.9 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

teraplate-0.0.4-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.9 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

teraplate-0.0.4-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

teraplate-0.0.4-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

teraplate-0.0.4-cp314-cp314-win_arm64.whl (1.6 MB view details)

Uploaded CPython 3.14Windows ARM64

teraplate-0.0.4-cp314-cp314-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.14Windows x86-64

teraplate-0.0.4-cp314-cp314-musllinux_1_2_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

teraplate-0.0.4-cp314-cp314-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

teraplate-0.0.4-cp314-cp314-musllinux_1_2_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

teraplate-0.0.4-cp314-cp314-musllinux_1_2_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

teraplate-0.0.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

teraplate-0.0.4-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

teraplate-0.0.4-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

teraplate-0.0.4-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

teraplate-0.0.4-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

teraplate-0.0.4-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (1.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

teraplate-0.0.4-cp314-cp314-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

teraplate-0.0.4-cp314-cp314-macosx_10_12_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

teraplate-0.0.4-cp313-cp313t-musllinux_1_2_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

teraplate-0.0.4-cp313-cp313t-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

teraplate-0.0.4-cp313-cp313t-musllinux_1_2_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

teraplate-0.0.4-cp313-cp313t-musllinux_1_2_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

teraplate-0.0.4-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.9 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

teraplate-0.0.4-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.9 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

teraplate-0.0.4-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

teraplate-0.0.4-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

teraplate-0.0.4-cp313-cp313-win_arm64.whl (1.6 MB view details)

Uploaded CPython 3.13Windows ARM64

teraplate-0.0.4-cp313-cp313-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.13Windows x86-64

teraplate-0.0.4-cp313-cp313-win32.whl (1.6 MB view details)

Uploaded CPython 3.13Windows x86

teraplate-0.0.4-cp313-cp313-musllinux_1_2_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

teraplate-0.0.4-cp313-cp313-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

teraplate-0.0.4-cp313-cp313-musllinux_1_2_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

teraplate-0.0.4-cp313-cp313-musllinux_1_2_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

teraplate-0.0.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

teraplate-0.0.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

teraplate-0.0.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

teraplate-0.0.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

teraplate-0.0.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

teraplate-0.0.4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (1.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

teraplate-0.0.4-cp313-cp313-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

teraplate-0.0.4-cp313-cp313-macosx_10_12_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

teraplate-0.0.4-cp312-cp312-win_arm64.whl (1.6 MB view details)

Uploaded CPython 3.12Windows ARM64

teraplate-0.0.4-cp312-cp312-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.12Windows x86-64

teraplate-0.0.4-cp312-cp312-musllinux_1_2_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

teraplate-0.0.4-cp312-cp312-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

teraplate-0.0.4-cp312-cp312-musllinux_1_2_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

teraplate-0.0.4-cp312-cp312-musllinux_1_2_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

teraplate-0.0.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

teraplate-0.0.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

teraplate-0.0.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

teraplate-0.0.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

teraplate-0.0.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

teraplate-0.0.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (1.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

teraplate-0.0.4-cp312-cp312-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

teraplate-0.0.4-cp312-cp312-macosx_10_12_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

File details

Details for the file teraplate-0.0.4.tar.gz.

File metadata

  • Download URL: teraplate-0.0.4.tar.gz
  • Upload date:
  • Size: 30.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for teraplate-0.0.4.tar.gz
Algorithm Hash digest
SHA256 973fe3973f425f4853088b5c4024549d932cf3f883ca127e107519276c1a225a
MD5 3860bf625e64863629a3654c63fa8f65
BLAKE2b-256 0e500952706f6e48b09d4d780e3e46ba042a93a6c6abeb54a005fcc4ee1b5d09

See more details on using hashes here.

File details

Details for the file teraplate-0.0.4-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: teraplate-0.0.4-cp314-cp314t-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for teraplate-0.0.4-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cda6c6be32825ab039e6dfda9de92742dc27933d8527f66583a8c0bda6e0c18e
MD5 5c211857a33133518a547b478c41e63f
BLAKE2b-256 9b27e8f9a30acab788425c045005a6d6eda4a72df6c7fad9bd59aeeca023d9f5

See more details on using hashes here.

File details

Details for the file teraplate-0.0.4-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

  • Download URL: teraplate-0.0.4-cp314-cp314t-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for teraplate-0.0.4-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bef8fc9803d19b26a43deee4d7bc9d74903989485176c8ab8b3197140d024116
MD5 89d680fe78f256f4cc2dd89f800f8d82
BLAKE2b-256 d2ddb3d16fe4da3d1bdf353a8bfa5165d97850a560076acafa16bc4b2d6a19e5

See more details on using hashes here.

File details

Details for the file teraplate-0.0.4-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: teraplate-0.0.4-cp314-cp314t-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for teraplate-0.0.4-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2392ebd12db4aaae9df5de571c7d77c1a3f0a38bbdc8125172db67d6253c4b73
MD5 b5edc5bee297b3ef8a15050e4d94855f
BLAKE2b-256 836993a90ed4007bab3fea1501d15241b7c2fb9190d477bea3c1bec7e55ab878

See more details on using hashes here.

File details

Details for the file teraplate-0.0.4-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: teraplate-0.0.4-cp314-cp314t-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for teraplate-0.0.4-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c37338b6dd6d42d1b23a5fd1490d43fb9c2b41bee2b835aa170cc58c46087be9
MD5 77b2fb31841a5311f8d27493228ccfe7
BLAKE2b-256 8b70ac78439f703386b2a07770f7369170aca97e9d58ae5962605cc9bc789c8e

See more details on using hashes here.

File details

Details for the file teraplate-0.0.4-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: teraplate-0.0.4-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for teraplate-0.0.4-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2527a084028213a8aa190eb421df72ae94ad4f8a274d74f0992890a9fd25dc91
MD5 2755a05e12d5b527b72a8fbf6d0c0888
BLAKE2b-256 91b460d768247099a7b6e5bb7a76c8fc66a26d1a77c740d8f34307694640c689

See more details on using hashes here.

File details

Details for the file teraplate-0.0.4-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: teraplate-0.0.4-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for teraplate-0.0.4-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 73ed11b1cb5fe4d67227f9236c5ca76294f18fc37de94db960dcd2e97bdfc36e
MD5 8662a317f32a28b64ddb57556041be67
BLAKE2b-256 2ecfd936388ba6408929851ac297e57ae0f8f2f9c21f8d69c34441f9a6db67cd

See more details on using hashes here.

File details

Details for the file teraplate-0.0.4-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: teraplate-0.0.4-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for teraplate-0.0.4-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 266df60fa73d306b7da68cb371535092e6441825e4d2982020afc8eedefd04ce
MD5 37858c59f27b68560a6c0c36eb868830
BLAKE2b-256 b0db58358766ff7f2315faf3d023ede8c41c92599c2d83148eddf3dabea3f335

See more details on using hashes here.

File details

Details for the file teraplate-0.0.4-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: teraplate-0.0.4-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for teraplate-0.0.4-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c3e894a8d3bf0c5aaf9a4a3487694c1d7454f1903874325370d9bdf5fea9462a
MD5 8104a9ceabe3d2bce5895bfd062809c7
BLAKE2b-256 ffe6614bbc85b83275a4effbf9d83eaad0cc4eb9f067be31198aebb48ca92b6a

See more details on using hashes here.

File details

Details for the file teraplate-0.0.4-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: teraplate-0.0.4-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for teraplate-0.0.4-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 528e6420ce41234297bec52cddef305eff165cb9d8385b665772a068218a285c
MD5 65b40651ac2e197c3a45e9b0ecdf0aef
BLAKE2b-256 6a6a50448e6d970d59a79195eeecadd8c023a6d95d199365c9f62c682d5b9eba

See more details on using hashes here.

File details

Details for the file teraplate-0.0.4-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: teraplate-0.0.4-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for teraplate-0.0.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 89dc1fff8a5e1e264a4372b643ef28c4f8b8f773f302f6924f6fcc0526862476
MD5 5a3d5a0259413b3f88cda0a4a7a0fcca
BLAKE2b-256 1fe81bd4893dfb79dda3e2f9a484e75aa5d52d05e6531d6c510646d7d2665935

See more details on using hashes here.

File details

Details for the file teraplate-0.0.4-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: teraplate-0.0.4-cp314-cp314-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.14, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for teraplate-0.0.4-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9a1a43f8586a03af49abbc3267ba1785100664726a3773821e226736d0da42c1
MD5 83aa0b6c07a95bcde83318940a8ab23e
BLAKE2b-256 4ec12d9fb9b191c8f1c1b67d4a4fcd46f2a3df8c3545a6139a8a8daa790756f1

See more details on using hashes here.

File details

Details for the file teraplate-0.0.4-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

  • Download URL: teraplate-0.0.4-cp314-cp314-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.14, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for teraplate-0.0.4-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 067da4ca5ff1630a3bbd3825c1a7539b59b197bbe691f1202f2bae7db8357a94
MD5 a0b82ebf2847c34b9ac59f4c68d286a1
BLAKE2b-256 6297a38052e260a373e91b3f1b4790b974e827745769e848de6bda763a8aa6a0

See more details on using hashes here.

File details

Details for the file teraplate-0.0.4-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: teraplate-0.0.4-cp314-cp314-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.14, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for teraplate-0.0.4-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1abad007ea589f8a2bf3bb6dcef302364afca0d1f7b224c72bf208c0cb392485
MD5 84cd3aeba2cc26ebc80bc6babd9baaf0
BLAKE2b-256 1843ca321bc14cb3c41236a10ed3c3dc4fdae7cd2c786c75dfcad2d73e513351

See more details on using hashes here.

File details

Details for the file teraplate-0.0.4-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: teraplate-0.0.4-cp314-cp314-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.14, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for teraplate-0.0.4-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1a44263762e31303936d8a0e7be95c0f3812e3438c377481c17f3af551ac7963
MD5 9e9e04501834da53779d46f2436ca89c
BLAKE2b-256 fb800192f17c3a3e0896526428062840ed52457df72cc0871ea063c0e672dfe2

See more details on using hashes here.

File details

Details for the file teraplate-0.0.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: teraplate-0.0.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for teraplate-0.0.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f73a43ada2184909f9b01bfbe894a5c28fc08194e02d3d06ec48593bc5f659df
MD5 56f8c233a59e726ba044f098ae34eef6
BLAKE2b-256 fb44c5cc74609778927ee23d210b26eabe93ff80d7173c55ba571c149103aef8

See more details on using hashes here.

File details

Details for the file teraplate-0.0.4-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: teraplate-0.0.4-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for teraplate-0.0.4-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2b2337789dbdf0aaeb593d818fd8e858473fa0c31709ba047a7ac7a8dbf69585
MD5 d5ae2e8d858e3093854320483a1990c6
BLAKE2b-256 0cd1bdc4bfd17fc5140ba92f52319709a72fecde37274d43fe06760eee319cd4

See more details on using hashes here.

File details

Details for the file teraplate-0.0.4-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: teraplate-0.0.4-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for teraplate-0.0.4-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 eb1c19f5bb78926b808e05e66e87c7dfae5a707abad14d29a8b05639714637d6
MD5 6c24cdb46db0f70bb101df1ff183d615
BLAKE2b-256 1cbc821342a4e5d84e822cb67316ec1120c5293c18f3b7bd6bfea7c6a49d8ddf

See more details on using hashes here.

File details

Details for the file teraplate-0.0.4-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: teraplate-0.0.4-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for teraplate-0.0.4-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 14365d55125073da77a22cf6b5a02f43f73471ece8dde5ff27ed3fa7b9f0ed8f
MD5 48bfac8ac2b330e674325b7d2d9f5e7a
BLAKE2b-256 9e180981f97f219472eb0ee510ae814551a53ccb6135506ec1f8e1180c14adbb

See more details on using hashes here.

File details

Details for the file teraplate-0.0.4-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: teraplate-0.0.4-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for teraplate-0.0.4-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 eff5cdd6d7006c1cbc5b9b2e7587c8272df3ecb6c564ec98c4d495497aab56c2
MD5 c5b8ea5602ee0f7800c35576b13c32f2
BLAKE2b-256 92102c7cef01aa788a54ac6be9da2ba0f461a515f0b07e8fc765b6a93ba2f0c0

See more details on using hashes here.

File details

Details for the file teraplate-0.0.4-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: teraplate-0.0.4-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.14, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for teraplate-0.0.4-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5248807b4ccc5ac9caa1480f469133f64d70450726b1638b15da4b450bd69a00
MD5 242867b85e287e52788267a7f34e55f7
BLAKE2b-256 98d22ee9e947ceac46fb6ad8a6f945f8f01794a84ec15d8e5cd1435610cf9b50

See more details on using hashes here.

File details

Details for the file teraplate-0.0.4-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

  • Download URL: teraplate-0.0.4-cp314-cp314-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.14, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for teraplate-0.0.4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bd60fd817e252bdfed822e596e335c1ee962d0f079707606da64b6cb0be05cf4
MD5 ffa09a531c1dc4b89411f1408f02b75a
BLAKE2b-256 caf1298b2777f5d08e6867765786fbaf609d22ef2b984ff46e859b113db81199

See more details on using hashes here.

File details

Details for the file teraplate-0.0.4-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: teraplate-0.0.4-cp314-cp314-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.14, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for teraplate-0.0.4-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a15de5da2f67fcbe2dd7dc41ac927d1307607ecd194508225844e042aad3ae73
MD5 e500041aed8ae2f302bfa19e5553f8d5
BLAKE2b-256 31ea67ada21cd13d1d9fa73498f8337b6ea93df8d14f7e627289a29e96455c3d

See more details on using hashes here.

File details

Details for the file teraplate-0.0.4-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: teraplate-0.0.4-cp313-cp313t-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.13t, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for teraplate-0.0.4-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fbc616eaa5c2263e8111be2ad88c34ca3dc74c762cc3d00b8680ec407d5d9395
MD5 028cc3c81da3590bbb9f8466798df221
BLAKE2b-256 a24e411be5d40924ecc8340089dbe481071ad8b6f89b435c2f7a46bbdbae0cd9

See more details on using hashes here.

File details

Details for the file teraplate-0.0.4-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

  • Download URL: teraplate-0.0.4-cp313-cp313t-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.13t, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for teraplate-0.0.4-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 57b91df70a0a9f1e8b4bb6a57002dcedbcddf3fa774b19c33138aee211a9f26c
MD5 8022e5314047131adfe7c308aaae551b
BLAKE2b-256 29330e80bb8248c17be3cc9c85105c301f7c494c58e887d3b19916345cfc449f

See more details on using hashes here.

File details

Details for the file teraplate-0.0.4-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: teraplate-0.0.4-cp313-cp313t-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.13t, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for teraplate-0.0.4-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c24fb9b9cdd5ee278f2984ab8a1bab8b87350eba37b35129fe3a75c42d128c8d
MD5 9dba6ed39c070f67f40985effebfc090
BLAKE2b-256 85b4e6762be91e91333133e6427abc4b1fe480c9177cc4acd511ee6dc6698445

See more details on using hashes here.

File details

Details for the file teraplate-0.0.4-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: teraplate-0.0.4-cp313-cp313t-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.13t, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for teraplate-0.0.4-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 65afe959f8cb6775c10ff271830cdd4c7962a29da1edb515f77f87887b8edd2e
MD5 ca02b1f7061d2d96a367efd3acae9534
BLAKE2b-256 639520cdac0df9c71876cc780b36e32a52f7531fb551ced29da6bb51781297e2

See more details on using hashes here.

File details

Details for the file teraplate-0.0.4-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: teraplate-0.0.4-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.13t, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for teraplate-0.0.4-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2028fe5efb8a1400a77b0dbf0ded8d78443511ac5672194bff537733ec1a2f04
MD5 822b52b57557100fb5837a265fd9481a
BLAKE2b-256 c639dfa0ad98f1400dc4c6707fc25a45c274d593a2a5f209de04906f8328a3b2

See more details on using hashes here.

File details

Details for the file teraplate-0.0.4-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: teraplate-0.0.4-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.13t, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for teraplate-0.0.4-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7dbbade31bb13f059c390bc07f1fc75ee7ffe49c4549b93aa79779a67438caf8
MD5 b0404dc26f606b6aaa724bfcbd785ae6
BLAKE2b-256 ae71d5a55413b7bbb9ccd702527859337845ee4c209d5e3feb156527feb0b623

See more details on using hashes here.

File details

Details for the file teraplate-0.0.4-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: teraplate-0.0.4-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.13t, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for teraplate-0.0.4-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d6d1ffeb3bc370b5b2e3099e9b7c6dea76b5dbb090aefd4283d3e67c6629c1b3
MD5 056893e1db8a83cf564feff1e148dfe8
BLAKE2b-256 93452f512afecfe2cb60cc86b13cc0d51c833b39282ca7563fb0e963c44eac1a

See more details on using hashes here.

File details

Details for the file teraplate-0.0.4-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: teraplate-0.0.4-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.13t, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for teraplate-0.0.4-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5e740ce388e14eb87fc648d13677d5a0dd8c501994697bd59190d596d42a4c3c
MD5 4c74fb425427fa74418f9ec68d999b4b
BLAKE2b-256 3a21242374b969d123f7da6fb847d4628af5d62d7d6517aa710e6afd00a0b053

See more details on using hashes here.

File details

Details for the file teraplate-0.0.4-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: teraplate-0.0.4-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for teraplate-0.0.4-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 f219dfcc117ac99750da06b3c8986557bbf116e867c5b928dacd704373a0ffae
MD5 f81f1864e7f7dc6613474cdc2bb6681d
BLAKE2b-256 b8265cd4182474f76c515e25354c661cb199281eb3c9bb45e1f98d4b459db492

See more details on using hashes here.

File details

Details for the file teraplate-0.0.4-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: teraplate-0.0.4-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for teraplate-0.0.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f759f012ade9754d3f40324519cee1054d6b94ca1b737a6a040e602b539792bc
MD5 3a272ec0202843a2704418ee4032639b
BLAKE2b-256 e45977589b0843eb2d56b1ba402881a2a040df80eeca799a3910f21e800fddb6

See more details on using hashes here.

File details

Details for the file teraplate-0.0.4-cp313-cp313-win32.whl.

File metadata

  • Download URL: teraplate-0.0.4-cp313-cp313-win32.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for teraplate-0.0.4-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 111ffbae537f092ba980c9e3fc4b37cd5883a77bc4694a62556c72832cae086b
MD5 c1e349a4d93b862b0e0140e244cf29ac
BLAKE2b-256 6d507e74f9c4772a30d9bfb8cd3a93eb2e8049955e1be48db781bff870a24afe

See more details on using hashes here.

File details

Details for the file teraplate-0.0.4-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: teraplate-0.0.4-cp313-cp313-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for teraplate-0.0.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c71bdf5b2cc4fe79826967a025ff8febc5ab4ec4f4c2f38d54ffaa3676af0416
MD5 84d497239d582ae584f68636f22885da
BLAKE2b-256 e6e0aa143fc4fa4d753db36bbb659d81a89094801311f1b2d8cde7c9588242d5

See more details on using hashes here.

File details

Details for the file teraplate-0.0.4-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

  • Download URL: teraplate-0.0.4-cp313-cp313-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.13, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for teraplate-0.0.4-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c9c74df6dec2ba4620f7c4933434713d29d1d1783991d650dd714102cf17e4f6
MD5 336432b9aa971c5f132cd86b67a91cdb
BLAKE2b-256 853b2641039fdcffc0c4b8e98a2b15b71906268e35ce329d4088b48b8b0f36f4

See more details on using hashes here.

File details

Details for the file teraplate-0.0.4-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: teraplate-0.0.4-cp313-cp313-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.13, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for teraplate-0.0.4-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 96ff0d7cdb593f67477474a7812ccf04fc6ed0e1e6811ba705a2a61e4fe038d6
MD5 1be79e26e3c96c34fbec96ba55881ab3
BLAKE2b-256 007c053164a08233899f03233a205e2022c1ff23ec5f368b4e842b7609327a58

See more details on using hashes here.

File details

Details for the file teraplate-0.0.4-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: teraplate-0.0.4-cp313-cp313-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for teraplate-0.0.4-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 625b01dcdafafe11ce8d8c71d92860b7c504aa35046ab9df6b1d0a9a0b9da487
MD5 97a2e67e09a3339bbc97a7da8de6a7ff
BLAKE2b-256 9f4c36b684e70bbf7614c0eb3bd14fdf72f4488a1305afb61cbc0948dfc03842

See more details on using hashes here.

File details

Details for the file teraplate-0.0.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: teraplate-0.0.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for teraplate-0.0.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fa5f04be8446b1787851f552fc3e9d6d83f3ecb888dbc763265e3321738b6d77
MD5 d69e1c36532e27859b60c00f113dde0f
BLAKE2b-256 8f382cce040c2224cf011c32b69c40107e23c249da2d2f43c004297bac620b57

See more details on using hashes here.

File details

Details for the file teraplate-0.0.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: teraplate-0.0.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for teraplate-0.0.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 128532439aba92326b6c6150c0de9bb7c4d5f4a191729dbf6f2a2dfbc56549af
MD5 55a2ff84b967fb57ebc360af36bef449
BLAKE2b-256 fd6dfcebff6658f0c4ba3d15dabb5be0a6e1966dd4ef88eff9754386665a86d9

See more details on using hashes here.

File details

Details for the file teraplate-0.0.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: teraplate-0.0.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for teraplate-0.0.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c4235068675b46fa01211996ef93760eca6f11e2da954b2a0a54f95370e48cc0
MD5 8ffa8707b60340a9f922322d567541bc
BLAKE2b-256 2bbe8cd8ed50d545cf9f9c923c671d68e00aee9d35e4b9b911e469a0996fea98

See more details on using hashes here.

File details

Details for the file teraplate-0.0.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: teraplate-0.0.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for teraplate-0.0.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 610d853ac14158317cbd4b431275a43974be94abf1504a5d8aba1577fd5ed08b
MD5 4f5e87c1224b613c50feccfb8d22be30
BLAKE2b-256 adee6651fbed605fcbaae98bb0e7167338a8c8e15f3e4a7780035870d0e4f236

See more details on using hashes here.

File details

Details for the file teraplate-0.0.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: teraplate-0.0.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for teraplate-0.0.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0732184dc262235ee14694657d3a7a3d2fc585fe512d196759dc3d13459b885d
MD5 a0e31d850e48aa791e7319d30b1c43e0
BLAKE2b-256 4f7116c09e1da2987778e685aa1d22148572ad90c2097a788ec21eaf54653dea

See more details on using hashes here.

File details

Details for the file teraplate-0.0.4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: teraplate-0.0.4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.13, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for teraplate-0.0.4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 424def4c838e48de1d4d9a48734cff839dc5d7db01de9413b753d66500e28236
MD5 fe1504b5d02d0f44d78009e6a6ed486c
BLAKE2b-256 8669e950488e85df7d3e1f418581d7f6b53f470c95eb6cfe3cc0a030362a4971

See more details on using hashes here.

File details

Details for the file teraplate-0.0.4-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

  • Download URL: teraplate-0.0.4-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.13, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for teraplate-0.0.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4b9266b3703f7ced046b90817dc58cc2f93c92e909bef8f54a9f89c5589caabb
MD5 20ba2978eaabd735cedf5a0ed874bfb5
BLAKE2b-256 ddb473e28d6fbe3f35e6605ddefd2b39fc7cdb49529c8f4207e587fbc5a6193e

See more details on using hashes here.

File details

Details for the file teraplate-0.0.4-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: teraplate-0.0.4-cp313-cp313-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.13, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for teraplate-0.0.4-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 10b24523b2321f5845523bc0ffad16bd66abe33bec235505955ba4f281f5f1b4
MD5 7907ebfe0dcf48839ebc5454f74c2b2c
BLAKE2b-256 0aab50c29956d3cf634d15ba2a66618d3108c63340a7e357010148b26ee1e101

See more details on using hashes here.

File details

Details for the file teraplate-0.0.4-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: teraplate-0.0.4-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for teraplate-0.0.4-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 ced459216f2dcf3c3085993ccf4db347a906fbe914268657d179b5e9e66ec26a
MD5 3aab44abc369a8fc7a883e868f4c4c8a
BLAKE2b-256 1b09261db472435adff1c354606f652bd75053f73d408da715d9747447d4bf37

See more details on using hashes here.

File details

Details for the file teraplate-0.0.4-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: teraplate-0.0.4-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for teraplate-0.0.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ad7ef055ddaa220233120aa75c60800a8dd58d02466d22584e012cf769fe57d0
MD5 fef1bcce7ee6a440a82cabeebc7be399
BLAKE2b-256 2ccf1a174d9318330b9c049bc491c0a2c2ffd30b9498f65260cf4d3bd9d8a968

See more details on using hashes here.

File details

Details for the file teraplate-0.0.4-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: teraplate-0.0.4-cp312-cp312-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for teraplate-0.0.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e2ef8a4896592709fe588fc5b621018700b2dd7c3894df2977996a054a1730d2
MD5 8c4045b9eac35686512c2c9533119b1b
BLAKE2b-256 2c4ab5e32ff2b508ea00a4ee3d569440e6ab5cfbff782d0b40d0b79bc35dafbb

See more details on using hashes here.

File details

Details for the file teraplate-0.0.4-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

  • Download URL: teraplate-0.0.4-cp312-cp312-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.12, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for teraplate-0.0.4-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5a98e11268980f5863e00162c5768ab5f08231456ff10c3b922695ee48b49103
MD5 9b40b69b72aeb50e6cf24862d6334997
BLAKE2b-256 a7ea21056f4ead703a12f751a646bd322d0debeab3bb7c8288d27417ad6f74fc

See more details on using hashes here.

File details

Details for the file teraplate-0.0.4-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: teraplate-0.0.4-cp312-cp312-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.12, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for teraplate-0.0.4-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5ecf52f13030d62164e11206a7c66cee9bb723926eb1bbe437ee8fbaf5101615
MD5 a3e6971762e029967716b21555f2ae29
BLAKE2b-256 ea68de00661e9e1bba0a817491d2ef892551176bc540717d6c445b244c3d9293

See more details on using hashes here.

File details

Details for the file teraplate-0.0.4-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: teraplate-0.0.4-cp312-cp312-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for teraplate-0.0.4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1e9f18b82c74340194615fc08585ce07c1565c33fadec460de05082331572e25
MD5 6ccc54f208d0f01b1b8509ea44064507
BLAKE2b-256 05a510cafbe450ee448fc8f8bf6c582d68195cf1983d87a30d08c5a843f3b0e4

See more details on using hashes here.

File details

Details for the file teraplate-0.0.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: teraplate-0.0.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for teraplate-0.0.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b957ee1ab4d8c6fbd4d74b3bda7ca46f7dd6967dfc17aa689144524682f907e0
MD5 8bad81ff90f4cb1cb2a94bee3a59c5cc
BLAKE2b-256 061472c09de7869e9367dbe27ddc6d482945b250f45133d903a6c863a091d8f8

See more details on using hashes here.

File details

Details for the file teraplate-0.0.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: teraplate-0.0.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for teraplate-0.0.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a2644a9e40655e1a69d63abed38dacfaa14d3c4fedc64c40b5c9808724dab4f2
MD5 7706b2b07fe9cbb6b49a2687c51be086
BLAKE2b-256 1a4cc676e872463c5c7e7b6530c95aef2b7d543bba89a5954e5aaec4122a9d09

See more details on using hashes here.

File details

Details for the file teraplate-0.0.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: teraplate-0.0.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for teraplate-0.0.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 268ad255502c800a92b32df966d8ff5476eb060c16bf2539417aa0c604039de7
MD5 82ce202c08102dbcdd52c4f6dea98962
BLAKE2b-256 1f6772f6266d1ab7de5a09abdbd6aa1997dd52a298eec99586f3003c5e202e08

See more details on using hashes here.

File details

Details for the file teraplate-0.0.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: teraplate-0.0.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for teraplate-0.0.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 103197eeb30b6824d1ee8edc5718c6d43313d440430ad257acdafa0631375902
MD5 7d8de1fe9288f21d5f5a1a66bbfe5d5b
BLAKE2b-256 2d74e002ebd11e6aea219cad621373467ea308d3c8d98791ad73df21f645af36

See more details on using hashes here.

File details

Details for the file teraplate-0.0.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: teraplate-0.0.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for teraplate-0.0.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8258616dd3360cb8d8a251d6c1157ff7e36903ff0c429fbcef30294b8a4bb6d5
MD5 e695ade90c87c47cbc6375ea50ce2f47
BLAKE2b-256 6dfafcf3811c5e004608f5f5a837e0d03df25f65ba525717bf3b8895b62c9a83

See more details on using hashes here.

File details

Details for the file teraplate-0.0.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: teraplate-0.0.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.12, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for teraplate-0.0.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 460542c55665f53e6496ab049af251ba3f38c56e6926dfba3384e67780053ce9
MD5 117b86e18231fb009e060831923828b7
BLAKE2b-256 c0cffdb194991c2b3e692cd442c8dabdf669e2cfe64c43627e79a5a3186d6c42

See more details on using hashes here.

File details

Details for the file teraplate-0.0.4-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

  • Download URL: teraplate-0.0.4-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.12, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for teraplate-0.0.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4182dc9b9694a0c007d5cc6103f9d45d9bac8713baf250da73447359f7ee90a6
MD5 e123ab7d6761f0f37a211e81a7d17467
BLAKE2b-256 12191ad3bf15cb4429779998eb032393f94457a73a221e4e5bdead6eb57c2382

See more details on using hashes here.

File details

Details for the file teraplate-0.0.4-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: teraplate-0.0.4-cp312-cp312-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.12, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for teraplate-0.0.4-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 650d6f4d3b1c6900ba2bc4511b2f7874a1118f14087919b291229e7f2e1a33a4
MD5 5032e8e5649c589b3204d1f041b5feda
BLAKE2b-256 022d5cebe0c9b9aa890ac0ad88c4df04fbb2e61e1c98937b974356bbddbea68a

See more details on using hashes here.

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