z3c.pt
Fast ZPT engine.
What it is and what it does
z3c.pt is a template engine for Zope 3 applications that renders page templates (ZPT) by compiling them to bytecode via Chameleon. It provides the same application-level interface as zope.pagetemplate but with faster execution through bytecode compilation. The package supports TAL (Template Attribute Language) and TALES (Template Attribute Language Expression Syntax) for dynamic template logic, including path expressions, Python expressions, and custom namespace adapters.
The package offers two main template classes: PageTemplate for string-based templates and PageTemplateFile for templates loaded from disk. It also provides ViewPageTemplate and ViewPageTemplateFile variants for use within Zope view classes. Templates can bind to request and context objects, set content types, and support both keyword and positional arguments. It integrates with the Zope component architecture through zope.interface, zope.component, and zope.traversing.
Use it for:
- Rendering HTML templates in Zope 3 web applications with TAL expressions and automatic bytecode compilation for performance.
- Building view templates that bind to Zope view objects and have access to request and context in a single property.
- Implementing custom TALES namespace adapters for domain-specific template functions and path traversal logic.
- Migrating from zope.pagetemplate to a faster engine without changing template syntax or application code.
- Serving dynamic content with content-type negotiation (HTML, XML, RDF) based on template or request headers.
Worth the install?
AI-flagged interpretation of the facts on this page — verify before relying
z3c.pt is a fast ZPT (Zope Page Template) engine that compiles templates to bytecode using Chameleon, providing page template rendering with path expressions and TALES support.
Yes, if you are building or maintaining a Zope 3 application and need faster template rendering than zope.pagetemplate. The package is stable (Production/Stable status), supports modern Python versions, has no known vulnerabilities, and low install friction. The aging maintenance status and unclear license treatment are minor concerns—review the ZPL terms for your use case and monitor the repository for future updates, but neither blocks adoption for existing Zope projects.
Install
z3c-pt on PyPI
pip
pip install z3c-ptuv
uv add z3c-ptpoetry
poetry add z3c-ptInstalling z3c.pt
Before you install
Low install friction with a pure-Python wheel. The package depends on 7 runtime dependencies including Chameleon and several Zope libraries. Maintenance status is aging—last release was 421 days ago, though the repository remains active and the package supports current Python versions (3.9–3.13).
License in practice
Licensed under ZPL (Zope Public License), which is OSI-approved but less common than MIT or Apache 2.0. License treatment is marked unclear in the fact sheet, so you may want to review the actual license terms before use in proprietary or commercial contexts.
Quickstart
from z3c.pt.pagetemplate import PageTemplate
template = PageTemplate("""
<html>
<body tal:content="string:Hello World!">default</body>
</html>
""")
print(template())
Verify before relying
- Whether ZPL license is compatible with your project's licensing requirements
- Performance comparison with zope.pagetemplate or other template engines in your use case
- Maintenance roadmap and whether aging status indicates planned deprecation
Package facts
| License | ZPL (unclear) |
| Python support | supports the current Python release (>=3.9) |
| Install friction | low — pure-Python wheel |
| Runtime dependencies | 7 — setuptools, zope.interface, zope.component, zope.i18n, zope.traversing, zope.contentprovider, Chameleon |
| Maintenance | aging — 421 days since the last release |
| Last repo commit | |
| First released | |
| Downloads | 128,229/month — #11,716 on PyPI (30-day window, as of 2026-08-14) |
| Known vulnerabilities | none known (OSV.dev, checked 2026-08-14) |
Evidence: z3c_pt-5.1-py3-none-any.whl
Keywords: tal, tales, pagetemplate, zope, chameleon
Tags
More HTML packages
MarkupSafe provides a text object that escapes…
permissive · top 100 on PyPI
Jinja2Jinja2 is a templating engine that renders…
permissive · top 100 on PyPI
beautifulsoup4Beautiful Soup parses HTML and XML documents…
permissive · top 100 on PyPI
lxmllxml provides Python bindings to libxml2 and…
permissive · top 1,000 on PyPI
docutilsDocutils converts plaintext documentation in…
unclear · top 1,000 on PyPI
MarkdownConverts Markdown text to HTML using a Python…
permissive · top 1,000 on PyPI
ChameleonChameleon is an HTML/XML template engine that…
permissive · top 15,000 on PyPI
zope.pagetemplatezope.pagetemplate provides a templating system…
unclear · top 15,000 on PyPI
zope.taleszope.tales provides an expression language for…
unclear · top 15,000 on PyPI
zope.ptresourceProvides a resource class that processes Zope…
unclear · top 15,000 on PyPI
zope.talzope.tal implements the Template Attribute…
unclear · top 15,000 on PyPI
zope.contentproviderProvides a framework for building componentized…
unclear · top 15,000 on PyPI
zope.browserpageProvides ZCML directives (browser:page,…
unclear · top 15,000 on PyPI
zope.browserresourceRegisters and serves static browser resources…
unclear · top 15,000 on PyPI
DocumentTemplateDocumentTemplate implements the Document…
unclear · top 15,000 on PyPI
zope.siteProvides a local and persistent site manager…
unclear · top 15,000 on PyPI