Spaces:
Sleeping
Sleeping
| 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) | |