Spaces:
Sleeping
Sleeping
| import streamlit as st | |
| import requests | |
| st.title("Streamlit + Flask on Hugging Face") | |
| # Call Flask API | |
| try: | |
| res = requests.get("http://localhost:8000/api") | |
| st.write(res.json()) | |
| except Exception as e: | |
| st.error(f"Flask API call failed: {e}") |