Skip to content

Instantly share code, notes, and snippets.

View JellyTitan's full-sized avatar

Ryan Neff JellyTitan

  • Fluke
  • Everett, WA
View GitHub Profile
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'