Spaces:
Sleeping
Sleeping
Update streamlit_app.py
Browse files- streamlit_app.py +1 -1
streamlit_app.py
CHANGED
@@ -3,7 +3,7 @@ import requests
|
|
3 |
|
4 |
st.title("Streamlit App")
|
5 |
|
6 |
-
response = requests.get("http://localhost:
|
7 |
data = response.json()
|
8 |
|
9 |
st.write(data)
|
|
|
3 |
|
4 |
st.title("Streamlit App")
|
5 |
|
6 |
+
response = requests.get("http://localhost:3000/api/data")
|
7 |
data = response.json()
|
8 |
|
9 |
st.write(data)
|