Metadata-Version: 2.1
Name: pypiglatin
Version: 0.1.1
Summary: A module that can convert words or strings of words from English to Pig Latin.
License: GPL-3.0-only
Author: Owen Plimer
Author-email: o.plimer@outlook.com
Maintainer: Sonosus
Maintainer-email: sonosusoshwa@gmail.com
Requires-Python: >=3.10,<4.0
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Description-Content-Type: text/markdown

# PyPigLatin

PyPigLatin is a module which can convert words or strings of words from English, into Pig Latin

## Installation

Use the package manager [pip](https://pip.pypa.io/en/stable/) to install PyPigLatin.

```bash
pip install pypiglatin
```

## Usage

```python
import pypiglatin as p

# Example showing translation of a single word
single_word = "Hello"

print(p.translate_word(single_word)
# This would print 'ellohay'


# To trnalsate a larger string, use the translate_string function
larger_string = "Pig Latin is hard to speak"

p.translate_string(larger_string)
# This would print 'igpay atinlay isway ardhay otay eakspay'
```

## License

[GPL-3.0](https://www.gnu.org/licenses/gpl-3.0.en.html)
