Skip to main content

A fast Tera template engine Python binding written in Rust

Project description

teraplate

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 engine.render_str(...)
  • Inspect loaded template names with engine.templates()
  • Accept plain Python dictionaries as context
  • Support nested JSON-serializable values such as lists, 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.

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 serialized from Python into JSON before being passed to Tera. In practice:

  • The top-level context must be a Python dict
  • Values should be JSON-serializable
  • Nested dicts, lists, strings, numbers, booleans, and None are supported

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.3.tar.gz (27.6 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.3-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.3-cp314-cp314t-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

teraplate-0.0.3-cp314-cp314t-musllinux_1_2_armv7l.whl (1.9 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

teraplate-0.0.3-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.3-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.3-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.3-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.3-cp314-cp314-win_arm64.whl (1.6 MB view details)

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

teraplate-0.0.3-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.3-cp314-cp314-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

teraplate-0.0.3-cp314-cp314-musllinux_1_2_armv7l.whl (1.9 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

teraplate-0.0.3-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.3-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.3-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.3-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.3-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.3-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.3-cp314-cp314-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

teraplate-0.0.3-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.3-cp313-cp313t-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

teraplate-0.0.3-cp313-cp313t-musllinux_1_2_armv7l.whl (1.9 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

teraplate-0.0.3-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.3-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.3-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.3-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.3-cp313-cp313-win_arm64.whl (1.6 MB view details)

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

teraplate-0.0.3-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.3-cp313-cp313-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

teraplate-0.0.3-cp313-cp313-musllinux_1_2_armv7l.whl (1.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

teraplate-0.0.3-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.3-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.3-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.3-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.3-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.3-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.3-cp313-cp313-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

teraplate-0.0.3-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.3-cp312-cp312-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

teraplate-0.0.3-cp312-cp312-musllinux_1_2_armv7l.whl (1.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

teraplate-0.0.3-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.3-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.3-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.3-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.3-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.3-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.3-cp312-cp312-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

teraplate-0.0.3-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.3.tar.gz.

File metadata

  • Download URL: teraplate-0.0.3.tar.gz
  • Upload date:
  • Size: 27.6 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.3.tar.gz
Algorithm Hash digest
SHA256 0aa2f17896cf285f34967564ed964a61c300bf2c60c67786a4c51ce78aa9a76e
MD5 fc52eb7c63d06e72459d61cee029dad4
BLAKE2b-256 48c9d282896ff83a32796f80aaa1e26abf0dc562141c83f956d13551e446015a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: teraplate-0.0.3-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.3-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 15b7f110a53bd6d4a940692b2675cbb8cc39c4126ecb537ff86a4fc0d3eb5700
MD5 76a82812a57e57e524610b11fbb7ac47
BLAKE2b-256 4a6ccc14edeb52a479c42307918c3a14b6b63269bdc321f1afe672ecb673a1e8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: teraplate-0.0.3-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.3-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 eca89be49e351c112518f83d796ffb6fb6727b9d1c1e7d8939e8c90f68d23d66
MD5 7310e335831141b84bab69f7ae169729
BLAKE2b-256 9ae20960f15c233198b28d27a003082864bf98dfdf5379d9d63c270210415901

See more details on using hashes here.

File details

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

File metadata

  • Download URL: teraplate-0.0.3-cp314-cp314t-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 1.9 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.3-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fe3b4c2683a8156c9c61fc2830c8803148af841c3d65009255a0e9019a0f2f87
MD5 912ff7b92cda76e6211f31e7cd9d2d9d
BLAKE2b-256 cd6ee54427fb18f4525d63c978fc3361a84929cd3b4a1702d8d43b76c370c997

See more details on using hashes here.

File details

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

File metadata

  • Download URL: teraplate-0.0.3-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.3-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 978f14e5191002e2025a8ef3e76efe8d94ffb46e5993a430381540ae982bf6a3
MD5 dc7b041de9025078782f7c15234220e5
BLAKE2b-256 82120651283a945a7556bec8205ac2beff6697acf7e8a3acd47eb6ff0fc83cdd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: teraplate-0.0.3-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.3-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 655d08c05859b8061ca131c09fafc29ca0ccb1eb831828cb181eaead7e46ba4d
MD5 0e68d4ff7918dcc59261cefca571c061
BLAKE2b-256 057a6e7db1d3fadd2159c27e2f38131c32acfca68f296556041a8e8d3ba8ceeb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: teraplate-0.0.3-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.3-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9ac056a22d894a31e9a04e1198967964de179edf8ff852661a1b474929004bc2
MD5 88d6a3b05b6e89360c596ab8368605aa
BLAKE2b-256 17e1df11fbb25cb21a035637107c68453321cec9f4eda6a706c8c566ebea63b8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: teraplate-0.0.3-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.3-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3ac5152b2e9177084d8e121f70b9d5dcbd6a6e3614720bf5d38c4a8cc95e5516
MD5 69948bbcfe32eb4f14f90813c096e6f0
BLAKE2b-256 d7db836ab64c6cffc1f42234395dc1bb3ed69f84c91ec4c6d11737d7e4ec9dce

See more details on using hashes here.

File details

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

File metadata

  • Download URL: teraplate-0.0.3-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.3-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dff1a68905f5e6402a43e602b492b38a5c944b761284a4362a00b035ed818ebf
MD5 da706757ae7f737c99e3eed60fc5f3a8
BLAKE2b-256 70e93e9c81febcd59214302ed049e5bff784a078735a21267f8275fc50bd80ce

See more details on using hashes here.

File details

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

File metadata

  • Download URL: teraplate-0.0.3-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.3-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 0f49681a9f977395d02db80d168142220bfe746e68d384cf6d9eafcc19b8d7e0
MD5 aa04f0ebe9425bfeec43171ce99e28b1
BLAKE2b-256 f3f7edc384d03046cec7664944a5234b93c856877d309f405be495d9c2ce1f06

See more details on using hashes here.

File details

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

File metadata

  • Download URL: teraplate-0.0.3-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.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 0c443565f320e2ec1582a57329135e9417b55a996a69328b76d455816f35adb4
MD5 a32f4fcccb3db1dce471382442ab6294
BLAKE2b-256 cb9707aea1c6eb64889d78d8df1b1751d24d15aa9366b8519b43970024cfd471

See more details on using hashes here.

File details

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

File metadata

  • Download URL: teraplate-0.0.3-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.3-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f42a2c2297e01656e87689bf2d04bfbb015d03b04036c5d5a8f891b837377662
MD5 a81dfd3782f7b6008243124c4c312764
BLAKE2b-256 ebc08dbd553f5145b785a216f00259ff015e431f365e3002efb0aa5936280fe7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: teraplate-0.0.3-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.3-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8231da7e2ed95ec0433fa82f8f60df8379c1b9b38a2a3dc08abf211696b6cbec
MD5 dcedd533ea1d5221c4e9847cf2c8d613
BLAKE2b-256 2bba2a0fe7a57abda6d55f7f1954967a718b8445b64361dfe8fbe6628f0aecc2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: teraplate-0.0.3-cp314-cp314-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 1.9 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.3-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a6ffdecee6f2fb33592b290a957bf2fa135d403e9ae14c60aec1470442e3cd5e
MD5 1335c3de2234322ce9f3e173e100312b
BLAKE2b-256 8e2eb9b1c919f36a6717497bf47f4f9b0083b2e799a5e74735cb3f56ef1263c2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: teraplate-0.0.3-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.3-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e236a152fedf5b8598a2f0baf711aaa18164117950213a5888ec4db1eb802015
MD5 a29abb74bbf6955d259c3170a812d402
BLAKE2b-256 100aeee4daa3a56696fc9653fe8b83b1ea2d97d1adaaeba69b3d2769bb3a8573

See more details on using hashes here.

File details

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

File metadata

  • Download URL: teraplate-0.0.3-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.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2bb42234b4052581258012e1ecc7297c9d47f12af700b3f0132ab9acbf0874ab
MD5 9fe989c541b4138f36f5ebf1ba053769
BLAKE2b-256 89821a05726fea891cb482762a7680feac2c9ccf1d6b819079a2deba4edc080a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: teraplate-0.0.3-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.3-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 48987f2ffa96df231323f190f5ee2ca837f49954446f7023fcb6f37a1a25bea7
MD5 d22f743b859aa681696bb3ef239fc2f6
BLAKE2b-256 471100a2527ef46208170fe71ea178d1abd5bbe566d24bf236ec6dd2d792f7b6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: teraplate-0.0.3-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.3-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 71639818b475e01b0faf9f45f2e5935c4fb4ffc36edf02a80840eb2753754678
MD5 d8eb7a4852149014f07d4a3b5616da10
BLAKE2b-256 4961bc4ce63fcdb9ebf067c0a7c5cf51fb03a9f78f562346767b131732538c11

See more details on using hashes here.

File details

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

File metadata

  • Download URL: teraplate-0.0.3-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.3-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d018f1fa0a57420d0c85bf7e360b7b05b03eeb6496981280bcc0ed1519e7ae93
MD5 c9f90ef1c57277bdc89f2ca324861f70
BLAKE2b-256 ddf186cdd05be1f388389df61a512c6307a970592e70685a3f166649a05574df

See more details on using hashes here.

File details

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

File metadata

  • Download URL: teraplate-0.0.3-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.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b451eaf8ba8a9e4fec16ccc7cac6ff5f6eb232acb8f7e7ca96e0c943a2264362
MD5 6295b97e665faa88199ef877e75b74b5
BLAKE2b-256 e15c5f20de21e6dfc58d82c5d93e13fe7e51d7708fe9dabc0fa994e85af129fb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: teraplate-0.0.3-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.3-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4795876baaa7e86f101cf584b99ddb6e038a663d406205dff0253c5433c421bb
MD5 e9a0f13aad935c3b81794fe81a3e46a4
BLAKE2b-256 067ee1ab8a667f88fa633d2366f3a33f7caab6dea4796498eb3405cda5940ac6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: teraplate-0.0.3-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.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7c49cabd002f3b3ad5861b1f8a3b610e43ef353c1bd18b5ef8bd10e3d4bc91ee
MD5 fdf2acc6aaa5ece4d79f47e760c1e350
BLAKE2b-256 b038555669d97f15d337b69faf2c5af3cb66c1925d2271ad76b7b5b69aaba5db

See more details on using hashes here.

File details

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

File metadata

  • Download URL: teraplate-0.0.3-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.3-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ecc175c72c915215b9149f6061404193d4ba3e8d39c5fb4858561934870614c0
MD5 835aa15801e9620d9d76b1cfa9e58cfd
BLAKE2b-256 7d080a1934b92eed936f47c5a53c52193fc893ef9224ea1453a707ffe758aa69

See more details on using hashes here.

File details

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

File metadata

  • Download URL: teraplate-0.0.3-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.3-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 64d5e011cabb2d0a3cbce3d12cdfafa60c646172907fbeaf7c538ead58ac29c8
MD5 c6274644b87f7d37807f9b07e201bb63
BLAKE2b-256 cc183d6b51d5245d518def98d50cb4b87d3ab2132277404ff0ff588773ef848c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: teraplate-0.0.3-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.3-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8846ea5577daba3ba3df5bf1451be2b0f1bbeee50646a2ae11eac51fa2962d98
MD5 ad6a31db8ef9410cf2879a26e1bd4a77
BLAKE2b-256 db070bd6e090e10293f0a08b92764e60e6d07362751bbd4ab1d6f417b7a3484e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: teraplate-0.0.3-cp313-cp313t-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 1.9 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.3-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 45c4605135ae94561104e0afcd95dbd506835fb49cc0f3d0559901e4eefd5f2f
MD5 32c6469626015f0b13e87bc1f1242cfb
BLAKE2b-256 17ec7080f69ed28490b8800e21f582875df789b041d5b441f73b7b0b7fb774e4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: teraplate-0.0.3-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.3-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 330c21876c1fcc7d7301cee09666e0b921e45df5e18cf1680fea8d191dc74bbc
MD5 7c32e17ddf3d21d7569d641f8f8415f3
BLAKE2b-256 56907e2d5e18c9ba50019e6abe2c1760d65eae5dcaecb977d3b01732681e3f5f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: teraplate-0.0.3-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.3-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c4199eecae97389bc24fb2404d2bfd9d701f5ac3f86311fbd56b03a15c2128b3
MD5 b1def2f1dc76251838ad055627cfb558
BLAKE2b-256 1e6321ab58c6b09126a4d58ec7891f8fb9ec3136835508d08a6068391849ff97

See more details on using hashes here.

File details

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

File metadata

  • Download URL: teraplate-0.0.3-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.3-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 79494fae334d8658f7ce919f1c0e9bb090e0fa54cd8e67d2ea1b2a98d8838a08
MD5 6dad15255d8b7cc0900e35b558b1ce4d
BLAKE2b-256 12c3048646b65cf20b1bca8b3791d55b739e726d9a87bc64b73fee9688dd5166

See more details on using hashes here.

File details

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

File metadata

  • Download URL: teraplate-0.0.3-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.3-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bc5cea4268e4e9541d1205e6a320b503535e1f5b5968d80ca23cc28b896696a3
MD5 9b791401cbe91e149411c0f208ddc7dc
BLAKE2b-256 24208fbfe2f5d6bc60ecef49df7d75ca6f0d12eb9e7dad09b0cc5be69c9de04d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: teraplate-0.0.3-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.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4bfc3eb51c5dbc917de2175230b73fe1370722d3f58eeadd5a86b782056515dc
MD5 aead4f113061812040cc023b30f27804
BLAKE2b-256 3599b3468a5d856c81eb8d4ad393f7f45cd09cb622ed9a0b5c34287e067cfda3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: teraplate-0.0.3-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.3-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 90237721adc784cfe6e23ae2fb181ae420172113bf0e9c6f623c096f412423cb
MD5 66a1a0d2888c553462cca2b0a832e3f4
BLAKE2b-256 ad8b3d51c126495904b0021eeb6d21c0465ed9718097c5dea69d11151650cd3b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: teraplate-0.0.3-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.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 9fb86d364c8be2aa0f4ae8c59f71c278d7d045116cb262e9563fc920e8c24e82
MD5 d058ea4b7b116f51214656ff819a6378
BLAKE2b-256 3346a650d7fba93a380199b2c9c202a2f75cb41cfe9ae70a7d7d5aaacff25887

See more details on using hashes here.

File details

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

File metadata

  • Download URL: teraplate-0.0.3-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.3-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 af5ee8b876267f95ef5d45b246a79d2c2043fda03424b35285986c3bc203e875
MD5 3b60c85d30388882acbb5c72d4a3ed3e
BLAKE2b-256 ab4328c703ae97e44859d6731521e77aa1c8c79a1e699a1885d71ec88134955e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: teraplate-0.0.3-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.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dcaece80dc052bab92e8182abeb64791142a6750012c61c62ebc9f98d3fbef38
MD5 4785b7fe553042dd6fffbfd0c43f4a4a
BLAKE2b-256 291fe8a02965aae13de9ae23483416d8ecfefe0c988d4c5332a5b98cfd9b8482

See more details on using hashes here.

File details

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

File metadata

  • Download URL: teraplate-0.0.3-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.3-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4cdec7e61acc25373dfc354dc2be793a4801963ab65965d94df7d28f082502bb
MD5 117de95224dc7a21ca4a88afcb74de12
BLAKE2b-256 42be81c5014fffdb8a321b22b1d0b385fa32ad66f7aab78faf9fef770407f6e9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: teraplate-0.0.3-cp313-cp313-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 1.9 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.3-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0c6913fc71e8e040aa9fed12acabc418014a205f239dc8c9f0bff48e162307d0
MD5 46ffbf647efc45a4497af133506a653d
BLAKE2b-256 096bdd333e7468dc0745efe9d4ad8ebebc6451355a4b669f71b80ffd3b5af957

See more details on using hashes here.

File details

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

File metadata

  • Download URL: teraplate-0.0.3-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.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 178fd89ca6687b3cfda4ad3cf5b8708e893134b1c4f96e23bdd5598825a069e3
MD5 1096ded9d5640c0e230381d340ea727f
BLAKE2b-256 d4baa33660fb594fa560595d65cc82dd86979f039813a4e99a9ff445939e236e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: teraplate-0.0.3-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.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 66533ad42e1bbc28e0ced208d31ae838d62084f24c27e5ab6e2f09746e76eaac
MD5 960c8a758862010c623cbe2dc7f7c32b
BLAKE2b-256 7141f6869676d37a4c0f4876bf8498bbb3c516e05cd445196aa4fa6acb36533e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: teraplate-0.0.3-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.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5381234a9320a3bec6a26d2e694c54a61093ad4d3f120c9bf133752bbd8c1443
MD5 cf2afdd76f0053db5c3908fc6a3d2389
BLAKE2b-256 2087d5443d127e9de9f0db9c11d8902cf6c4aa67d767220cda897a563bdd4e44

See more details on using hashes here.

File details

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

File metadata

  • Download URL: teraplate-0.0.3-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.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 77e46c038d8db4134b9193f4cbc5fc31aa9293e994afd696a977ece1ba87de26
MD5 3a97e6150c86d375c3ce90ce72c709dd
BLAKE2b-256 875d8b534db8e5787f8ebbcedbf4a21ed6062ce639c8f7e471bfc87e0e4f579e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: teraplate-0.0.3-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.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 580b39412cbb1a4cb2e53f585e472ea0b08c0554f13c8fd063629eab629b8846
MD5 40485f51206d4bccd9318ab1ea0464ad
BLAKE2b-256 53e43875a6c4d26a2b6f2609f207a8a41cfa294258c763c09d405b95712c017b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: teraplate-0.0.3-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.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b14520ec3bbb81fe84e38fcfee4c09156a5cb2eaf423affb527ba8757d509dbe
MD5 fb3d8d69aafbc77a29f7aa1bf785aa6c
BLAKE2b-256 4dc13b84099d02e85fc470bfe685ae94c1175ff6f01fe5335f0c431081082a63

See more details on using hashes here.

File details

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

File metadata

  • Download URL: teraplate-0.0.3-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.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 660a2607709e5c7e7c8ceffe13c9d17c5d1aea709324e19492be8e29c7887d20
MD5 c054c90f6d73d55a9b4c71f682277fa1
BLAKE2b-256 41525234604c4caaffd69bd8c1ba28c2a4186083091a3e55df9d6fba81237cc2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: teraplate-0.0.3-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.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bcc6c2c07d8350d0f3a0ca8e4b0d0d44f78f06ecfe0234d253b6471e5b010913
MD5 92e2da95d474fb25108b50e5b629ff55
BLAKE2b-256 1c31d5621b85e84b889f6b8a18978609fe069fd3c78fb5acb343c7fdcfbc8b27

See more details on using hashes here.

File details

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

File metadata

  • Download URL: teraplate-0.0.3-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.3-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a2568f3d84490875c22c75d5af7c1353acfb83fbdc78c6d894b067f45a2a5884
MD5 3a14fa91b77e7a9a4d6c02391367cd06
BLAKE2b-256 aaf74b58ac2dc746c56de7fbdb6365ba9cf3135fa00d29dc94e9a8fbd5243ce9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: teraplate-0.0.3-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.3-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 cee2560c91c41b4bf658e12348a64f4d50e5a47160601c9a60276eb3d32ee5c0
MD5 db9a32954b1f6243992f30e87b55138a
BLAKE2b-256 12c7ba19827809f7c8f94bcd49e794291f0dd85bbd70431d7e007ce9c2a374a8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: teraplate-0.0.3-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.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a4d6b25da5913a25425de54e632451325be99f238d872430cb8618b63b007c9f
MD5 ee7a91cf907627a6b7fdf96d66a74ea1
BLAKE2b-256 df3dbb90dba3582dda2e2ae848127097125fe7a5e4ea9e797d93c7a07b521d09

See more details on using hashes here.

File details

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

File metadata

  • Download URL: teraplate-0.0.3-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.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 610125a61b037b9e49ed4c5bcf6375a097b6afd65bf9809f65f4bf48b1ee3b9d
MD5 5353d944fcc8a57b9dee61939e166bb2
BLAKE2b-256 8a9bd194da69dab03e2d047f9b12625b55de7b18df5feef3561ffa395e071a19

See more details on using hashes here.

File details

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

File metadata

  • Download URL: teraplate-0.0.3-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.3-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4881245d7bf1a0607bb6f4239056516ee5e3c9d1e42d98ecf21d6b94c09f4aac
MD5 686dd24546663a137ea86c5f5cebadc8
BLAKE2b-256 e1329a7facaf399876811d174ec4cd6059d47fe4e0f7962f6b3ea7551b98270a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: teraplate-0.0.3-cp312-cp312-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 1.9 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.3-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0a647f870c64f9b5298e180efadc444916ec656f40c7372c09c9d0a7691db5e8
MD5 caea4f796f41c420063f66782120d8f6
BLAKE2b-256 a2b66a022c754dcf8b6006663037f887974287b5b3faedc0886779dff3eca8d0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: teraplate-0.0.3-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.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 90b30be489b1492556e5dc485e3db7df3a38925eeff0bbf31b6ccffebfb4d474
MD5 8b22283303c0e4cc167acb695f866703
BLAKE2b-256 42a977d39195f453b37c21a5bd60d7bff035ededd0cd2cf3430d0137c91782fd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: teraplate-0.0.3-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.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ee4269b9fe661f2d616b4b4aa407d04cbddfd463b1af1f901b37855c1fe5f66a
MD5 47396c4029b381f8ec1dcdb1efe5e37a
BLAKE2b-256 f6623f2c865af15a07a36a2d8003e862debafb0c7d1564009e4f7683f9e036d4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: teraplate-0.0.3-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.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e5cf655f87051737d94724aab166a6733b7f4a15ff4d8145ff59ff83dc676c23
MD5 2fd02f47fe2274874a385fc07ee8180f
BLAKE2b-256 ff069989cfebde51fbb2efcd7a67bc5bee3748d0ae2ae59be42652e2d1e14ce0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: teraplate-0.0.3-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.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 955ec854a0b47c84968ee19a15d13758364eb40a9688a77d693021131d898281
MD5 fac3c88a392d77b5a8ecde5efdde3c23
BLAKE2b-256 3c144e73d10766dc0fc1242029f078db5f19f65342531dd92a9c6855f1a235f4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: teraplate-0.0.3-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.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 23b1e35e27bde2ec37e26fccf61cf6e0b8775bace36594e2664923b6d6b3db88
MD5 c95e6d6aa0858252301e80a437acc9f6
BLAKE2b-256 83a2561e75db45a37c696cf361f849faaffff21827aac5d1430e5b05156c176f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: teraplate-0.0.3-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.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c1ac700c2d6e8d1124230376fa19926f49d0b4a3f368505200c0d11ba96dfe29
MD5 2c19f27b671a9250e05b0d6a6a3b12a8
BLAKE2b-256 785b7b320ef7ef723f60f7a3ee3c2950a38ca9fe463669731a43120421a79c48

See more details on using hashes here.

File details

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

File metadata

  • Download URL: teraplate-0.0.3-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.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d033d975af98b104f7303649ac01c60843eead08572093767ab3934e2a5079a6
MD5 3381aa797b3016583bbdbed5d115f275
BLAKE2b-256 7556d61ba0886e48f74a2b140db4c0f533154c9df31263d65b336b4bdeb577d0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: teraplate-0.0.3-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.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8335dd5c70322bac263c0591b48670062350783eb3ff586951cfda62f79d1e82
MD5 9b66e9761f01de9c9f474f55c8c97935
BLAKE2b-256 152103b6872f58e916d9765f3b20bb16391e0992db5475cf6283bde8fad9e301

See more details on using hashes here.

File details

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

File metadata

  • Download URL: teraplate-0.0.3-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.3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 370921cdfb37ecc1c7927d4a24abe3fca1731724813c4edcf6351edb959673c0
MD5 29a1e4e7c00fb948ac17aa85f784ccee
BLAKE2b-256 9dc330195e9e9fa6bfbdcf87502e18d5a4bb354900406b70b144c96ae9508adb

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