(self, path: str | PathLike[str])
| 139 | return {"last_modified": last_modified, "checksum": checksum} |
| 140 | |
| 141 | def _get_filesystem_path(self, path: str | PathLike[str]) -> Path: |
| 142 | path_comps = _to_string(path).split("/") |
| 143 | return Path(self.basedir, *path_comps) |
| 144 | |
| 145 | def _mkdir( |
| 146 | self, dirname: Path, domain: MediaPipeline.SpiderInfo | None = None |