Metadata-Version: 2.1
Name: textutilsSohaib
Version: 1.1.0
Summary: A simple text utility package providing text manipulation functions
Home-page: https://github.com/MuhammadSohaibHassan/textutilsSohaib
Author: Muhammad Sohaib Hassan
Author-email: muhammadsohaibhassan3@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# textutilsSohaib

`textutilsSohaib` is a simple Python package that provides various utility functions for manipulating text. These functions help with tasks such as converting text to uppercase, reversing text, counting words, and much more.

## Functions

- `to_uppercase(text)`: Converts the text to uppercase.
- `to_lowercase(text)`: Converts the text to lowercase.
- `reverse_text(text)`: Reverses the text.
- `capitalize_words(text)`: Capitalizes the first letter of each word.
- `remove_whitespace(text)`: Removes all spaces from the text.
- `word_count(text)`: Returns the number of words in the text.
- `replace_spaces_with_underscore(text)`: Replaces spaces with underscores.
- `remove_punctuation(text)`: Removes punctuation from the text.
- `reverse_words(text)`: Reverses the order of words in the text.
- `count_vowels(text)`: Counts the number of vowels in the text.
- `is_palindrome(text)`: Checks if the text is a palindrome.

## Installation

To install `textutilsSohaib`, use `pip`:

```bash
pip install textutilsSohaib
```
