Metadata-Version: 2.4
Name: text_cleaner_yuvan
Version: 0.1.0
Summary: A simple text cleaning tool for NLP.
Home-page: https://github.com/YuvanJain/text_cleaner
Author: Yuvan Jain
Author-email: jainyuvan769@example.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Intended Audience :: Education
Classifier: Topic :: Text Processing :: Linguistic
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: requires-python
Dynamic: summary

# text_cleaner

A Python package for cleaning and tokenizing text.

## Features

- Remove punctuation
- Lowercase text
- Filter basic stop words

## Usage

```python
from text_cleaner import clean_text

text = "The quick, brown fox jumps over the lazy dog!"
print(clean_text(text))
# Output: ['quick', 'brown', 'fox', 'jumps', 'over', 'lazy', 'dog']
```
