Metadata-Version: 2.1
Name: nlpstreamline
Version: 0.0.10
Summary: Streamline basic text & NLP processing
Home-page: https://github.com/CielZ001/NLPStreamline
Author: XiZhao
Author-email: cielxxzhao@gmail.com
License: MIT
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.8
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Provides-Extra: dev
License-File: LICENSE.txt

# NLP Streamline Tool
Streamline basic text & NLP processing

## How to Use
1. After installing the package, import the functions you need:

```
from nlpstreamline import (
    basic_text_processing,
    nlp_text_processing,
    n_gram_generation
)
```
2. Use following code to do basic text processing(lowercasing, removing urls, tokenizing, remove stopwords and punctuations), nlp processing (stemming and lemmatizing), and n grams generation.

```
print(basic_text_processing('Good Morning! How are you today?'))

print(nlp_text_processing('Good Morning! How are you today?'))

print(n_gram_generation('Good Morning! How are you today?', 2))

```
