open_zip_dict_reader
- open_zip_dict_reader(path: str | Path, inner_path: str, delimiter: str = '\t', **kwargs: Any) Generator[DictReader[str], None, None][source]
Read an inner CSV file from a zip archive.
- Parameters:
path – The path to the zip archive
inner_path – The path inside the zip archive to the CSV
delimiter – The separator in the CSV. Defaults to tab.
kwargs – Additional kwargs to pass to
csv.DictReader.
- Returns:
A dictionary reader over the file