Spaces:
Runtime error
Runtime error
ghosthamlet
commited on
Commit
•
c4aca92
1
Parent(s):
d7d5626
Update app.py
Browse files
app.py
CHANGED
@@ -1,8 +1,11 @@
|
|
|
|
1 |
import requests
|
2 |
import streamlit as st
|
3 |
|
4 |
print('downloading...')
|
|
|
5 |
res = requests.get('https://www.dropbox.com/s/4j4z58wuv8o0mfz/models.zip')
|
|
|
6 |
with open('tmp.zip', 'wb') as f:
|
7 |
f.write(res.content)
|
8 |
|
|
|
1 |
+
import os
|
2 |
import requests
|
3 |
import streamlit as st
|
4 |
|
5 |
print('downloading...')
|
6 |
+
print(os.getcwd())
|
7 |
res = requests.get('https://www.dropbox.com/s/4j4z58wuv8o0mfz/models.zip')
|
8 |
+
print('downloaded...')
|
9 |
with open('tmp.zip', 'wb') as f:
|
10 |
f.write(res.content)
|
11 |
|