MCPcopy Create free account
hub / github.com/omkarcloud/botasaurus / __init__

Method __init__

botasaurus/cache.py:14–16  ·  view source on GitHub ↗
(self, key)

Source from the content-addressed store, hash-verified

12class CacheMissException(Exception):
13 """Exception raised when an item is not found in the cache."""
14 def __init__(self, key):
15 self.key = key
16 super().__init__(f"Cache miss for key: '{key}'")
17
18def get_directory_path(file_path):
19 return os.path.dirname(file_path)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected