Metadata-Version: 2.4
Name: stringmagic
Version: 0.1.4
Summary: A simple yet powerful Python package providing various string manipulation utilities for text processing.
Author: Priyanshu Modak
Author-email: priyanshumodak21@gmail.com
License: MIT
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
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: license
Dynamic: requires-python
Dynamic: summary

# stringmagic

`stringmagic` is a lightweight and elegant Python package that provides easy-to-use functions for manipulating and transforming strings.

### âœ¨ Features
- Reverse any given text
- Remove vowels from strings
- Alternate capitalization for fun effects

### ðŸ§  Installation
```bash
pip install stringmagic
```

### ðŸ§° Usage
```python
from stringmagic import reverse, remove_vowels, alternate_caps

print(reverse("Priyanshu"))           # "uhsnayirP"
print(remove_vowels("Hello World"))   # "Hll Wrld"
print(alternate_caps("python"))       # "PyThOn"
```

---

Developed by **Priyanshu Modak**
