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
- Host: GitHub
- URL: https://github.com/emmett-framework/severus
- Owner: emmett-framework
- License: bsd-3-clause
- Created: 2020-01-12T17:36:28.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2026-03-22T19:18:19.000Z (3 months ago)
- Last Synced: 2026-03-23T10:56:51.444Z (3 months ago)
- Topics: internationalization, python, severus
- Language: Python
- Size: 37.1 KB
- Stars: 5
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGES.md
- Funding: .github/FUNDING.yml
- License: LICENSE
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.