Metadata-Version: 2.1
Name: textconverterimp
Version: 0.1.5
Summary: A library to convert text into different formats.
Author: improve
Author-email: vlasav227@mail.ru
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

# Text Converter

A Python library to convert text into different formats.

## Installation

```bash
pip install textconverterimp

```

## Usage
```bash
import textconverterim
a = 'Who kNow THat'
print(textconverterimp.to_title_case(a)) 
#or
import textconverterim as tc

a = 'Who kNow THat'
print(tc.to_title_case(a))
```
