Spaces:
Sleeping
Sleeping
louiecerv
commited on
Commit
·
5c88547
1
Parent(s):
d4c5df5
Save
Browse files
app.py
CHANGED
@@ -6,6 +6,12 @@ import PyPDF2
|
|
6 |
def main():
|
7 |
st.title("PDF Metadata Extractor")
|
8 |
|
|
|
|
|
|
|
|
|
|
|
|
|
9 |
# Folder uploader (using the st.file_uploader with multiple file selection)
|
10 |
uploaded_files = st.file_uploader("Upload PDF files:", type="pdf", accept_multiple_files=True)
|
11 |
|
|
|
6 |
def main():
|
7 |
st.title("PDF Metadata Extractor")
|
8 |
|
9 |
+
with st.expander("ℹ️ About"):
|
10 |
+
st.markdown("""This app extracts metadata from PDF files.
|
11 |
+
You can upload one or more PDF files and view their metadata.""")
|
12 |
+
st.markdown("""(c) 2024 [Louie F. Cervantes, M.Eng. (Informaation Enfineering)]
|
13 |
+
(https://huggingface.co/spaces/louiecerv)""")
|
14 |
+
|
15 |
# Folder uploader (using the st.file_uploader with multiple file selection)
|
16 |
uploaded_files = st.file_uploader("Upload PDF files:", type="pdf", accept_multiple_files=True)
|
17 |
|