Metadata-Version: 2.3
Name: lh-text-utils
Version: 0.2.0
Summary: Simple text processing utilities
Keywords: text,utils,processing,learning_hour,lokeshsoni
Author: Lokesh Soni
Author-email: Lokesh Soni <lokesh.soni@cbre.com>
License: MIT
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.11
Description-Content-Type: text/markdown

# lh-text-utils

Simple text processing utilities for Python.

## Installation

```bash
pip install lh-text-utils
```

## Usage

```python
from lh_text_utils import clean_text, word_count, slugify

# Clean and normalize text
clean_text("  Hello World!  ")  # "hello world!"

# Count words
word_count("Hello World!")  # 2

# Create URL slug
slugify("Hello World!")  # "hello-world"
```

## Functions

- `clean_text(text)` - Strip whitespace, normalize spaces, lowercase
- `word_count(text)` - Count words in text
- `slugify(text)` - Convert text to URL-friendly slug

**Requirements:** Python 3.11+  
**License:** MIT  
**Author:** Lokesh Soni