Al Bhed
Simple CLI and Library that translates Text into Al Bhed
Python:
>>> from albhed import AlBhed
>>>
>>> albhed = AlBhed("Hello, World!")
>>> albhed.translate()
'Rammu, Funmt!'
>>>
>>> albhed = AlBhed("Rammu, Funmt!")
>>> albhed.revert()
'Hello, World!'
Shell:
$ albhed Hello, World!
Rammu, Funmt!
$ albhed -r Rammu, Funmt!
Hello, World!