You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Need to write to an intermediate filename with a non-csv extension.
Example code: pyexcel.save_as( array=rows, dest_file_name=filename.csv.prg, encoding="utf-8", dialect="excel" ) os.rename(progress_path, export_path)
Tried adding dest_file_type argument, but that looks to only work when I write to memory.
Is there a way to tell save_as this is a .csv file even though the extension is not .csv?
The text was updated successfully, but these errors were encountered:
Need to write to an intermediate filename with a non-csv extension.
Example code:
pyexcel.save_as( array=rows, dest_file_name=filename.csv.prg, encoding="utf-8", dialect="excel" ) os.rename(progress_path, export_path)
Tried adding
dest_file_type
argument, but that looks to only work when I write to memory.Is there a way to tell save_as this is a .csv file even though the extension is not .csv?
The text was updated successfully, but these errors were encountered: