Metadata-Version: 2.1
Name: anyascii
Version: 0.2.0
Summary: Unicode to ASCII transliteration
Home-page: https://github.com/anyascii/anyascii
License: UNKNOWN
Keywords: unicode,ascii,transliteration,utf8,romanization,slug,emoji,unidecode,normalization
Author: Hunter WB
Author-email: hunter@hunterwb.com
Requires-Python: >=3.3
Description-Content-Type: text/markdown
Classifier: License :: OSI Approved :: ISC License (ISCL)
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Topic :: Text Processing :: General
Classifier: Topic :: Text Processing :: Linguistic

# AnyAscii [![build](https://travis-ci.com/anyascii/anyascii.svg?branch=master)](https://travis-ci.com/anyascii/anyascii)

Unicode to ASCII transliteration

[**Web Demo**](https://anyascii.com)

Converts Unicode text to a reasonable representation using only ASCII

For most characters in Unicode, AnyAscii provides an ASCII-only replacement string. Text is converted character-by-character without considering the context. The mappings for each script are based on popular existing romanization schemes. Symbolic characters are converted based on their meaning or appearance. All ASCII characters in the input are left unchanged, every other character is replaced with printable ASCII characters. Unknown characters are removed.

```python
from anyascii import anyascii

s = anyascii('άνθρωποι')
assert s == 'anthropoi'
```

Python 3.3+ compatible

`pip install anyascii`

[**FULL README**](https://github.com/anyascii/anyascii)

