Unidecode with medieval flavor
Project description
Mufidecode
Transliterate Unicode text into plain 7-bit ASCII with Medieval flavor.
from mufidecode import mufidecode
from unidecode import unidecode
string = " soffroient Torm̃z⁊"
assert unidecode(string) == " soffroient Tormz7" # Lostfirst character, et is converted to seven.
assert mufidecode(string) == "et soffroient Tormzet"
assert mufidecode(string, join=False) == ('et', ' ', 's', 'o', 'f', 'f', 'r', 'o', 'i', 'e', 'n', 't', ' ', 'T', 'o', 'r', 'm', 'z', 'et')
assert mufidecode("ꝮꝯꝮꝯ") == "usususus"
Add a new token
1. Get the code
string = "ꝯ"
print((ord(string) >> 8, ord(string) % 256))
# (167, 111)
2. Add the code to MUFI
MUFI[(167, 111)] = "us" # Accepted transliteration
3. Pull Request
4. Enjoy
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
mufidecode-0.0.2.tar.gz
(16.2 kB
view hashes)
Built Distribution
Close
Hashes for mufidecode-0.0.2-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 023f61a006364cfd55f7921be75a033f35e9d18e5721445579becfb661a4c0bf |
|
MD5 | 68ceb332b0cf8dc3ca127173e0af2c2c |
|
BLAKE2b-256 | a283bfef2eca09a1488cbbc696f5852c12b24946d62b009138e284e6cd25f031 |