Unicode normalization forms (NFC, NFKC, NFD, NFKD). A library independent from the Python core Unicode database.
Project description
pyunormalize
A pure Python implementation of the Unicode normalization algorithm independent from the Python core Unicode database. This package supports version 15.0 of the Unicode standard (released on September 13, 2022). It has been thoroughly tested against the Unicode test file.
For the formal specification of the Unicode normalization algorithm, see Section 3.11, Normalization Forms, in the Unicode core specification.
Installation
The easiest method to install is using pip:
pip install pyunormalize
UCD version
To get the version of the Unicode character database currently used:
>>> from pyunormalize import UCD_VERSION
>>> UCD_VERSION
'15.0.0'
Example usage
>>> from pyunormalize import NFC, NFD, NFKC, NFKD
>>> s = "élève" # "\u00E9\u006C\u00E8\u0076\u0065"
>>> nfc = NFC(s)
>>> nfd = NFD(s)
>>> nfc == s
True
>>> nfd == nfc
False
>>> " ".join([f"{ord(x):04X}" for x in nfc])
'00E9 006C 00E8 0076 0065'
>>> " ".join([f"{ord(x):04X}" for x in nfd])
'0065 0301 006C 0065 0300 0076 0065'
>>>
>>> s = "⑴ ffi ²"
>>> NFC(s), NFKC(s), NFD(s), NFKD(s)
('⑴ ffi ²', '(1) ffi 2', '⑴ ffi ²', '(1) ffi 2')
>>> from pyunormalize import normalize
>>> normalize("NFKD", "⑴ ffi ²")
'(1) ffi 2'
>>> forms = ["NFC", "NFD", "NFKC", "NFKD"]
>>> [normalize(f, "\u017F\u0307\u0323") for f in forms]
['ẛ̣', 'ẛ̣', 'ṩ', 'ṩ']
Related resources
This implementation is based on the following resources:
- Section 3.11, Normalization Forms, in the Unicode core specification, version 15.0.0
- Unicode Standard Annex #15: Unicode Normalization Forms, version 53
Licenses
The code is available under the MIT license.
Usage of Unicode data files is governed by the UNICODE TERMS OF USE, a copy of which is included as UNICODE-LICENSE.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file pyunormalize-15.0.0.tar.gz
.
File metadata
- Download URL: pyunormalize-15.0.0.tar.gz
- Upload date:
- Size: 515.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.6.0 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e63fdba0d85ea04579dde2fc29a072dba773dcae600b04faf6cc90714c8b1302 |
|
MD5 | 6ece48b486aad217aa37c162d3fa16fe |
|
BLAKE2b-256 | 7ff8bd510f00258e135819289d0c47f136c0f8c4761c636e6817a65400b16139 |