--- id: tangled-up-in-unicode version: "0.2.0" license: BSD License license_treatment: permissive maintenance: abandoned --- # tangled-up-in-unicode — Access to the Unicode Character Database (UCD) License: permissive · Maintenance: abandoned · Downloads: 400.5K/mo ## What it is and what it does Tangled up in Unicode is a Python module that exposes the Unicode Character Database (UCD) with a richer API than the standard library's unicodedata module. It provides access to character properties like category, bidirectional class, script, block, and age, along with human-readable aliases for property values (e.g., 'Currency_Symbol' instead of 'Sc'). The package ships with Unicode 14.0.0 data, independent of your Python version—a significant advantage over unicodedata, which is locked to whatever Unicode version your Python interpreter was built with. The module is written in pure Python but can be compiled with Cython for performance. It does not support some unicodedata features like normalize() or lookup() by name, and it is no longer maintained—the last release was in September 2021 and the repository has not been updated since November 2022. This means the Unicode database will not be refreshed as new versions are released. Use it for: - Analyzing text to extract script, block, or category information for all characters regardless of Python version - Building text processing tools that need human-readable Unicode property names and aliases - Performing linguistic or character-level analysis that requires properties beyond what unicodedata exposes - Working with legacy code that depends on a specific frozen Unicode version ## Worth the install? AI-flagged interpretation of the facts above — verify before relying. Provides detailed Unicode character properties and metadata from the Unicode Character Database with human-readable aliases, as an alternative to Python's standard library unicodedata module. No, not recommended for new projects. While the package offers richer Unicode metadata than the standard library, it is abandoned and will not receive updates as Unicode evolves. For most use cases, Python's built-in unicodedata is sufficient and actively maintained. Consider this package only if you have a specific dependency on its API or need its exact Unicode 14.0.0 snapshot and can accept no future maintenance. ## Install pip install tangled-up-in-unicode uv add tangled-up-in-unicode poetry add tangled-up-in-unicode ## Installing tangled-up-in-unicode Before you install: Low install friction with no runtime dependencies. However, the package is abandoned—last release was 2021-09-27 and last commit 2022-11-08—so it will not receive updates for new Unicode versions or bug fixes. License in practice: Licensed under BSD License (permissive), so you can use it freely in commercial and open-source projects with minimal restrictions. Quickstart: pip install tangled-up-in-unicode import tangled_up_in_unicode as unicodedata char_props = unicodedata.lookup('DOLLAR SIGN') # or access properties directly for a character Requires Python 3.6 or later. The package provides Unicode 14.0.0 data but will not update as new Unicode versions are released. Verify before relying: - Whether the frozen Unicode 14.0.0 database is sufficient for your use case or if you need access to newer Unicode versions - Performance characteristics when compiled with Cython versus the pure Python implementation - How well the package handles edge cases or malformed input compared to unicodedata ## Package facts - License: BSD License (permissive) - Python support: supports_current - Install friction: low - Maintenance: abandoned - Downloads: 400.5K/month (top 15,000 on PyPI) - Known vulnerabilities: none known ## Tags unicode character properties lookup, unicode database access, character metadata extraction, unicode property aliases, ucd character information, unicode script and block lookup, character category and bidirectional data, unicode-data, character-properties [View on SkillFed](https://skillfed.io/packages/tangled-up-in-unicode) · [View on PyPI](https://pypi.org/project/tangled-up-in-unicode/)