Skip to main content

Handlebars library for Python dotpromptz based on handlebars-rust.

Project description

dotpromptz-handlebars

PyPI Python License Downloads

CI codecov OpenSSF Scorecard

GitHub stars OSS Insight

Star History Chart

A high-performance Handlebars template engine for Python, powered by Rust.

This package provides Python bindings to handlebars-rust, offering near-native performance for template rendering while maintaining a Pythonic API.

Features

  • Fast: Rust-powered template compilation and rendering
  • Compatible: Implements the Handlebars specification
  • Safe: HTML escaping by default, with options for raw output
  • Extensible: Support for custom helpers and partials
  • Type-safe: Full type hints for IDE support

Installation

pip install dotpromptz-handlebars

Quick Start

from handlebarrz import Template

# Create a template instance
template = Template()

# Register and render a template
template.register_template("greeting", "Hello, {{name}}!")
result = template.render("greeting", {"name": "World"})
print(result)  # Output: Hello, World!

Usage

Basic Templating

from handlebarrz import Template

template = Template()

# Simple variable substitution
template.register_template("simple", "Welcome, {{user}}!")
print(template.render("simple", {"user": "Alice"}))
# Output: Welcome, Alice!

# Nested properties
template.register_template("nested", "{{person.name}} is {{person.age}} years old")
print(template.render("nested", {"person": {"name": "Bob", "age": 30}}))
# Output: Bob is 30 years old

Built-in Helpers

# Conditionals
template.register_template("conditional", """
{{#if active}}
  User is active
{{else}}
  User is inactive
{{/if}}
""")

# Iteration
template.register_template("list", """
{{#each items}}
  - {{this}}
{{/each}}
""")

# With helper for context switching
template.register_template("with", """
{{#with user}}
  Name: {{name}}, Email: {{email}}
{{/with}}
""")

Custom Helpers

from handlebarrz import Template

template = Template()

# Register a custom helper
def uppercase(value):
    return str(value).upper()

template.register_helper("uppercase", uppercase)
template.register_template("custom", "{{uppercase name}}")
print(template.render("custom", {"name": "alice"}))
# Output: ALICE

Partials

template = Template()

# Register a partial
template.register_partial("header", "<h1>{{title}}</h1>")
template.register_template("page", "{{> header}}<p>{{content}}</p>")
print(template.render("page", {"title": "Welcome", "content": "Hello!"}))
# Output: <h1>Welcome</h1><p>Hello!</p>

HTML Escaping

template = Template()

# HTML is escaped by default
template.register_template("escaped", "{{content}}")
print(template.render("escaped", {"content": "<script>alert('xss')</script>"}))
# Output: &lt;script&gt;alert(&#x27;xss&#x27;)&lt;/script&gt;

# Use triple braces for raw output
template.register_template("raw", "{{{content}}}")
print(template.render("raw", {"content": "<b>bold</b>"}))
# Output: <b>bold</b>

API Reference

Template Class

Method Description
register_template(name, source) Register a template with a name
render(name, context) Render a registered template with context
render_template_string(source, context) Render a template string directly
register_helper(name, func) Register a custom helper function
register_partial(name, source) Register a partial template
unregister_template(name) Remove a registered template
set_strict_mode(enabled) Enable/disable strict mode
set_dev_mode(enabled) Enable/disable development mode

Part of Dotprompt

This package is part of the Dotprompt project, providing the Handlebars templating engine for the dotpromptz Python package. While primarily designed for Dotprompt, it can be used as a standalone Handlebars implementation for Python.

License

Apache-2.0

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

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

dotpromptz_handlebars-0.1.8-cp310-abi3-musllinux_1_2_x86_64.whl (666.3 kB view details)

Uploaded CPython 3.10+musllinux: musl 1.2+ x86-64

dotpromptz_handlebars-0.1.8-cp310-abi3-musllinux_1_2_aarch64.whl (628.6 kB view details)

Uploaded CPython 3.10+musllinux: musl 1.2+ ARM64

dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_40_x86_64.whl (587.8 kB view details)

Uploaded CPython 3.10+manylinux: glibc 2.40+ x86-64

dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_40_aarch64.whl (561.7 kB view details)

Uploaded CPython 3.10+manylinux: glibc 2.40+ ARM64

dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_39_x86_64.whl (587.8 kB view details)

Uploaded CPython 3.10+manylinux: glibc 2.39+ x86-64

dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_39_aarch64.whl (561.7 kB view details)

Uploaded CPython 3.10+manylinux: glibc 2.39+ ARM64

dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_38_x86_64.whl (587.8 kB view details)

Uploaded CPython 3.10+manylinux: glibc 2.38+ x86-64

dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_38_aarch64.whl (561.7 kB view details)

Uploaded CPython 3.10+manylinux: glibc 2.38+ ARM64

dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_37_x86_64.whl (587.8 kB view details)

Uploaded CPython 3.10+manylinux: glibc 2.37+ x86-64

dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_37_aarch64.whl (561.7 kB view details)

Uploaded CPython 3.10+manylinux: glibc 2.37+ ARM64

dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_36_x86_64.whl (587.8 kB view details)

Uploaded CPython 3.10+manylinux: glibc 2.36+ x86-64

dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_36_aarch64.whl (561.7 kB view details)

Uploaded CPython 3.10+manylinux: glibc 2.36+ ARM64

dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_35_x86_64.whl (587.8 kB view details)

Uploaded CPython 3.10+manylinux: glibc 2.35+ x86-64

dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_35_aarch64.whl (561.7 kB view details)

Uploaded CPython 3.10+manylinux: glibc 2.35+ ARM64

dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_34_x86_64.whl (587.8 kB view details)

Uploaded CPython 3.10+manylinux: glibc 2.34+ x86-64

dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_34_aarch64.whl (561.7 kB view details)

Uploaded CPython 3.10+manylinux: glibc 2.34+ ARM64

dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_33_x86_64.whl (587.8 kB view details)

Uploaded CPython 3.10+manylinux: glibc 2.33+ x86-64

dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_33_aarch64.whl (561.7 kB view details)

Uploaded CPython 3.10+manylinux: glibc 2.33+ ARM64

dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_32_x86_64.whl (587.8 kB view details)

Uploaded CPython 3.10+manylinux: glibc 2.32+ x86-64

dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_32_aarch64.whl (561.7 kB view details)

Uploaded CPython 3.10+manylinux: glibc 2.32+ ARM64

dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_31_x86_64.whl (587.8 kB view details)

Uploaded CPython 3.10+manylinux: glibc 2.31+ x86-64

dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_31_aarch64.whl (561.7 kB view details)

Uploaded CPython 3.10+manylinux: glibc 2.31+ ARM64

dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_30_x86_64.whl (587.8 kB view details)

Uploaded CPython 3.10+manylinux: glibc 2.30+ x86-64

dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_30_aarch64.whl (561.7 kB view details)

Uploaded CPython 3.10+manylinux: glibc 2.30+ ARM64

dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_29_x86_64.whl (587.8 kB view details)

Uploaded CPython 3.10+manylinux: glibc 2.29+ x86-64

dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_29_aarch64.whl (561.7 kB view details)

Uploaded CPython 3.10+manylinux: glibc 2.29+ ARM64

dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_28_x86_64.whl (587.8 kB view details)

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

dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_28_aarch64.whl (561.7 kB view details)

Uploaded CPython 3.10+manylinux: glibc 2.28+ ARM64

dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_27_x86_64.whl (587.8 kB view details)

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

dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_27_aarch64.whl (561.7 kB view details)

Uploaded CPython 3.10+manylinux: glibc 2.27+ ARM64

dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_26_x86_64.whl (587.8 kB view details)

Uploaded CPython 3.10+manylinux: glibc 2.26+ x86-64

dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_26_aarch64.whl (561.7 kB view details)

Uploaded CPython 3.10+manylinux: glibc 2.26+ ARM64

dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_25_x86_64.whl (587.8 kB view details)

Uploaded CPython 3.10+manylinux: glibc 2.25+ x86-64

dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_25_aarch64.whl (561.7 kB view details)

