A Python3 implemention of Ecoji. Ecoji encodes data as 1024 emojis, its base1024 with an emoji character set. Give Ecoji a try at ecoji.io.
- with pip
$pip3 install ecoji- with source code
$git clone git@github.com:mecforlove/ecoji-py.git && cd ecoji-py && python3 setup.py install- encode
$echo -n hello | ecoji
π²π©ππ·
- decode
$echo -n π²π©ππ· | ecoji -d
hello%Run ecoji -h to learn more about the CLI.
- encode
>>> import io
>>> from ecoji import encode
>>> r = io.BytesIO(b'hello')
>>> w = io.StringIO()
>>> encode(r, w)
>>> print(w.getvalue())
π²π©ππ·- decode
>>> import io
>>> from ecoji import decode
>>> r = io.StringIO('π²π©ππ·')
>>> w = io.BytesIO()
>>> decode(r, w)
>>> print(w.getvalue())
b'hello'Last but not the least, only Python3.x is supported.