Metadata-Version: 2.1
Name: cachier-common-library
Version: 0.0.3
Summary: A python library for common classes and functions used to build cachier applications
Home-page: https://github.com/apinanyogaratnam/cachier-common-library
Author: apinanyogaratnam
Author-email: apinanapinan@icloud.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.10.4
Description-Content-Type: text/markdown
License-File: LICENSE

# Cachier Common Library

A python library for common classes and functions used to build cachier applications

## Table of Contents

- [Installation](#installation)
- [Usage](#usage)
- [Support](#support)
- [Contributing](#contributing)

## Installation

Install the package from pypi:

```sh
pip install cachier-common-library
```

## Usage

```python
from cachier_common_library import DriverType

# Using the DriverType enum
print(DriverType.RAM)
print(DriverType.JSON)
print(DriverType.SQLITE)
print(DriverType.PICKLE)
```

## Support

Please [open an issue](https://github.com/apinanyogaratnam/cachier-common-library/issues/new) for support.

## Contributing

Please contribute using [Github Flow](https://guides.github.com/introduction/flow/). Create a branch, add commits, and [open a pull request](https://github.com/apinanyogaratnam/cachier-common-library/compare/). -->

<!--
TODO comments:
TODO: commonize checking if driver is valid
-->


