Localization support for the Muffin Framework
Project description
Muffin-Babel – an extension to Muffin that adds localization support with help of Babel.
Requirements
python >= 3.8
Installation
Muffin-Babel should be installed using pip:
pip install muffin-babel
Usage
Initialize and setup the plugin:
import muffin
import muffin_babel
# Create Muffin Application
app = muffin.Application('example')
# Initialize the plugin
# As alternative: babel = muffin_babel.Plugin(app, **options)
babel = muffin_babel.Plugin()
babel.setup(app, template_folders=['src/templates'])
# Use it inside your handlers
@app.route('/')
async def index(request):
# Get current locale
assert babel.current_locale
# Translate a text
return babel.gettext('Hello World!')
Setup a locale selector function (by default the plugin is parsing accept-language header):
@babel.locale_selector
async def get_locale(request):
""" Return locale either from request.query or from request headers. """
locale = request.query.get('lang')
if not locale:
return await muffin_babel.select_locale_by_request(request, default)
return locale
Use babel.gettext, babel.pgettext callables in your code:
@app.route('/')
def index(request):
return babel.gettext('Hello!')
Jinja2
The Muffin-Babel has integration with Muffin-Jinja2, so if you have muffin_jinja2 plugin enabled, the plugin provides gettext and ngettext function inside the Jinja2 templates’ context.
Options
Name |
Default Value |
Description |
---|---|---|
AUTO_DETECT_LOCALE |
True |
Installs a middleware to automatically detect users locales |
CONFIGURE_JINJA2 |
True |
Installs i18n support for jinja2 templates (through muffin-jinja) |
DEFAULT_LOCALE |
"en" |
Default locale |
DOMAIN |
"messages" |
Default localization domain |
SOURCES_MAP |
Babel sources map |
|
OPTIONS_MAP |
Babel options map |
You are able to provide the options when you are initiliazing the plugin:
babel.setup(app, default_locale='fr')
Or setup it inside Muffin.Application config using the BABEL_ prefix:
BABEL_DEFAULT_LOCALE = 'fr'
Muffin.Application configuration options are case insensitive
Commands
The plugin adds two commands to your Muffin application.
Extract messages
Extract strings from your application to locales:
$ muffin app_package babel_extract_messages [OPTIONS] appdir
Translate .po files and compile translations:
$ muffin app_package babel_compile_messages [OPTIONS]
Bug tracker
If you have any suggestions, bug reports or annoyances please report them to the issue tracker at https://github.com/klen/muffin-babel/issues
Contributing
Development of Muffin-Babel happens at: https://github.com/klen/muffin-babel
Contributors
klen (Kirill Klenov)
License
Licensed under a MIT license.
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
Built Distribution
File details
Details for the file muffin_babel-1.4.2.tar.gz
.
File metadata
- Download URL: muffin_babel-1.4.2.tar.gz
- Upload date:
- Size: 5.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.5.0 CPython/3.10.6 Linux/5.15.0-1037-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8ba36cbeaeb410ba6f6b16fc61dbaa3a1d253f9f9204251dbf7917f77581881d |
|
MD5 | ea95c001dbd789e36fed0e503ce256d4 |
|
BLAKE2b-256 | 10da04b63c9de3b365cceb9837fc57f65f85621f7478ec45e3ecfc46b5f4d360 |
File details
Details for the file muffin_babel-1.4.2-py3-none-any.whl
.
File metadata
- Download URL: muffin_babel-1.4.2-py3-none-any.whl
- Upload date:
- Size: 6.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.5.0 CPython/3.10.6 Linux/5.15.0-1037-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 51dde496abbba65052d1e22ceb02798262caa401738cc0a1852e878811729711 |
|
MD5 | f2b5401f77000abdbe83a31524f98a33 |
|
BLAKE2b-256 | 97a8c899f1f390983df2c172a96bfb25de9267f42e17bc9256a48b336c4538bd |