MCPcopy
hub / github.com/caronc/apprise / keys

Method keys

apprise/persistent_store.py:1706–1712  ·  view source on GitHub ↗

Returns our keys.

(self)

Source from the content-addressed store, hash-verified

1704 return result
1705
1706 def keys(self) -> builtins.set[str]:
1707 """Returns our keys."""
1708 if self._cache is None and not self.__load_cache():
1709 # There are no keys to return
1710 return {}.keys()
1711
1712 return self._cache.keys()
1713
1714 def delete(
1715 self,

Calls 1

__load_cacheMethod · 0.95