Metadata-Version: 2.1
Name: rememberer
Version: 0.1.2
Summary: Rememberer is a tool to help your functions remember their previous results.
Home-page: https://github.com/ChamRun/rememberer
Author: ChamRun
Author-email: chrm@aut.ac.ir
Project-URL: Organization, https://chamrun.github.io/
Keywords: pickle,cache
Requires-Python: >=3.5
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pickle5

# remember
Rememberer is a tool to help your functions remember their previous results.

## Installation

```bash
pip install rememberer
```

## Usage

```python
from rememberer import rem

@rem
def add(a, b):
    import time
    time.sleep(3)
    return a + b

add(1, 2)  # this will take 3 seconds
add(1, 2)  # this will take 0 seconds
```

