An open API service indexing awesome lists of open source software.

https://github.com/emmett-framework/severus

An internationalization engine designed with simplicity in mind
https://github.com/emmett-framework/severus

internationalization python severus

Last synced: 2 months ago
JSON representation

An internationalization engine designed with simplicity in mind

Awesome Lists containing this project

README

          

# Severus

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

## In a nutshell

*it.json*

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

*translate.py*

```python
from severus import Severus, language

T = Severus()

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

## Documentation

The documentation is available under the [docs folder](https://github.com/emmett-framework/severus/tree/master/docs).

## License

Severus is released under the BSD License.