notquite

A command line tool that converts ASCII text to Unicode homoglyphs.


Keywords
ascii unicode homoglyph joshuarli, ascii, command-line-tool, homoglyphs, unicode
License
MIT
Install
pip install notquite==0.1.3

Documentation

notquite

PyPI Version Travis Status License MIT

notquite is a command line tool that converts ASCII text to Unicode homoglyphs.

Usage

$ echo "make me beautiful!!!" | notquite -s 100
ⅿаkе ⅿе bеɑᥙtⅰfᥙⅼ
$ echo qwertyuiop > file.txt
$ cat file.txt | notquite -s 100 > messedup.txt
$ cmp -s file.txt messedup.txt || echo "oh no"
oh no
$ cat messedup.txt | notquite -c > messedup.txt
$ cmp -s file.txt messedup.txt && echo "whew"
whew

Installation

notquite can be installed through pip!

$ pip install notquite

Compatibility

notquite supports python 3.3 - 3.6.