Uploaded CPython 3.10+manylinux: glibc 2.25+ ARM64

dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_24_x86_64.whl (587.8 kB view details)

Uploaded CPython 3.10+manylinux: glibc 2.24+ x86-64

dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_24_aarch64.whl (561.7 kB view details)

Uploaded CPython 3.10+manylinux: glibc 2.24+ ARM64

dotpromptz_handlebars-0.1.8-cp310-abi3-macosx_11_0_arm64.whl (457.3 kB view details)

Uploaded CPython 3.10+macOS 11.0+ ARM64

dotpromptz_handlebars-0.1.8-cp310-abi3-macosx_10_12_x86_64.whl (483.3 kB view details)

Uploaded CPython 3.10+macOS 10.12+ x86-64

File details

Details for the file dotpromptz_handlebars-0.1.8-cp310-abi3-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for dotpromptz_handlebars-0.1.8-cp310-abi3-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f23498821610d443a67c860922aba00d20bdd80b8421bfef0ceff07b713f8198
MD5 e3afeb2c04c8374d4a1a28caebfb2375
BLAKE2b-256 8909d09dfaa2110884284be6006b7586ea519f7391de58ed5428f2bf457bcd03

See more details on using hashes here.

Provenance

The following attestation bundles were made for dotpromptz_handlebars-0.1.8-cp310-abi3-musllinux_1_2_x86_64.whl:

Publisher: publish_python_handlebarrz_package.yml on google/dotprompt

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

File details

Details for the file dotpromptz_handlebars-0.1.8-cp310-abi3-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for dotpromptz_handlebars-0.1.8-cp310-abi3-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 56eef7d063008b78d32038766933c240c85a365fde107338f4066cb600efa442
MD5 71dd765b24bcf1042467b7ea1e705a13
BLAKE2b-256 b57fce629f82b305f75e903b5050f678db48df91d0a4678ab14aa6f816198ff6

See more details on using hashes here.

Provenance

The following attestation bundles were made for dotpromptz_handlebars-0.1.8-cp310-abi3-musllinux_1_2_aarch64.whl:

Publisher: publish_python_handlebarrz_package.yml on google/dotprompt

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

File details

Details for the file dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_40_x86_64.whl.

File metadata

File hashes

Hashes for dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_40_x86_64.whl
Algorithm Hash digest
SHA256 bcfa359c5b694d6b858045aa087869c23acb927dbb77263f295222e35dfbbe89
MD5 930198049deaae630c2f257e9cf92da9
BLAKE2b-256 fedbb5985db508dab3047ee266e076fc7b4dce1a8ab38b9a5f5e8040848da530

See more details on using hashes here.

Provenance

The following attestation bundles were made for dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_40_x86_64.whl:

Publisher: publish_python_handlebarrz_package.yml on google/dotprompt

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

File details

Details for the file dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_40_aarch64.whl.

File metadata

File hashes

Hashes for dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_40_aarch64.whl
Algorithm Hash digest
SHA256 378e82a275d3aaf5a24d64eca2efdc0a2f690fa00a4cbb67835d4e31805293b6
MD5 f0e3d746405f853080f8b4c5c97e4004
BLAKE2b-256 94c39fde774bd0d83cc202c28c40971f896cbdb5b49d582d6d67e7234dfe920b

See more details on using hashes here.

Provenance

The following attestation bundles were made for dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_40_aarch64.whl:

Publisher: publish_python_handlebarrz_package.yml on google/dotprompt

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

File details

Details for the file dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_39_x86_64.whl.

File metadata

File hashes

Hashes for dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 7ed0507a0ae0a374d5df289c5a989b0c6aba14fc814fb2e5b77b7ece36aa953d
MD5 867296e9b8d9e9d05d6c8e0b50e5d4e7
BLAKE2b-256 41514d621d7183470043173c733cd26462e117c0b2cc787eb90b0bbe200f1c00

See more details on using hashes here.

Provenance

The following attestation bundles were made for dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_39_x86_64.whl:

Publisher: publish_python_handlebarrz_package.yml on google/dotprompt

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

