Metadata-Version: 2.1
Name: piglatin
Version: 1.0.4
Summary: Converts text to piglatin.
Home-page: https://github.com/bpabel/piglatin
Author: Brendan Abel
Author-email: 007brendan@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: >=3.6.0


# piglatin

Converts english text to piglatin.

## Installation

`piglatin` can be installed from PyPI using `pip`.

    pip install piglatin

## Usage

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

## Command Line Usage

`piglatin` can also be used as a command line tool.

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

Or read and write to files.

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



