Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
rafatjah
/
Http-Get
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
Http-Get
/
app.py
rafatjah
Simple requests
a764639
about 1 year ago
raw
Copy download link
history
blame
contribute
delete
Safe
146 Bytes
import
streamlit
as
st
import
requests
url = st.text_input(
"Enter URL"
,
"https://ifconfig.me"
)
st.write(
"Response: "
+ requests.get(url).text)