Metadata-Version: 2.1
Name: poem-parser
Version: 0.0.3
Summary: Parse poems into stressed and unstressed syllables.
Home-page: https://github.com/obeezzy/poem_parser
Author: Chronic Coder
Author-email: efeoghene.obebeduo@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: prosodic

# poem_parser
Parse words into stressed and unstressed syllables.

## Installation
To install:
```bash
$ pip install poem_parser
```

## Example usage
To parse a line:
```bash
$ python -m poem_parser "Just give me the likes, dont pass or scroll"
just|GIVE|me.the|LIKES|dont|PASS|or|SCROLL
```

To parse a file:
```bash
$ python -m poem_parser -f poem.txt
RO|ses.are|RED
VIOLETS|||are|BLUE
```

## License
[MIT](https://choosealicense.com/licenses/mit/)


