Get the value for the given key. Args: - key - The key to get the value for. - as_bytes - Whether or not to return the value as bytes. Returns ------- - output - The value for the given key.
(self, key: str)
| 21 | |
| 22 | @abstractmethod |
| 23 | async def get(self, key: str) -> Any: |
| 24 | """Get the value for the given key. |
| 25 | |
| 26 | Args: |
| 27 | - key - The key to get the value for. |
| 28 | - as_bytes - Whether or not to return the value as bytes. |
| 29 | |
| 30 | Returns |
| 31 | ------- |
| 32 | - output - The value for the given key. |
| 33 | """ |
| 34 | |
| 35 | @abstractmethod |
| 36 | async def set(self, key: str, value: Any, debug_data: dict | None = None) -> None: |
no outgoing calls
no test coverage detected