Babel localisation support for aiohttp
Project description
aiohttp_babel adds i18n and l10n support to aiohttp.
Usage:
import aiohttp_jinja2
from aiohttp.web import Application
from aiohttp_babel.locale import (load_gettext_translations,
set_default_locale,
set_locale_detector)
from aiohttp_babel.middlewares import babel_middleware, _
set_default_locale('en_GB') # set default locale, if necessary
# load compiled locales
load_gettext_translations('/path/to/locales', 'domain')
# you can use your own locale detection method, if necessary.
# aiohttp_babel checks cookie parameter `locale` or `Accept-Language`
# header by default.
def detector(request):
if request.url.host == 'es.example.com':
return 'es'
elif request.url.host == 'zh.example.com':
return 'zh'
else:
return 'en'
set_locale_detector(detector)
jinja_loader = jinja2.FileSystemLoader('./templates')
app = Application(middlewares=[babel_middleware])
aiohttp_jinja2.setup(app, loader=jinja_loader)
jinja_env = aiohttp_jinja2.get_env(app)
jinja_env.globals['_'] = _
How to extract & compile locales:
Code from:
tornado-babel: https://github.com/openlabs/tornado-babel
django-babel: https://github.com/python-babel/django-babel
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
aiohttpbabel-0.0.7.tar.gz
(5.5 kB
view hashes)
Built Distribution
Close
Hashes for aiohttpbabel-0.0.7-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0762b5db57956049e80d576a65483ab8deccdd316109c4490b4aa99b09a9efdf |
|
MD5 | b785c5353e105260b930193855b3cf26 |
|
BLAKE2b-256 | 4b94e4297d9c974ce4841702779043c1364ae00299e2a226f72c57b495894f1c |