read_tarfile_csv
- read_tarfile_csv(path: str | Path, inner_path: str, sep: str = '\t', **kwargs: Any) pandas.DataFrame[source]
Read an inner CSV file from a tar archive.
- Parameters:
path – The path to the tar archive
inner_path – The path inside the tar archive to the dataframe
sep – The separator in the dataframe. Overrides Pandas default to use a tab.
kwargs – Additional kwargs to pass to
pandas.read_csv().
- Returns:
A dataframe