-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPKG-INFO
49 lines (35 loc) · 1.21 KB
/
PKG-INFO
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
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)