2024-08-26 19:51:11 +09:00
|
|
|
import shutil
|
|
|
|
|
2024-10-29 22:55:22 +09:00
|
|
|
source_file = '../../data_import/exports/raw_data.csv'
|
2024-08-26 19:51:11 +09:00
|
|
|
|
2024-10-29 22:55:22 +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}")
|