Current Path: > > usr > lib > python3.6 > site-packages > pip > > > > _vendor > cachecontrol >
Operation : Linux host59.registrar-servers.com 4.18.0-513.18.1.lve.2.el8.x86_64 #1 SMP Sat Mar 30 15:36:11 UTC 2024 x86_64 Software : Apache Server IP : 198.54.126.42 | Your IP: 216.73.216.8 Domains : 1034 Domain(s) Permission : [ 0755 ]
Name | Type | Size | Last Modified | Actions |
---|---|---|---|---|
__pycache__ | Directory | - | - | |
caches | Directory | - | - | |
__init__.py | File | 302 bytes | April 06 2024 13:40:45. | |
_cmd.py | File | 1320 bytes | April 06 2024 13:40:45. | |
adapter.py | File | 4608 bytes | April 06 2024 13:40:45. | |
cache.py | File | 790 bytes | April 06 2024 13:40:45. | |
compat.py | File | 380 bytes | April 06 2024 13:40:45. | |
controller.py | File | 13024 bytes | April 06 2024 13:40:45. | |
filewrapper.py | File | 2531 bytes | April 06 2024 13:40:45. | |
heuristics.py | File | 4141 bytes | April 06 2024 13:40:45. | |
serialize.py | File | 6536 bytes | April 06 2024 13:40:45. | |
wrapper.py | File | 498 bytes | April 06 2024 13:40:45. |
""" The cache object API for implementing caches. The default is a thread safe in-memory dictionary. """ from threading import Lock class BaseCache(object): def get(self, key): raise NotImplemented() def set(self, key, value): raise NotImplemented() def delete(self, key): raise NotImplemented() def close(self): pass class DictCache(BaseCache): def __init__(self, init_dict=None): self.lock = Lock() self.data = init_dict or {} def get(self, key): return self.data.get(key, None) def set(self, key, value): with self.lock: self.data.update({key: value}) def delete(self, key): with self.lock: if key in self.data: self.data.pop(key)
SILENT KILLER Tool