Fetch a single item. :param href: href to fetch :returns: (item, etag) :raises: :exc:`vdirsyncer.exceptions.PreconditionFailed` if item can't be found.
(self, href)
| 124 | raise NotImplementedError() |
| 125 | |
| 126 | def get(self, href): |
| 127 | '''Fetch a single item. |
| 128 | |
| 129 | :param href: href to fetch |
| 130 | :returns: (item, etag) |
| 131 | :raises: :exc:`vdirsyncer.exceptions.PreconditionFailed` if item can't |
| 132 | be found. |
| 133 | ''' |
| 134 | raise NotImplementedError() |
| 135 | |
| 136 | def get_multi(self, hrefs): |
| 137 | '''Fetch multiple items. Duplicate hrefs must be ignored. |
no outgoing calls
no test coverage detected