Metadata-Version: 2.1
Name: nbpreprocessor
Version: 0.0.1
Summary: Dummy Preprocessor for text
Home-page: https://github.com/epochs19/nbpreprocessor/tree/master/
Author: Neha
Author-email: epochs19@gmail.com
License: Apache Software License 2.0
Keywords: Text Preprocessing
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# PREPROCESSING METHODS DOCUMENTATION
> Developing a library to help with preprocessing text


## Install

`pip install nbpreprocessor`

## How to use

```python
#Example for the function tokenize_sentence
tokenize_sentence("This sentence will be tokenized into words")
```




    ['This', 'sentence', 'will', 'be', 'tokenized', 'into', 'words']



```python
#Example for the function capitalize_every_word
capitalize_every_word("Every word should begin with an uppercase")
```




    'Every Word Should Begin With An Uppercase'




