Get metadata value for collection/storage. See the vdir specification for the keys that *have* to be accepted. :param key: The metadata key. :type key: unicode
(self, key)
| 217 | yield |
| 218 | |
| 219 | def get_meta(self, key): |
| 220 | '''Get metadata value for collection/storage. |
| 221 | |
| 222 | See the vdir specification for the keys that *have* to be accepted. |
| 223 | |
| 224 | :param key: The metadata key. |
| 225 | :type key: unicode |
| 226 | ''' |
| 227 | |
| 228 | raise NotImplementedError('This storage does not support metadata.') |
| 229 | |
| 230 | def set_meta(self, key, value): |
| 231 | '''Get metadata value for collection/storage. |
no outgoing calls