MCPcopy Create free account
hub / github.com/psf/cachecontrol / get

Method get

cachecontrol/cache.py:20–21  ·  view source on GitHub ↗
(self, key: str)

Source from the content-addressed store, hash-verified

18
19class BaseCache:
20 def get(self, key: str) -> bytes | None:
21 raise NotImplementedError()
22
23 def set(
24 self, key: str, value: bytes, expires: int | datetime | None = None

Calls

no outgoing calls