hipom_data_mapping/data_preprocess/no_preprocess/copy_raw_data.py

10 lines
233 B
Python

import shutil
source_file = '../../data_import/exports/raw_data.csv'
destination_file = '../exports/preprocessed_data.csv'
shutil.copy(source_file, destination_file)
print(f"File copied from {source_file} to {destination_file}")