kikopubisher commited on
Commit
0945068
·
verified ·
1 Parent(s): 45fc96b

Upload 2 files

Browse files
Files changed (2) hide show
  1. app.py +8 -0
  2. 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