AreebaAliAsghar commited on
Commit
ae86b0a
·
verified ·
1 Parent(s): c913032

Upload 3 files

Browse files
Files changed (3) hide show
  1. README.md +10 -13
  2. app.py +4 -0
  3. requirements.txt +1 -0
README.md CHANGED
@@ -1,13 +1,10 @@
1
- ---
2
- title: Streamlit Task1
3
- emoji: 👀
4
- colorFrom: purple
5
- colorTo: yellow
6
- sdk: gradio
7
- sdk_version: 5.29.0
8
- app_file: app.py
9
- pinned: false
10
- license: mit
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