Metadata-Version: 2.1
Name: fastpunct
Version: 1.0.1
Summary: Punctuation restoration with sequence to sequence networks
Home-page: https://github.com/notAI-tech/fastPunct
Author: Hari Krishna Sai Kodali
Author-email: kodalihari.619@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.5.0
Description-Content-Type: text/markdown
Requires-Dist: numpy
Requires-Dist: pydload


# fastPunct : Fast and accurate punctuation restoration with sequence to sequence networks.
[![Downloads](https://pepy.tech/badge/fastpunct)](https://pepy.tech/project/fastpunct)

# Installation:
```bash
pip install --upgrade fastpunct
```

# Supported languages:
en - english

# Usage:

```python
from fastpunct import FastPunct
# The default language is 'en'
fastpunct = FastPunct('en')
fastpunct.punct(["oh i thought you were here", "in theory everyone knows what a comma is", "hey how are you doing", "my name is sheela i am in love with hrithik"], batch_size=32)
# ['Oh! I thought you were here.', 'In theory, everyone knows what a comma is.', 'Hey! How are you doing?', 'My name is Sheela. I am in love with Hrithik.']

```


