(fn: PathOrFile, df: pd.DataFrame)
| 58 | |
| 59 | @staticmethod |
| 60 | def save_file(fn: PathOrFile, df: pd.DataFrame): |
| 61 | df = process_df(df) |
| 62 | # NOTE - can pass expected schema and columns for output df here |
| 63 | table: pa.Table = pa.Table.from_pandas(df, preserve_index=False) |
| 64 | write_table(table, fn) |
| 65 | |
| 66 | |
| 67 | class CSVFormat(DFFormatter): |
nothing calls this directly
no test coverage detected