hipom_data_mapping/data_preprocess/no_preprocess/copy_raw_data.py

10 lines
233 B
Python
Raw Normal View History

2024-08-26 19:51:11 +09:00
import shutil
source_file = '../../data_import/exports/raw_data.csv'
2024-08-26 19:51:11 +09:00
destination_file = '../exports/preprocessed_data.csv'
2024-08-26 19:51:11 +09:00
shutil.copy(source_file, destination_file)
print(f"File copied from {source_file} to {destination_file}")