Metadata-Version: 2.4
Name: fast_stringcase
Version: 1.2.0b3
Summary: C extension for string case conversions. The logic is ported from and based on stringcase == 1.2.0
Home-page: https://github.com/IshamMohamed/fast-stringcase/
Download-URL: https://pypi.org/project/fast-stringcase/
Author: Isham Mohamed
Author-email: isham.iqbal@icloud.com
License: MIT
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
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: download-url
Dynamic: home-page
Dynamic: license
Dynamic: requires-python
Dynamic: summary

# Fast Stringcase Project
This project provides a fast and efficient way to convert strings between different cases. This is based on stringcase version 1.2.0. This is why the version has been kept same.

## Local Deployment and Testing
To build and install use the following:
```bash
python -m build
pip install .
```

To run unit tests:
```bash
python test_fast_stringcase.py
```

## Usage
To use the project, simply import the fast_stringcase module and call the desired function. For example:
```python
import fast_stringcase

print(stringcase.titlecase('FooBarBaz'))  # Output: Foo Bar Baz
```
