/severus

An internationalization engine designed with simplicity in mind

Primary LanguagePythonBSD 3-Clause "New" or "Revised" LicenseBSD-3-Clause

Severus

Severus – /seˈweː.rus/ – is a Python internationalization engine designed with simplicity in mind.

pip version Tests Status

In a nutshell

it.json

{
    "Hello world!": "Ciao mondo!"
}

translate.py

from severus import Severus, language

T = Severus()

with language("it"):
    print(T("Hello world!"))

Documentation

The documentation is available under the docs folder.

License

Severus is released under the BSD License.