Metadata-Version: 2.1
Name: icu_messageformat_parser
Author: FormatJS Team
License: MIT
Description-Content-Type: text/markdown
Summary: ICU MessageFormat parser backed by 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

# icu_messageformat_parser

Python bindings for FormatJS's Rust ICU MessageFormat parser.

```sh
python -m pip install icu_messageformat_parser
```

```python
from icu_messageformat_parser import parse, print_ast

ast = parse("Hello, {name}!")
assert print_ast(ast) == "Hello, {name}!"
```

