|
import urllib.request |
|
import streamlit as st |
|
import os |
|
from datasets import load_from_disk |
|
import requests |
|
with urllib.request.urlopen('https://huggingface.co/datasets/Seetha/Visualization') as response: |
|
data = response.read() |
|
|
|
with open('./level2.json','r+') as fi: |
|
data = fi.read() |
|
st.write('before change', data) |
|
fi.seek(0) |
|
fi.write('Hello world!') |
|
fi.truncate() |
|
st.write(os.path.abspath("./level2.json")) |
|
|
|
with open('./level2.json','w') as dat: |
|
dat.write('hello hello') |
|
|
|
|
|
bin_file = open('./level2.json', 'rb') |
|
|
|
|
|
response = requests.post('https://huggingface.co/datasets/Seetha/Visualization', files={'file': bin_file}) |
|
|
|
|
|
bin_file.close() |
|
|