Get metadata value for collection/storage. :param key: The metadata key. :type key: unicode :param value: The value. :type value: unicode
(self, key, value)
| 228 | raise NotImplementedError('This storage does not support metadata.') |
| 229 | |
| 230 | def set_meta(self, key, value): |
| 231 | '''Get metadata value for collection/storage. |
| 232 | |
| 233 | :param key: The metadata key. |
| 234 | :type key: unicode |
| 235 | :param value: The value. |
| 236 | :type value: unicode |
| 237 | ''' |
| 238 | |
| 239 | raise NotImplementedError('This storage does not support metadata.') |
| 240 | |
| 241 | |
| 242 | def normalize_meta_value(value): |
no outgoing calls