Metadata-Version: 2.4
Name: eldar-textformatter-matrix
Version: 0.1.0
Summary: A simple Python library for text formatting and cleaning.
Home-page: https://github.com/eldar/textformatter
Author: Eldar Eliyev
Author-email: eldar@example.com
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-python
Dynamic: summary

﻿# textformatter

A simple Python library for text formatting and cleaning.

## Example Usage

```python
from textformatter import capitalize_words, to_snake_case

print(capitalize_words("hello world"))  # Hello World
print(to_snake_case("Hello World"))     # hello_world
