Metadata-Version: 2.1
Name: OutCache
Version: 0.0.4
Summary: Function output cacher
Home-page: https://github.com/Kiyomi-Parents/OutCache
Author: LuCkEr-
Author-email: lucker@lucker.xyz
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/Kiyomi-Parents/OutCache/issues
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

[![PyPI version](https://badge.fury.io/py/OutCache.svg)](https://pypi.org/project/OutCache)
# OutCache
Function output cacher

Usage:

```python
from outcache import Cache


@Cache(minutes=1)
def get_profile(email: str, username: str):
    my_dict = {"email": email, "username": username}

    return my_dict


profile = get_profile("example@example.com", username="example")
```

