Localisation helper for starlette
Project description
starlette-i18n
starlette-i18n is a localisation helper for starlette.
Installation
starlette-i18n is available on PyPI. Use pip to install:
$ pip install starlette-i18n
Basic Usage
import uvicorn
from starlette.applications import Starlette
from starlette.responses import PlainTextResponse
from starlette_i18n import (
DEFAULT_LOCALE,
LANGUAGE_HEADER,
LocaleFromHeaderMiddleware,
load_gettext_translations,
)
from starlette_i18n import gettext_lazy as _
BABEL_DOMAIN = "messages"
BABEL_LOCALES_PATH = "locales"
def init_app():
load_gettext_translations(directory=BABEL_LOCALES_PATH, domain=BABEL_DOMAIN)
app_ = Starlette()
app_.add_middleware(
LocaleFromHeaderMiddleware,
language_header=LANGUAGE_HEADER,
default_code=DEFAULT_LOCALE
)
@app_.route("/")
def success(request):
return PlainTextResponse(_("OK"), status_code=200)
return app_
app = init_app()
if __name__ == "__main__":
uvicorn.run(app=app)
License
starlette-i18n is developed and distributed under the Apache 2.0 license.
Reporting a Security Vulnerability
See our security policy.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
starlette-i18n-1.0.0.tar.gz
(10.7 kB
view hashes)
Built Distribution
Close
Hashes for starlette_i18n-1.0.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | a89957f77a00e7a8933e37af1af58f657e06f58e4666c631b97f11cfe47ea11b |
|
MD5 | 88f977366c8128c5e46db8e86e85a7ee |
|
BLAKE2b-256 | 6880142c4ca44f65a7108b6a2aff3b708d01e69e894004b198d23adcf00c8fca |