Metadata-Version: 2.1
Name: py_intl
Author: FormatJS Team
License: BSD-3-Clause
Description-Content-Type: text/markdown
Summary: High-level internationalization runtime backed by FormatJS Rust
Classifier: Development Status :: 3 - Alpha
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Rust
Classifier: Topic :: Software Development :: Internationalization
Requires-Python: >=3.12
Version: 0.1.0

# py_intl

Python bindings for FormatJS's high-level Rust internationalization runtime.

```sh
python -m pip install py_intl
```

```python
from intl import Intl

intl = Intl(["fr-CA", "fr"], "en", {"fr": {"hello": "Bonjour"}, "en": {}})
assert intl.format_message("hello", default_message="Hello") == "Bonjour"
```

