Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
kbourne
/
basic_streamlit_app
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
Keith Bourne
commited on
Feb 14, 2024
Commit
cda3a79
·
1 Parent(s):
056b0b2
Add application file
Browse files
Files changed (1)
hide
show
app.py
+7
-0
app.py
ADDED
Viewed
@@ -0,0 +1,7 @@
1
+
2
+
import streamlit as st
3
+
import pandas as pd
4
+
5
+
st.title("Basic Streamlit App")
6
+
name = st.text_input("Enter your name", '')
7
+
st.write(f"Salutations {name}!")