Created
November 9, 2021 02:09
-
-
Save ivanvoid/821d036fc7d5f0951ef133225eed431e to your computer and use it in GitHub Desktop.
seggan unzipper
This file contains 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
# Unpuck zip file | |
from zipfile import ZipFile | |
with ZipFile(data_fn, 'r') as zip_obj: | |
zip_obj.extractall() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment