Metadata-Version: 2.2
Name: my_textutils
Version: 0.1.2
Summary: A utility library for text processing
Author: Kaushal Varma
Author-email: varma.kaushal.99@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
License-File: LICENSE
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: requires-python
Dynamic: summary

# TextUtils

TextUtils is a simple Python library designed for text processing tasks. It provides a variety of functions to work with text such as:

- Extracting email addresses from a block of text.
- Validating if a string is a valid URL.
- Converting text between different cases like `camelCase`, `snake_case`, and `PascalCase`.

## Features

- **Extract emails**: Extracts all email addresses from a given text.
- **Validate URL**: Validates if a given string is a valid URL.
- **Convert text cases**: Converts text between `camelCase`, `snake_case`, and `PascalCase`.

## Installation

To install `TextUtils`, you can use `pip`, the Python package manager. Run the following command:

```bash
pip install textutils
