import-test / src /streamlit_app.py
Saipavan06's picture
Update src/streamlit_app.py
f4519ff verified
raw
history blame contribute delete
251 Bytes
import os
import requests
import streamlit as st
st.title("Hugging Face Import Test")
st.write("OS module loaded successfully ✅")
response = requests.get("https://api.github.com")
st.write("Requests working, Status Code:", response.status_code)