File details

Details for the file dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_39_aarch64.whl.

File metadata

File hashes

Hashes for dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 a5c7b8d7749b8abc1557c3f571940cb71723b0a38f359508aeb722b20deffa93
MD5 9ec01bf08e08d38466447738dba68843
BLAKE2b-256 32587f9df3b5be3b0181a2d709913bd22597703f3360ff52e6bf68ced242a27b

See more details on using hashes here.

Provenance

The following attestation bundles were made for dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_39_aarch64.whl:

Publisher: publish_python_handlebarrz_package.yml on google/dotprompt

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

File details

Details for the file dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_38_x86_64.whl.

File metadata

File hashes

Hashes for dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_38_x86_64.whl
Algorithm Hash digest
SHA256 5aeb3a334ab1eccdee74a0f9adbf3c1ed6dc01da4879412f8529a5f959f8260a
MD5 a9b84bf5eb7a542c8264f739e85bcf71
BLAKE2b-256 83ed23bb99f694f4c4bf817c9d706a5205e3c36a13e7102bd2b4271e93e6c55e

See more details on using hashes here.

Provenance

The following attestation bundles were made for dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_38_x86_64.whl:

Publisher: publish_python_handlebarrz_package.yml on google/dotprompt

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

File details

Details for the file dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_38_aarch64.whl.

File metadata

File hashes

Hashes for dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_38_aarch64.whl
Algorithm Hash digest
SHA256 61ec530c5681f2fee6903aa017c1c6c3a020226f37623249f165ed55be3b6388
MD5 9883256e90207f7209265617725a7628
BLAKE2b-256 e3cb1740c1cff03fb2fb39305d33c7156f5165c4af66db4d7e5c28a1453b9789

See more details on using hashes here.

Provenance

The following attestation bundles were made for dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_38_aarch64.whl:

Publisher: publish_python_handlebarrz_package.yml on google/dotprompt

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

File details

Details for the file dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_37_x86_64.whl.

File metadata

File hashes

Hashes for dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_37_x86_64.whl
Algorithm Hash digest
SHA256 959a4b35e5063310d8fd45d09ad803b0f5e54795b0a728ac5536a820250a4861
MD5 96f9a790331c95487a0311dfa0544109
BLAKE2b-256 8b59f0cf2a6290b1012854ec07b5725f39d642de76c79493172e9199e2468604

See more details on using hashes here.

Provenance

The following attestation bundles were made for dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_37_x86_64.whl:

Publisher: publish_python_handlebarrz_package.yml on google/dotprompt

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

File details

Details for the file dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_37_aarch64.whl.

File metadata

File hashes

Hashes for dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_37_aarch64.whl
Algorithm Hash digest
SHA256 ed47355f0b5aba327ee20e9df2868d7ca3c28bb88397244b83c8de22fa68b463
MD5 4033c552cc34dd49f1605c358c9a33c5
BLAKE2b-256 aee5a3563a9e9ea10021c8f026e0d613446ae9548a856fcd604efa49c25010b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_37_aarch64.whl:

Publisher: publish_python_handlebarrz_package.yml on google/dotprompt

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

File details

Details for the file dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_36_x86_64.whl.

File metadata

File hashes

Hashes for dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_36_x86_64.whl
Algorithm Hash digest
SHA256 9aaae4a56c3453512c551e44edf74de3c6e4a22f48b87cc54d50170f1e640ff9
MD5 05470112ad01894c39fddce639490260
BLAKE2b-256 7a4f84f0a35211528597e72cbac05abb44799043b84b4a8afbd752e1bf75a859

See more details on using hashes here.

Provenance

The following attestation bundles were made for dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_36_x86_64.whl:

Publisher: publish_python_handlebarrz_package.yml on google/dotprompt

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

File details

Details for the file dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_36_aarch64.whl.

File metadata

File hashes

Hashes for dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_36_aarch64.whl
Algorithm Hash digest
SHA256 c94aa8e3cb1a685dee1f0dd3cca92a16fbcd137c7dc8ee860dd8cc5e13c4d51f
MD5 f79bd7900e7aeac306ba70f66eaaaf49
BLAKE2b-256 9c7f3e49cdbef62c3e17f61566da60530eb815140b1ff36b4de3e68e45577498

