Skip to content

Latest commit

 

History

History
32 lines (20 loc) · 526 Bytes

README.md

File metadata and controls

32 lines (20 loc) · 526 Bytes

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.