Metadata-Version: 2.1
Name: lab-text-processing
Version: 0.1.2
Summary: Functions to text processing
Home-page: https://github.com/labhackercd/lab-text-processing
Author: msfernandes
Author-email: matheus.souza.fernandes@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
Requires-Python: >=3
Description-Content-Type: text/markdown
Requires-Dist: nltk
Requires-Dist: fcache


# Lab Text Processing

LabHacker's Toolbox to Text Processing

## Install
`pip install lab-text-processing`

## Usage

First of all you need to install all mandatory nltk data:
```
from lab_text_processing.nltk import download_modules
download_modules()
```

```
from lab_text_processing.pre_processing import bow
bow, stem_reference = bow.('Texto que será transformado em uma Bag-of-Words',
                           extra_stopwords=('lista', 'de', 'stopwords', 'adicionais'))
```