See more details on using hashes here.

Provenance

The following attestation bundles were made for dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_36_aarch64.whl:

Publisher: publish_python_handlebarrz_package.yml on google/dotprompt

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

File details

Details for the file dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_35_x86_64.whl.

File metadata

File hashes

Hashes for dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_35_x86_64.whl
Algorithm Hash digest
SHA256 4592e54f7e53820625b268b74264a7a35af889c001e2326f54ebfdf66460e2c2
MD5 01bdcd26c159e59d331b5bcf0f1fa109
BLAKE2b-256 dc93b7119d09b2f29ad9313d252bc7922d75c89c2f9b2f987d4143cd1f4843bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_35_x86_64.whl:

Publisher: publish_python_handlebarrz_package.yml on google/dotprompt

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

File details

Details for the file dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_35_aarch64.whl.

File metadata

File hashes

Hashes for dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 a47c1109c24bf84f4c7952b13e02486365149eab652a5da0652e506c154acd9f
MD5 993e2116ef3f99cb019b31036081f6aa
BLAKE2b-256 f26be206b2d2b05b629cd8776ce92560a5243a0fe931b37c3e14e79acecb023f

See more details on using hashes here.

Provenance

The following attestation bundles were made for dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_35_aarch64.whl:

Publisher: publish_python_handlebarrz_package.yml on google/dotprompt

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

File details

Details for the file dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 6f67dc0eebc4492b974cb777c74080a16d0f6d9420eb61c98085e4b347a13ffd
MD5 d797b045090719800e75beefa3acfb82
BLAKE2b-256 1892a465375a7a7445db534acfe17011f278ec510f6fc9e30c2b0b3402ba0d89

See more details on using hashes here.

Provenance

The following attestation bundles were made for dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_34_x86_64.whl:

Publisher: publish_python_handlebarrz_package.yml on google/dotprompt

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

File details

Details for the file dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_34_aarch64.whl.

File metadata

File hashes

Hashes for dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 a3685e8dc6cc5b8f9a089bfc83b167d69a0f6c95daa895950d5691be028b570a
MD5 9c808c411080c19386152c99345fc0ee
BLAKE2b-256 64a5593fe5cc7331d9d63209d49db60206756b34b69ebdd2bec1fd766bfea835

See more details on using hashes here.

Provenance

The following attestation bundles were made for dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_34_aarch64.whl:

Publisher: publish_python_handlebarrz_package.yml on google/dotprompt

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

File details

Details for the file dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_33_x86_64.whl.

File metadata

File hashes

Hashes for dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_33_x86_64.whl
Algorithm Hash digest
SHA256 bfabec379461347efc28cf27ba5362d174b53513e0c810a0ecade1596e2ef534
MD5 1cf599b6dda667126c96fb41546e2aab
BLAKE2b-256 adcbb55c99cd1b9ee2dfd924a9c32c037b1e15ddf9a018a678d6c2998946587c

See more details on using hashes here.

Provenance

The following attestation bundles were made for dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_33_x86_64.whl:

Publisher: publish_python_handlebarrz_package.yml on google/dotprompt

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

File details

Details for the file dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_33_aarch64.whl.

File metadata

File hashes

Hashes for dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_33_aarch64.whl
Algorithm Hash digest
SHA256 d880b917465e0c0b615ed9419987e0d05d126dbf58875ed42004b0a17d035090
MD5 ef2454cf71c13b06bcecc8be8eb16ad4
BLAKE2b-256 7bb54c6b1b270aa5266965d0c93f9bc680cbe259a93a8d2e291358326b7fee95

See more details on using hashes here.

Provenance

The following attestation bundles were made for dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_33_aarch64.whl:

Publisher: publish_python_handlebarrz_package.yml on google/dotprompt

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

File details

Details for the file dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_32_x86_64.whl.

File metadata

File hashes

