Setup & Guide

Installation & Setup

To use Memorylake, install the required dependencies (ignore Groclake installation if already did) :

pip install groclake
pip install python-dotenv

Then, configure Redis in a .env file:

REDIS_HOST=localhost
REDIS_PORT=6379

Initializing Memorylake

from memorylake import Memorylake
memory_lake = Memorylake()

Last updated