Metadata-Version: 2.1
Name: severus
Version: 1.1.0
Summary: An internationalization engine designed with simplicity in mind
Home-page: https://github.com/emmett-framework/severus
License: BSD-3-Clause
Keywords: internationalization
Author: Giovanni Barillari
Author-email: gi0baro@d4net.org
Requires-Python: >=3.7,<4.0
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Software Development :: Internationalization
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Dist: pyyaml (>=5.4.1,<6.0.0)
Project-URL: Issue Tracker, https://github.com/emmett-framework/severus/issues
Project-URL: Repository, https://github.com/emmett-framework/severus
Description-Content-Type: text/markdown

# Severus

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

[![pip version](https://img.shields.io/pypi/v/severus.svg?style=flat)](https://pypi.python.org/pypi/Severus) 
![Tests Status](https://github.com/emmett-framework/severus/workflows/Tests/badge.svg)

## 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.

