Cache
This module contains the Cache class which provides a simple caching mechanism. It stores key-value pairs in a JSON file located in the Manga_Data directory.
Cache
¶
A simple caching class that stores key-value pairs in a JSON file.
ATTRIBUTE | DESCRIPTION |
---|---|
cache_file |
The path to the file where the cache is stored.
TYPE:
|
cache |
The cache data.
TYPE:
|
Source code in AnilistMangaUpdater/Utils/cache.py
get
¶
Gets a value from the cache.
PARAMETER | DESCRIPTION |
---|---|
key
|
The key to get the value for.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
Union[str, None]
|
The value for the key, or None if the key is not in the cache. |
Source code in AnilistMangaUpdater/Utils/cache.py
load_cache
¶
Loads the cache from a file.
Source code in AnilistMangaUpdater/Utils/cache.py
save_cache
¶
Saves the cache to a file.
Source code in AnilistMangaUpdater/Utils/cache.py
set
¶
Sets a value in the cache and saves the cache to a file.
PARAMETER | DESCRIPTION |
---|---|
key
|
The key to set the value for.
TYPE:
|
value
|
The value to set.
TYPE:
|