Metadata-Version: 2.3
Name: severus
Version: 1.4.0
Summary: An internationalization engine designed with simplicity in mind
Project-URL: Homepage, https://github.com/emmett-framework/severus
Project-URL: Documentation, https://github.com/emmett-framework/severus/tree/master/docs
Project-URL: Funding, https://github.com/sponsors/gi0baro
Project-URL: Source, https://github.com/emmett-framework/severus
Project-URL: Issues, https://github.com/emmett-framework/severus/issues
Author-email: Giovanni Barillari <g@baro.dev>
License-Expression: BSD-3-Clause
License-File: LICENSE
Keywords: internationalization
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.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Software Development :: Internationalization
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.8
Description-Content-Type: text/markdown

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