Metadata-Version: 2.4
Name: string-cleaner-vijval
Version: 0.3.0
Summary: A utility to clean and format strings into snake_case.
Author-email: Vijval Vemula <vemulavijval1@gmail.com>
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown

# String Cleaner

A simple, lightweight utility to clean up messy strings and convert them into standard `snake_case`. 

## Installation

```bash
pip install string-cleaner-vijval
```
## Usage
```bash
from string_cleaner import clean_string

print(clean_string("helloWorld")) 
# Output: hello_world

print(clean_string("hello1801world")) 
# Output: hello_1801_world

print(clean_string("hello world .,.; 71891")) 
# Output: hello_world_71891
```
