Skip to content

Simple python library helping you to cache your data using json

Notifications You must be signed in to change notification settings

M1KoDam/EasyToCacheLib

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Easy-to-cache

Description

Simple python library helping you to cache your data using json.

It is implemented using the functionality of the Fluent API to provide you with a more user-friendly experience.


Using

Using the library is as simple and convenient as possible:

Let's import it first: First, import everything from the library (use the from ... import * construct).

Examples:

Creating cache object, where first argument is directory path where your cache will be saved and second is flag to load cache after initialization or not:

cache = Cache("EasyToCacheLib/Data/TestFolder/test_file.json", False)

Adding data using add method, where first argument is key and second the value:

cache.add("a", 10)

You can sort it by adding date using method sort_by_date, clear by method clear and etc


Developer

Me: MikoDam

About

Simple python library helping you to cache your data using json

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages