write_zipfile_csv

write_zipfile_csv(df, path, inner_path, sep='\\t', index=False, **kwargs)[source]

Write a dataframe to an inner CSV file to a zip archive.

Parameters:
  • df (pandas.DataFrame) – A dataframe

  • path (Union[str, Path]) – The path to the resulting zip archive

  • inner_path (str) – The path inside the zip archive to write the dataframe

  • sep – The separator in the dataframe. Overrides Pandas default to use a tab.

  • index (bool) – Should the index be output? Overrides the Pandas default to be false.

  • kwargs – Additional kwargs to pass to get_df_io() and transitively to pandas.DataFrame.to_csv().

Return type:

None