Hashes for dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_32_x86_64.whl
Algorithm Hash digest
SHA256 449298eebeb5c37ee03688bf7721cd01544b4429f5e8d5078775e55e5cb7bc50
MD5 2c7344d52939d383886619e285e54917
BLAKE2b-256 9af1622534a0baf12668185ee5368ade453257ba5e7e28362b473c1dc914d8d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_32_x86_64.whl:

Publisher: publish_python_handlebarrz_package.yml on google/dotprompt

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

File details

Details for the file dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_32_aarch64.whl.

File metadata

File hashes

Hashes for dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_32_aarch64.whl
Algorithm Hash digest
SHA256 81761a1918278b3dc97b391941f5682b2d743ebd08fcf6f2a5526ffc769d1249
MD5 1db6e2a38e9f94cec08f40bbd7459834
BLAKE2b-256 ab1119774c3155ec71a07e56059639968f043f3b9c383646ee0880e6963e8e67

See more details on using hashes here.

Provenance

The following attestation bundles were made for dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_32_aarch64.whl:

Publisher: publish_python_handlebarrz_package.yml on google/dotprompt

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

File details

Details for the file dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_31_x86_64.whl.

File metadata

File hashes

Hashes for dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_31_x86_64.whl
Algorithm Hash digest
SHA256 92ff0c7a79d11519caaf67f961628d263256b3f73d404baba21c242dc13af9a8
MD5 8118a682fbd57195098f1b0efab4019f
BLAKE2b-256 cfe5163d5e5ffd520baf510ed85b3c6af08ea367e4dcc97a8d947ee74e6f6889

See more details on using hashes here.

Provenance

The following attestation bundles were made for dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_31_x86_64.whl:

Publisher: publish_python_handlebarrz_package.yml on google/dotprompt

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

File details

Details for the file dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_31_aarch64.whl.

File metadata

File hashes

Hashes for dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_31_aarch64.whl
Algorithm Hash digest
SHA256 a5838de57358bcfedba605854dab6f1c45a6c8fd140d7241a0a2f167b36b0143
MD5 56240dcdc4a50d00896fc41513d1c325
BLAKE2b-256 1c974b5755b6a072bad825f08f62e27d505075f5da406301dc31ddd2a62c32a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_31_aarch64.whl:

Publisher: publish_python_handlebarrz_package.yml on google/dotprompt

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

File details

Details for the file dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_30_x86_64.whl.

File metadata

File hashes

Hashes for dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_30_x86_64.whl
Algorithm Hash digest
SHA256 4f72473e11c0ef1301e2531ede4c1b6b701d5d0c5dffcc02af4c05e2cf3e4506
MD5 5d1d426a2a30673a797329a8a39ed829
BLAKE2b-256 0662a593cea55764fff42b2271529ff51be69f42f7e8fc1e9971946fc5f7f768

See more details on using hashes here.

Provenance

The following attestation bundles were made for dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_30_x86_64.whl:

Publisher: publish_python_handlebarrz_package.yml on google/dotprompt

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

File details

Details for the file dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_30_aarch64.whl.

File metadata

File hashes

Hashes for dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_30_aarch64.whl
Algorithm Hash digest
SHA256 45df11dc5ca5e9398360840b0f39c2e29a45bf63616ccedfb6361fe7aa559736
MD5 c06706149c598143e70e5f0f15a8fb5e
BLAKE2b-256 b284d9fcfb4633249195efa72f3d4f55ce1d013a690480d6efc9ffb0eb889be4

See more details on using hashes here.

Provenance

The following attestation bundles were made for dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_30_aarch64.whl:

Publisher: publish_python_handlebarrz_package.yml on google/dotprompt

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

File details

Details for the file dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_29_x86_64.whl.

File metadata

File hashes

Hashes for dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_29_x86_64.whl
Algorithm Hash digest
SHA256 57e9642bcb9803d2b898fa1eb003d7264cea4afe7bd4e5a6d7209323f8b21dd2
MD5 0806e51bcb750474d93c370542bd1530
BLAKE2b-256 a3eb0f81cfa45fd77c6b88993c25653ec73fbb2ef0dd060d4922728cd2e128d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_29_x86_64.whl:

