Skip to main content

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.1 of the Unicode standard (released in September 2023). 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.1.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:

Licenses

The code is available under the MIT license.

Usage of Unicode data files is governed by the UNICODE TERMS OF USE. Further specifications of rights and restrictions pertaining to the use of the Unicode data files and software can be found in the Unicode Data Files and Software License, a copy of which is included as UNICODE-LICENSE.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pyunormalize_micropip-15.1.0.tar.gz (515.3 kB view details)

Uploaded Source

Built Distribution

pyunormalize_micropip-15.1.0-py3-none-any.whl (516.1 kB view details)

Uploaded Python 3

File details

Details for the file pyunormalize_micropip-15.1.0.tar.gz.

File metadata

File hashes

Hashes for pyunormalize_micropip-15.1.0.tar.gz
Algorithm Hash digest
SHA256 56ec783f561546b95ff3c8a90ccdc8f1461f6be71facef27c53e77d50dedb2fd
MD5 1c278782bbee77d2cb6420d70f612a4a
BLAKE2b-256 92697ead22afe17c7baba6134939011de65fd2cc8c7d4b6f87f7eedd4fbaad5c

See more details on using hashes here.

File details

Details for the file pyunormalize_micropip-15.1.0-py3-none-any.whl.

File metadata

File hashes

Hashes for pyunormalize_micropip-15.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 2e9d54d29af940a5b3a1fb13d4520ec2082f0853f5fec8869dc03885a62c5d5b
MD5 4dbf9b741639498e27d4df22e5798027
BLAKE2b-256 f3f0c73d9a51d1bab11112f70cb88feff3613f244a3905018dff30c46c79412d

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page