for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
import os
import diskcache
WORKING_DIR = 'working_dir'
class InitDB(diskcache.Cache):
def __init__(self):
super().__init__(directory=os.path.join(os.getcwd(), 'cache'))
def set_cwd(self):
cwd = self.get('working_dir', os.getcwd())
os.chdir(cwd)
def update_cwd(self, cwd):
self['working_dir'] = cwd
self.set_cwd()