This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
import shutil | |
import zipfile | |
# Loops through nested zip folders and extracts all files to output folder. | |
# Intended to simplify the translation ETL process. | |
# Update the zip_file_path with the name of the source .zip file to be unpacked. | |
zip_file_path = './test_data_set.zip' | |
destination_folder_path = './test_output' |