Save the provided data object with the representation for the current `DataFormat`. :param data: data to store :return:
(self, data: dict)
| 187 | |
| 188 | @abstractmethod |
| 189 | def save(self, data: dict): |
| 190 | """ |
| 191 | Save the provided data object with the representation for the current `DataFormat`. |
| 192 | :param data: data to store |
| 193 | :return: |
| 194 | """ |
| 195 | raise NotImplementedError() |
| 196 | |
| 197 | def save_binary(self, data: Union[dict, List[dict]]) -> str: |
| 198 | """ |
no outgoing calls