File size: 269 Bytes
36bbacc c9d6da6 9650f42 ae897df 9650f42 |
1 2 3 4 5 6 7 8 9 |
import urllib.request
import streamlit as st
with urllib.request.urlopen('https://huggingface.co/datasets/Seetha/visual_files/raw/main/level2.json') as response:
data = response.read()
st.write(data)
with open('level2.json','w') as fi:
fi.write(str(data))
|