Keith Bourne commited on
Commit
cda3a79
·
1 Parent(s): 056b0b2

Add application file

Browse files
Files changed (1) hide show
  1. app.py +7 -0
app.py ADDED
@@ -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}!")