datazen.classes.task_data_cache
index
/home/vkottler/src/vkottler/workspace/datazen/datazen/classes/task_data_cache.py

datazen - A class for storing data from completed operations to disk.

 
Modules
       
os
shutil

 
Classes
       
builtins.object
TaskDataCache

 
class TaskDataCache(builtins.object)
    TaskDataCache(cache_dir: str)
 
Provides storage for data produced by task targets to facilitate better
(and more correct) short-circuiting.
 
  Methods defined here:
__init__(self, cache_dir: str)
Construct an empty cache or optionally load from a directory.
clean(self, purge_data: bool = True) -> None
Clean this cache's data on disk.
load(self, load_dir: str) -> None
Read new data from the cache directory and update state.
save(self, out_type: str = 'json') -> None
Write cache data to disk.

Data descriptors defined here:
__dict__
dictionary for instance variables
__weakref__
list of weak references to the object

 
Data
        GenericStrDict = typing.Dict[str, typing.Any]