Hello @adf575076 ,
Welcome to the MS Q&A platform.
Please follow the below commands
Ex: downloading the file from the URL https://resources.lendingclub.com/LoanStats3a.csv.zip to my tmp location
import urllib
urllib.request.urlretrieve("https://resources.lendingclub.com/LoanStats3a.csv.zip", "/tmp/LoanStats3a.csv.zip")
unzip using the below commnad:
%sh
unzip /tmp/LoanStats3a.csv.zip
You can see the file using the below command:
%fs ls file:/databricks/driver/
Databricks document:
https://docs.databricks.com/data/data-sources/zip-files.html
------------------------------
If this answers your question, please consider accepting the answer by hitting the Accept answer button, as it helps the community.