Publisher: publish_python_handlebarrz_package.yml on google/dotprompt

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

File details

Details for the file dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_29_aarch64.whl.

File metadata

File hashes

Hashes for dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_29_aarch64.whl
Algorithm Hash digest
SHA256 915a19de93514c195772431ec553e3f7458fc7f176620fe68881779f947e07d4
MD5 3d569ef6851173a6b023ace98b104db3
BLAKE2b-256 1de6641fd01e34ef1823c47c3f9fa5ad554b42675b9b730884f9daf71a2d02d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_29_aarch64.whl:

Publisher: publish_python_handlebarrz_package.yml on google/dotprompt

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

File details

Details for the file dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 24adcd9906170d1b1259744f8af9e36fcaf33b330cfff14974c52946dad4ba5d
MD5 a0db12abcc56f8cd099351c262dc84b4
BLAKE2b-256 56c100d127ba48149d9cc169d86428c18df7fac536c52a19ea295c32d08f41ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_28_x86_64.whl:

Publisher: publish_python_handlebarrz_package.yml on google/dotprompt

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

File details

Details for the file dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c004e9bde89e3bc9fc86cd6f126d96cd0a95d4b1a5d39da81101f038781f25bb
MD5 2e3229da57fa049a364894a3783e1ed4
BLAKE2b-256 40f4e53f536f6a58a084b7ec079d88d631e2ae7b0843b6e8d682923cb315ff9f

See more details on using hashes here.

Provenance

The following attestation bundles were made for dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_28_aarch64.whl:

Publisher: publish_python_handlebarrz_package.yml on google/dotprompt

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

File details

Details for the file dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_27_x86_64.whl.

File metadata

File hashes

Hashes for dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_27_x86_64.whl
Algorithm Hash digest
SHA256 57358a7981884535dbe38f76fc912462e332926128049078e3abe12b9f23ff15
MD5 c003605d4ec155303d6f060cbb60c7c5
BLAKE2b-256 34881610ccb34a81c56974f162b70e99aa1a5f2137733d9a6c8567f26bd1b1ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_27_x86_64.whl:

Publisher: publish_python_handlebarrz_package.yml on google/dotprompt

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

File details

Details for the file dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_27_aarch64.whl.

File metadata

File hashes

Hashes for dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_27_aarch64.whl
Algorithm Hash digest
SHA256 5ad4d6a5fd1cb0ff202c4ca859f74ab4a637b74aa9c44da9937625f9fefb1b01
MD5 8b94967367c3d42b795a7b4b86dc0c91
BLAKE2b-256 fabc64fc25574048684af5e7cc835c1d4f537d95320c1e3fb8ba6935d7113841

See more details on using hashes here.

Provenance

The following attestation bundles were made for dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_27_aarch64.whl:

Publisher: publish_python_handlebarrz_package.yml on google/dotprompt

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

File details

Details for the file dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_26_x86_64.whl.

File metadata

File hashes

Hashes for dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_26_x86_64.whl
Algorithm Hash digest
SHA256 f2e982de91ba7128e1f57ed7534bd4cb0b5d1d526f597385c98bb6977037deba
MD5 f72a8b3ec4a65fa5c44a403a8f7b5d65
BLAKE2b-256 b11dccb3bd48a6e0362d85cf142ad7e8e8ffdebe143e8c37ba2dda4d2bf40504

See more details on using hashes here.

Provenance

The following attestation bundles were made for dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_26_x86_64.whl:

Publisher: publish_python_handlebarrz_package.yml on google/dotprompt

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

File details

Details for the file dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_26_aarch64.whl.

File metadata

File hashes

Hashes for dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_26_aarch64.whl
Algorithm Hash digest
SHA256 698702b0cbd0bc7f5e280655fe4770f505aaf7b1d309bd630f9f3ed79be2222a
MD5 6cc7124f787486e2ca3589aea1585f02
BLAKE2b-256 a21f3389c48dca8c082e4e9663fb7b9ef5a5ec9d71c4da2577513c6f48899776

See more details on using hashes here.

Provenance

