Spaces:
Sleeping
Sleeping
Pratik Dwivedi
commited on
Commit
·
46a56ca
1
Parent(s):
aaa312d
App update (#7)
Browse files
app.py
CHANGED
@@ -5,6 +5,7 @@ def main():
|
|
5 |
st.set_page_config(layout="wide")
|
6 |
st.title('Amazon Invoice Convertor')
|
7 |
st.write('This app converts your Amazon invoice pdfs to a csv file.')
|
|
|
8 |
convertor = InvoiceConvertor()
|
9 |
files = st.file_uploader('Upload your invoice pdfs', type=['pdf'], accept_multiple_files=True)
|
10 |
if files:
|
|
|
5 |
st.set_page_config(layout="wide")
|
6 |
st.title('Amazon Invoice Convertor')
|
7 |
st.write('This app converts your Amazon invoice pdfs to a csv file.')
|
8 |
+
st.write('Please make sure the name of your pdf files start with "invoice".')
|
9 |
convertor = InvoiceConvertor()
|
10 |
files = st.file_uploader('Upload your invoice pdfs', type=['pdf'], accept_multiple_files=True)
|
11 |
if files:
|