Metadata-Version: 2.4
Name: shalinee-text-utils
Version: 0.1.2
Summary: A basic text utilities package
Home-page: https://github.com/Shalinee-Priya/PACKAGES1
Author: Shalinee Priya
Author-email: shalinee.priya31@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
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

# shalinee-text-utils

A simple Python package for basic text utilities like cleaning text and counting words.

##installation
```bash
pip install shalinee-text-utils


#3 usage

from shalinee-text-utils import clean_text,word_count

text = " Hello   welcome   to   the world    of anlytics"


print(clean_text(text))
print(word_count(text))






