piglatin

Converts text to Pig Latin


Keywords
piglatin, translate, cypher, secret, language
License
MIT
Install
pip install piglatin==1.0.4

Documentation

piglatin

Converts english text to piglatin.

Installation

piglatin can be installed from PyPI using pip.

pip install piglatin

Usage

>>> import piglatin
>>> piglatin.translate("hello world!")
'ello-hay orld-way!'

Command Line Usage

piglatin can also be used as a command line tool.

$ python -m piglatin "hello world!"
ello-hay orld-way

Or read and write to files.

$ python -m piglatin -i input.txt -o output.txt