diff --git a/evdspy/EVDSlocal/requests_/my_cache.py b/evdspy/EVDSlocal/requests_/my_cache.py index eaf7d5f..aa9c57b 100644 --- a/evdspy/EVDSlocal/requests_/my_cache.py +++ b/evdspy/EVDSlocal/requests_/my_cache.py @@ -13,7 +13,9 @@ test_result_file_name = str(get_current_dir() / ".." / "requests_" / "test_reg_result") arg_sep = "_argSEP_" p = Path() -pickle_folder = p.absolute() / 'pickles' +# pickle_folder = p.absolute() / 'pickles' +pickle_folder = Path.home() / ".cache" / "evdspy" + # ----------------------------------------------------------------------------- class CacheDecider(Enum): day = date.today() @@ -181,4 +183,4 @@ def cached_method(*args, **kwargs): 'MyCache', 'save_pickle_for_test', 'load_test_pickle' -] \ No newline at end of file +]