Skip to main content

Python library to "translate" a variety of unicode special characters to normal text

Project description

uni-translate

Python library to "translate" a variety of unicode special characters to normal text

can be used as a command line util for strings and text files, or as a library for easier and more flexible integration


Lib Examples:

examples can be found in the /examples directory

Lib Documentation:

  • [class] translator

    • [kwarg] Union[dict, List[str]]=None key:

      • key used to contruct a translation table, can be a list of strings contaning 52 characters (one for each letter, upper and lowercase), or a dict contaning key/value pairs that map each character in the key to a character in the value. (default is provided)


    • [kwarg] Union[str, List[str]]=None remove:

      • characters to be stripped during translation (default is provided)


    • [kwarg] (bool)=False debug:

      • toggles debug prints in the __init__


    • [method] translate -> str:

      • [arg] (str) text: text to be translated


    • [method] text_to_unicode -> str:

      • [arg] (str) text: text to be translated

      • [kwarg] (int) mode: translation mode to use, this should correspond to an index in the key


    • [staticmethod] _trans -> str:

      • method to translate text via the given table

      • [arg] (str) text: text to be translated

      • [arg] Union[dict, Union[List[str], Tuple[str]]] table: table to use for translation, when a list or tuple is passed, the first element is treated as the key and the second element is treated as the value. dict should only be passed if it is a valid translation table (as obtained from str.maketrans)


    • [staticmethod] clean_key -> Tuple[str]:

      • returns the key cleaned of "normal" characters and duplicates, and its respective alphabet value

      • [arg] (str) key - key to be cleaned


Command line:

  • uni-translate -t #unicode here

  • paths to text files can be passed aswell, if nothing is passed the user will be prompted

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

uni-translate-0.0.5.tar.gz (19.6 kB view hashes)

Uploaded Source

Built Distribution

uni_translate-0.0.5-py3-none-any.whl (19.4 kB view hashes)

Uploaded Python 3

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