Spaces:
Sleeping
Sleeping
LalitMahale
commited on
Commit
·
6bccb60
1
Parent(s):
1b82082
basic code added
Browse files
app.py
CHANGED
@@ -1,4 +1,10 @@
|
|
1 |
import streamlit as st
|
2 |
|
3 |
|
4 |
-
st.markdown("<h2 style = 'text align:center'>All in one Summarizer</h2>")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
import streamlit as st
|
2 |
|
3 |
|
4 |
+
st.markdown("<h2 style = 'text align:center'>All in one Summarizer</h2>")
|
5 |
+
|
6 |
+
file = st.file_uploader("upload files")
|
7 |
+
if file != None:
|
8 |
+
with open(file,'rb') as f:
|
9 |
+
data = f.read()
|
10 |
+
st.write(data)
|