MCPcopy Index your code
hub / github.com/psf/cachecontrol / set

Method set

cachecontrol/cache.py:23–26  ·  view source on GitHub ↗
(
        self, key: str, value: bytes, expires: int | datetime | None = None
    )

Source from the content-addressed store, hash-verified

21 raise NotImplementedError()
22
23 def set(
24 self, key: str, value: bytes, expires: int | datetime | None = None
25 ) -> None:
26 raise NotImplementedError()
27
28 def delete(self, key: str) -> None:
29 raise NotImplementedError()

Calls

no outgoing calls