Metadata-Version: 2.1
Name: object_case_switcher
Version: 0.0.26
Summary: The easiest way to switch case of prop in return of your functions
Home-page: https://github.com/Alex-Andr-19/case_switcher
Author: Aleksandrychev Andrey
Author-email: aleks-andr-19@yandex.ru
License: MIT License
Project-URL: GitHub, https://github.com/Alex-Andr-19/case_switcher
Keywords: case,switcher,python,snake,camel,switch
Platform: UNKNOWN
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
License-File: LICENSE

# CASE SWITCHER
The easiest way to switch case of prop in return of your functions

## Installing
```bash
pip install object_case_switcher
```

## Examples
Simple use
```python
from object_case_switcher import transform_structure

@transform_structure(_async=False)
def some_function():
    return {
        "some_property": 42,
    }

print(some_function())

# >>> '{"someProperty": 42}'
```

