Spaces:
Build error
Build error
Upload 3 files
Browse files- README.md +10 -13
- app.py +4 -0
- requirements.txt +1 -0
README.md
CHANGED
|
@@ -1,13 +1,10 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
---
|
| 12 |
-
|
| 13 |
-
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
|
|
|
| 1 |
+
# Streamlit Task 1
|
| 2 |
+
|
| 3 |
+
This is my first Streamlit app deployed on Hugging Face Spaces.
|
| 4 |
+
|
| 5 |
+
## Features
|
| 6 |
+
- Uses Streamlit
|
| 7 |
+
- Shows a title and message
|
| 8 |
+
|
| 9 |
+
## Live App
|
| 10 |
+
Click on the "App" tab above to launch the app.
|
|
|
|
|
|
|
|
|
app.py
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import streamlit as st
|
| 2 |
+
|
| 3 |
+
st.title("My First Streamlit App")
|
| 4 |
+
st.write("Hello, I am learning Streamlit step by step.")
|
requirements.txt
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
streamlit
|