Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import streamlit as st
|
2 |
+
def main():
|
3 |
+
st.set_page_config(page_title="Bill App")
|
4 |
+
st.title("Bill Extractor")
|
5 |
+
|
6 |
+
files=st.file_uploader("Upload the files here..",type=["pdf"],accept_multiple_files=True)
|
7 |
+
submit=st.button("Extract")
|