Metadata-Version: 2.4
Name: casechange_wic
Version: 1.0.3
Summary: Case Change: A package for changing the case of strings.
Author-email: Anuradha <anuradhawick@gmail.com>
Description-Content-Type: text/markdown
License-Expression: MIT
License-File: LICENSE
Project-URL: Home, https://github.com/anuradhawick/casechange

# CaseChange

A package for changing the case of strings.

## Installation

You can install the package using pip:

```
pip install casechange_wic
```

## Usage

Here's a quick example of how to use the package:

```python
from casechange import case_change

text = "Hello World"
print(case_change(text, "snake"))  # hello_world
print(case_change(text, "kebab"))  # hello-world
print(case_change(text, "camel"))  # helloWorld
```