The following attestation bundles were made for dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_26_aarch64.whl:

Publisher: publish_python_handlebarrz_package.yml on google/dotprompt

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

File details

Details for the file dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_25_x86_64.whl.

File metadata

File hashes

Hashes for dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_25_x86_64.whl
Algorithm Hash digest
SHA256 b6f7c8d582b1e214379e40cc907b8d378aad2f59f3ff9b425e5351f86f51093f
MD5 356257914df19f776f5ec8b9ab000a1a
BLAKE2b-256 46cb9f8da0fb7006d97776c5dabd0d049ff6296130dd6d8dedcde0182c72bbd0

See more details on using hashes here.

Provenance

The following attestation bundles were made for dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_25_x86_64.whl:

Publisher: publish_python_handlebarrz_package.yml on google/dotprompt

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

File details

Details for the file dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_25_aarch64.whl.

File metadata

File hashes

Hashes for dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_25_aarch64.whl
Algorithm Hash digest
SHA256 c22a5d77e378d99ff61ea121a24188c36f5241389091fd54d3bd409fdf394b64
MD5 cd9ca2d9175fefc5b7e33bd20dc66b57
BLAKE2b-256 18e4b881dadfcfb83517b0d4ab6736f0d2c450234590cdee41850f019f1b02b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_25_aarch64.whl:

Publisher: publish_python_handlebarrz_package.yml on google/dotprompt

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

File details

Details for the file dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_24_x86_64.whl.

File metadata

File hashes

Hashes for dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 817dbef75a8ea0dc8d5e193135802523a93fa02206952261582e633c2ac6d885
MD5 4075399a3d78b68b01e6fdba0b7404ca
BLAKE2b-256 d1148a71ce404044de48b10b4aecaed533a41274038e0f6a7225c85157944818

See more details on using hashes here.

Provenance

The following attestation bundles were made for dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_24_x86_64.whl:

Publisher: publish_python_handlebarrz_package.yml on google/dotprompt

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

File details

Details for the file dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_24_aarch64.whl.

File metadata

File hashes

Hashes for dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 57b135029dfd0fd964e90e76c6b423fe8c457d6a069808c5dfa7bafbc00ca085
MD5 49f8d430b7496e690d9380b864c537f4
BLAKE2b-256 92b1df8ba73290a7cf1654732ac808c68c54e1e05fc2082749d57febcbd3f478

See more details on using hashes here.

Provenance

The following attestation bundles were made for dotpromptz_handlebars-0.1.8-cp310-abi3-manylinux_2_24_aarch64.whl:

Publisher: publish_python_handlebarrz_package.yml on google/dotprompt

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

File details

Details for the file dotpromptz_handlebars-0.1.8-cp310-abi3-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dotpromptz_handlebars-0.1.8-cp310-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f40a5f78c70e0907b858a1b0d20479da08a6b54a56f9d0f98b018b18ae0a956c
MD5 23aaff687310734499a0e3ec8fc8e779
BLAKE2b-256 a6bcc14d9c0ac54cbfeeac279bb7b836e9372abde800b631f7a8f29b691a7879

See more details on using hashes here.

Provenance

The following attestation bundles were made for dotpromptz_handlebars-0.1.8-cp310-abi3-macosx_11_0_arm64.whl:

Publisher: publish_python_handlebarrz_package.yml on google/dotprompt

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

File details

Details for the file dotpromptz_handlebars-0.1.8-cp310-abi3-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for dotpromptz_handlebars-0.1.8-cp310-abi3-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 69b8e39b7d4ff266490dd12b6a7419994e8f2d7c60ac7fcfbaa6859ae8e42754
MD5 fcfbcb5bbe07195b47e6a482b0b81d63
BLAKE2b-256 d3855adece8b8d541414bb4ce7390b112756352dfeaae709f85e85332d9c5234

See more details on using hashes here.

Provenance

The following attestation bundles were made for dotpromptz_handlebars-0.1.8-cp310-abi3-macosx_10_12_x86_64.whl:

Publisher: publish_python_handlebarrz_package.yml on google/dotprompt

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

Supported by

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