(self, uri: str)
| 534 | ftp_store.USE_ACTIVE_MODE = settings.getbool("FEED_STORAGE_FTP_ACTIVE") |
| 535 | |
| 536 | def _get_store(self, uri: str) -> FilesStoreProtocol: |
| 537 | # to support win32 paths like: C:\\some\dir |
| 538 | scheme = "file" if Path(uri).is_absolute() else urlparse(uri).scheme |
| 539 | store_cls = self.STORE_SCHEMES[scheme] |
| 540 | return store_cls(uri) |
| 541 | |
| 542 | def _onsuccess( |
| 543 | self, |