Severus – /seˈweː.rus/ – is a Python internationalization engine designed with simplicity in mind.
it.json
{
"Hello world!": "Ciao mondo!"
}
translate.py
from severus import Severus, language
T = Severus()
with language("it"):
print(T("Hello world!"))
The documentation is available under the docs folder.
Severus is released under the BSD License.