Spaces:
Runtime error
Runtime error
kikopubisher
commited on
Upload 2 files
Browse files- app.py +8 -0
- requirements.txt +1 -0
app.py
ADDED
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import streamlit as st
|
2 |
+
|
3 |
+
st.title('Hello, Hugging Face Spaces!')
|
4 |
+
st.write('This is a simple Streamlit app.')
|
5 |
+
|
6 |
+
# يمكنك إضافة عناصر تفاعلية أخرى مثل:
|
7 |
+
text_input = st.text_input("Enter some text:")
|
8 |
+
st.write('You entered:', text_input)
|
requirements.txt
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
streamlit
|