Spaces:
Runtime error
Runtime error
Update app.py
Browse files
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 |
+
|