uc.micro-py

2.0.0 · active · verified Sun Mar 29

uc-micro-py is a Python port of uc.micro, providing a micro subset of Unicode data files. This library is specifically designed to meet the needs of `linkify-it-py` projects. As of version 2.0.0, released in February 2026, it is actively maintained, though its release cadence appears to be infrequent, driven by updates to Unicode data or `linkify-it-py` requirements.

Warnings

Install

Quickstart

uc-micro-py is designed as an internal dependency, primarily for `linkify-it-py`. There is no direct, user-facing API for this library beyond importing it to confirm its presence. This quickstart demonstrates a basic import and version check.

import uc_micro_py
print(f"uc-micro-py version: {uc_micro_py.__version__}")
# Note: This library primarily serves as an internal dependency for linkify-it-py
# and does not expose a public API for direct feature usage.

view raw JSON →