open_zip_writer
- open_zip_writer(path: str | Path, inner_path: str, delimiter: str = '\t', **kwargs: Any) Generator[Writer, None, None][source]
Open a writer for 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.writer().
- Returns:
A writer over the file