Spaces:
Runtime error
Runtime error
File size: 315 Bytes
c4aca92 54b504b d7d5626 54b504b d7d5626 c4aca92 54b504b c4aca92 54b504b d7d5626 |
1 2 3 4 5 6 7 8 9 10 11 12 |
import os
import requests
import streamlit as st
print('downloading...')
print(os.getcwd())
res = requests.get('https://www.dropbox.com/s/4j4z58wuv8o0mfz/models.zip')
print('downloaded...')
with open('tmp.zip', 'wb') as f:
f.write(res.content)
st.write('<a href="tmp.zip">tmp.zip</a>', unsafe_allow_html=True) |