May I know what I need to modify or add to my import script for me to compress a csv file to .tar?
My script
export_csv(
my_csv=my_csv,
sheet_id=gsheet_name(worksheet_name)
)
shutil.move(my_csv, '/home/admin/processedCSV')
# If its possible my plan is after moving the CSV file to another folder that time the tar extraction will execute.
print ('DONE')
Let me know if you need more details. TYIA