Metadata-Version: 2.1
Name: cutility
Version: 0.0.3
Summary: Common Utility functions for development
Home-page: https://github.com/sagarshq/cutility
Author: Sagar Sarkale
Author-email: sagarsarkale.work@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Utilities
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

# cutility

Common utils for development

# Variables

What is project_root?

- Directory that holds your src folder is your project_root

What is data_root?

- Directory that holds all your data folder is your data_root

# Usage

## Instantiate

```python
from cutility import cutils, logger

# add data folder as per your preference
# add config folder as per your preference
cu = cutils.Cutils(
                    data_root=f"path/to/data/folder",
                    config_root=f"path/to/config/folder", # currently only supports .yml files
                    verbose=True
)


log = logger.Logger()
log.i("This is info message")
# also supports warning critical debug messages
```

# todo
