| 12345678910111213141516171819202122232425262728293031 |
- """
- Main module for the grapheme package.
- .. data:: UNICODE_VERSION
- The currently supported Unicode version
- """
- from .api import (
- UNICODE_VERSION,
- contains,
- endswith,
- grapheme_lengths,
- graphemes,
- length,
- safe_split_index,
- slice,
- startswith,
- )
- __all__ = [
- "graphemes",
- "length",
- "grapheme_lengths",
- "slice",
- "contains",
- "safe_split_index",
- "startswith",
- "endswith",
- "UNICODE_VERSION",
- ]
|