quart_babel
Implements i18n and l10n support for Quart.
What it is and what it does
Quart-Babel is an extension that brings internationalization and localization capabilities to Quart, an async Python web framework. It wraps Babel (for message translation) and pytz (for timezone support) to let you build web applications that serve content in multiple languages and handle timezone-aware operations. The extension is initialized by passing your Quart app instance to the Babel class, after which you can mark strings for translation and manage locale selection across requests.
The package is in Beta status and the repository is now archived with no ongoing maintenance. It supports Python 3.8 through 3.12 and has low install friction. If your Quart application needs multi-language support and your dependencies remain stable, this extension provides the plumbing; however, you should verify compatibility with your specific Quart version and be prepared to maintain it yourself if issues arise.
Use it for:
- Build a Quart web app that serves content in multiple languages based on user locale or browser settings.
- Add timezone-aware date and time handling to Quart applications using pytz integration.
- Extract and manage message catalogs for translation workflows in async web projects.
- Localize error messages, form labels, and user-facing strings in a Quart REST or HTML API.
Worth the install?
AI-flagged interpretation of the facts on this page — verify before relying
Adds internationalization (i18n) and localization (l10n) support to Quart web applications using Babel and pytz for language translation and timezone handling.
Yes, if you are building a new Quart application that requires i18n/l10n and can accept an archived, unmaintained dependency. The low install friction and permissive license make it straightforward to add. No, if you need active maintenance, security updates, or are already running a production Quart service—the abandoned status means you own any future fixes or compatibility work.
Install
quart-babel on PyPI
pip
pip install quart-babeluv
uv add quart-babelpoetry
poetry add quart-babelInstalling quart_babel
Before you install
Low install friction with four straightforward dependencies. However, the repository is archived and marked abandoned as of the latest commit on 2026-01-31, with no active maintenance—use only if your Quart version and Python environment remain stable.
License in practice
MIT license is permissive, allowing commercial and private use with minimal restrictions; you may use, modify, and distribute this package freely provided you retain the license notice.
Quickstart
pip install quart-babel
from quart import Quart
from quart_babel import Babel
app = Quart(__name__)
babel = Babel(app)
Requires Python 3.8 or later; Quart must be installed and configured before initializing Babel.
Verify before relying
- Whether the package works correctly with current Quart releases given the repository is archived.
- Whether timezone and locale selection mechanisms are documented and stable for production use.
- How to handle message extraction and compilation workflows in a Quart project.
Package facts
| License | MIT (permissive) |
| Python support | supports the current Python release (>=3.8) |
| Install friction | low — pure-Python wheel |
| Runtime dependencies | 4 — quart, Babel, pytz, types-pytz |
| Maintenance | abandoned — 678 days since the last release |
| Last repo commit | (repository archived) |
| First released | |
| Downloads | 96,010/month — #13,236 on PyPI (30-day window, as of 2026-08-14) |
| Known vulnerabilities | none known (OSV.dev, checked 2026-08-14) |
Evidence: quart_babel-1.0.7-py3-none-any.whl
Tags
More Python Modules packages
Converts domain names between Unicode and…
permissive · top 100 on PyPI
setuptoolsSetuptools is a Python build backend and…
permissive · top 100 on PyPI
PyYAMLPyYAML parses and emits YAML 1.1 data format,…
permissive · top 100 on PyPI
pydanticPydantic validates Python data structures…
permissive · top 100 on PyPI
annotated-typesProvides reusable metadata objects for use with…
permissive · top 100 on PyPI
typing-inspectionProvides runtime tools to inspect and…
permissive · top 100 on PyPI
babelBabel provides internationalization (i18n) and…
permissive · top 1,000 on PyPI
flask-babelAdds internationalization (i18n) and…
permissive · top 5,000 on PyPI
l18nProvides lazy translations for timezone and…
permissive · top 15,000 on PyPI
translationstringProvides translation string objects and…
permissive · top 5,000 on PyPI
zope.i18nProvides internationalization and localization…
unclear · top 15,000 on PyPI
ResourceBundleResourceBundle manages internationalization and…
permissive · top 15,000 on PyPI
oslo.i18noslo.i18n provides utilities for handling…
permissive · top 5,000 on PyPI
weblate-language-dataProvides language definitions, plural rules,…
permissive · top 15,000 on PyPI
weblate-fontsProvides a curated collection of fonts packaged…
unclear · top 15,000 on PyPI
pyicuPyICU wraps the ICU C++ libraries to provide…
permissive · top 15,000 on PyPI