iter_zipped_files
- iter_zipped_files(path: str | Path | ZipFile, *, representation: Literal['binary'] = 'text', progress: bool = True, tqdm_kwargs: Mapping[str, Any] | None = None, keep: Callable[[ZipInfo], bool] | None = None, open_kwargs: Mapping[str, Any] | None = None, encoding: str | None = None, newline: str | None = None) Iterable[BinaryIO][source]
- iter_zipped_files(path: str | Path | ZipFile, *, representation: Literal['text'] = 'text', progress: bool = True, tqdm_kwargs: Mapping[str, Any] | None = None, keep: Callable[[ZipInfo], bool] | None = None, open_kwargs: Mapping[str, Any] | None = None, encoding: str | None = None, newline: str | None = None) Iterable[TextIO]
Iterate over opened files in a zip file in read mode.