Metadata-Version: 2.1
Name: DataAnalysis
Version: 0.0.4
Summary: Pacote de pré-processamento de texto
Home-page: https://github.com/karinatk/DataAnalysis
Author: Karina Tiemi Kato, Renan Santos Mendes
Author-email: karinatkato@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown

# DataAnalysis

DataAnalysis Ã© uma biblioteca que pode ser usada para o prÃ©-processamento de um arquivo csv.

#### ParÃ¢metros:

```diff
input_file: nome do arquivo com a extensÃ£o csv

api_small_talks: url da api de small talks

content_column: nome ou Ã­ndice da coluna de conteÃºdo do arquivo csv

encoding: codificaÃ§Ã£o do arquivo

sep: separador usado no arquivo

batch: nÃºmero de batches para usar na api de small talks
```


## Installation

Use o gerenciador de pacotes [pip](https://pip.pypa.io/en/stable/) para instalar o DataAnalysis

```bash
pip install DataAnalysis
```

## Usage

```python
import DataAnalysis as da

p = da.PreProcessing(input_file, api_small_talks, content_column, encoding, sep, batch)
p.process(output_file, lower = True, punctuation = True, abbreviation = True, typo = True, small_talk = True,
emoji = True, wa_emoji = True, accentuation = True, number = True, relevant = False, cpf = True,
url = True, email = True, money = True, code = True, time = True, date = True, tagging = True)
```
## License
[MIT](https://choosealicense.com/licenses/mit/)

