aa7bcef 99814b7 aa7bcef
1
2
3
4
5
6
7
8
9
10
import streamlit as st import requests st.title("Streamlit App") response = requests.get("http://localhost:3000/api/data") data = response.json() st.write(data)