(self)
| 76 | return generate_href(ident) + self.fileext |
| 77 | |
| 78 | def list(self): |
| 79 | for fname in os.listdir(self.path): |
| 80 | fpath = os.path.join(self.path, fname) |
| 81 | if os.path.isfile(fpath) and fname.endswith(self.fileext): |
| 82 | yield fname, get_etag_from_file(fpath) |
| 83 | |
| 84 | def get(self, href): |
| 85 | fpath = self._get_filepath(href) |
nothing calls this directly
no test coverage detected