skillfed

unicodedataplus

Unicodedata with extensions for additional properties.

unicodedataplus v16.0.0.post1 91.1K downloads/30d#13,543 on PyPI6
Permissive license Apache License 2.0 AGING released

What it is and what it does

unicodedataplus is a drop-in replacement for Python's standard unicodedata module that adds support for additional Unicode properties not available in the standard library. It provides functions to query character properties like script, block, emoji attributes, grapheme cluster breaks, word breaks, sentence breaks, line breaks, indic categories, and CJK stroke counts. The package versions track Unicode versions directly—unicodedataplus==16.0.0.post1 contains data from Unicode 16.0.0.

The package is useful when you need to analyze or classify Unicode characters beyond what the standard library offers. It has no runtime dependencies and is distributed as pre-compiled wheels for multiple platforms and Python versions, making installation straightforward on supported systems. The aging maintenance status (531 days since last release) suggests it is stable but not actively developed.

Use it for:

  • Detect emoji characters and their presentation variants in text for filtering or highlighting
  • Determine script and block membership of characters for language detection or text segmentation
  • Analyze grapheme cluster, word, sentence, and line break properties for text layout and wrapping
  • Look up CJK stroke counts (simplified or traditional) for character indexing or sorting
  • Query Indic script properties for proper handling of complex scripts in text processing

Worth the install?

AI-flagged interpretation of the facts on this page — verify before relying

Extends Python's built-in unicodedata module with additional Unicode properties like script, block, emoji attributes, and break properties for characters.

Yes, if you need Unicode properties beyond the standard library. The package is stable, permissively licensed, and has no external dependencies. Install friction is moderate due to platform-specific wheels, but pre-built binaries are available for common platforms. The aging maintenance status is not a blocker for a data-driven package, but verify that Unicode 16.0.0 data meets your needs.

Install

unicodedataplus on PyPI

pip

pip install unicodedataplus

uv

uv add unicodedataplus

poetry

poetry add unicodedataplus

Installing unicodedataplus

Before you install

Medium install friction due to platform-specific wheels for multiple Python versions (3.10–3.12). Last commit was recent (2026-02-04), but the package is aging with 531 days since the latest release; maintenance appears minimal.

License in practice

Licensed under Apache License 2.0 (permissive), allowing commercial and private use with minimal restrictions.

Quickstart

pip install unicodedataplus

import unicodedataplus as udp

print(udp.script('α'))  # 'Greek'
print(udp.is_emoji('😀'))  # True
print(udp.grapheme_cluster_break('a'))  # 'Other'

Verify before relying

  • Whether Python 3.13 support mentioned in changelog is reflected in current wheel availability
  • Performance characteristics compared to the standard unicodedata module for large-scale lookups

Package facts

License Apache License 2.0 (permissive)
Python support not specified
Install friction medium — platform-specific wheel
Runtime dependencies none
Maintenance aging — 531 days since the last release
Last repo commit
First released
Downloads 91,072/month — #13,543 on PyPI (30-day window, as of 2026-08-14)
Known vulnerabilities none known (OSV.dev, checked 2026-08-14)

Evidence: unicodedataplus-16.0.0.post1-cp310-cp310-macosx_11_0_arm64.whl; unicodedataplus-16.0.0.post1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl; unicodedataplus-16.0.0.post1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl; unicodedataplus-16.0.0.post1-cp310-cp310-musllinux_1_2_i686.whl; unicodedataplus-16.0.0.post1-cp310-cp310-musllinux_1_2_x86_64.whl; unicodedataplus-16.0.0.post1-cp310-cp310-win32.whl; unicodedataplus-16.0.0.post1-cp310-cp310-win_amd64.whl; unicodedataplus-16.0.0.post1-cp311-cp311-macosx_11_0_arm64.whl; unicodedataplus-16.0.0.post1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl; unicodedataplus-16.0.0.post1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl; unicodedataplus-16.0.0.post1-cp311-cp311-musllinux_1_2_i686.whl; unicodedataplus-16.0.0.post1-cp311-cp311-musllinux_1_2_x86_64.whl; unicodedataplus-16.0.0.post1-cp311-cp311-win32.whl; unicodedataplus-16.0.0.post1-cp311-cp311-win_amd64.whl; unicodedataplus-16.0.0.post1-cp312-cp312-macosx_11_0_arm64.whl; unicodedataplus-16.0.0.post1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl; unicodedataplus-16.0.0.post1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl; unicodedataplus-16.0.0.post1-cp312-cp312-musllinux_1_2_i686.whl; unicodedataplus-16.0.0.post1-cp312-cp312-musllinux_1_2_x86_64.whl; unicodedataplus-16.0.0.post1-cp312-cp312-win32.whl

Tags

unicode character propertiesunicode script and block lookupemoji detection unicodegrapheme cluster breakunicode indic propertiesword break sentence breakunicode data extensions
unicodetext-analysischaracter-properties

More Linguistic packages