normalize_cz_unicode
Sanitize unicode inputs from unwanted characters.
Principle of the module is simple; Use translation table. If the character is not in translation table, convert it to latin2. If it can’t be converted, try to normalize it using unicode NKFD normalization. If it can’t be normalized, replace it with ?.
Usage
>>> from normalize_cz_unicode import normalize
>>> print normalize("Tohle je smajlík: 😭 , který tu ale nechci.")
Tohle je smajlík: ? , který tu ale nechci.
Various whitespace and special dash characters are normalized to basic ascii:
>>> a = u"Spojovníky ― a další havěť jako nedělitelné mezery taky nechci."
u'Spojovn\xedky \u2015 a dal\u0161\xed hav\u011b\u0165 jako ned\u011bliteln\xe9\u202fmezery\u2007taky nechci.'
>>> normalize(a)
u'Spojovn\xedky - a dal\u0161\xed hav\u011b\u0165 jako ned\u011bliteln\xe9 mezery taky nechci.'
Installation
Module is hosted at PYPI, and can be installed using PIP:
sudo pip install normalize_cz_unicode
Changelog
1.0.1
Added caching.
1.0.0
First working version.
Added tests.
Added documentation to README.rst.
Uploaded to PYPI.
0.1.0
Project created.
Release files for normalize_cz_unicode 1.0.1
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| normalize_cz_unicode-1.0.1.tar.gz | 4.6 kB | Details |
Release files / normalize_cz_unicode-1.0.1.tar.gz
| Download URL | normalize_cz_unicode-1.0.1.tar.gz |
|---|---|
| Size | 4.6 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
5a552a043105fe8079ad6e0a1e5f7494124bf233b5988caea013402f47cbd5c8
|
|
BLAKE2b-256 checksum How to use checksums |
37906815f724f70ade092855d53f88f7a32c482f1f01e958c8a9502b8926c118
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |