Hi,
I need to unzip some files that are ingested but when I unzip twice the same zipped file, the unzip command does not execute :
As suggesgted in the documentation I did :
import urllib
urllib.request.urlretrieve("https://resources.lendingclub.com/LoanStats3a.csv.zip", "/tmp/LoanStats3a.csv.zip")
%sh
unzip /tmp/LoanStats3a.csv.zip
but when it apply again unzip, command never execute and seems to be blocked in a no out loop.
Thanks for you help.