Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
LegendaryToe
/
SqlParser
like
0
Runtime error
App
Files
Files
Community
6668c8f
SqlParser
/
app.py
LegendaryToe
added streamlit
526afa6
8 months ago
raw
Copy download link
history
blame
Safe
192 Bytes
import
streamlit
as
st
# Title of the application
st.title(
'Hello, World!'
)
# A button that when clicked will show a message
if
st.button(
'Say hello'
):
st.write(
'Hello from Streamlit!'
)