Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/rolepoint/pyseeyou

A Python ICU MessageFormat parsing tool
https://github.com/rolepoint/pyseeyou

i18n messageformat python

Last synced: 10 days ago
JSON representation

A Python ICU MessageFormat parsing tool

Awesome Lists containing this project

README

        

--------
pyseeyou
--------

A Python ICU MessageFormat parsing tool,
using `parsimonious `_ to parse a
PEG, which has been taken from
`messageformat.js `_.

Compatible with Python 2.7, 3.5, 3.6 and 3.7

Usage
=====

.. code-block:: python

from pyseeyou import format

result = format('''{GENDER, select,
male {He}
female {She}
other {They}
} found {NUM_RESULTS, plural,
one {1 result}
other {# results}
} in {NUM_CATEGORIES, plural,
one {1 category}
other {# categories}
}.''',
{'GENDER': 'male', 'NUM_RESULTS': 1, 'NUM_CATEGORIES': '2'}, 'en')

=> u'He found 1 result in 2 categories.'