osbm commited on
Commit
6aad3d1
·
1 Parent(s): e609b49

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -0
app.py CHANGED
@@ -10,3 +10,11 @@ with st.spinner("Downloading Dataset"):
10
 
11
  st.write(data_path)
12
 
 
 
 
 
 
 
 
 
 
10
 
11
  st.write(data_path)
12
 
13
+ import zipfile
14
+ with zipfile.ZipFile(data_path, 'r') as zip_ref:
15
+ zip_ref.extractall(".")
16
+
17
+
18
+ st.write(os.listdir(os.getcwd()))
19
+ st.write(os.getcwd())
20
+