emmett-framework / severus

An internationalization engine designed with simplicity in mind
BSD 3-Clause "New" or "Revised" License
2 stars 1 forks source link
internationalization python severus

Severus

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

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.