zmbfeng commited on
Commit
5a99cc1
·
1 Parent(s): 6a7c05f

first commit just title

Browse files
Files changed (2) hide show
  1. app.py +8 -0
  2. requirements.txt +7 -0
app.py ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+ big_text = """
3
+ <div style='text-align: center;'>
4
+ <h1 style='font-size: 30x;'>Locked PDF Ingestion</h1>
5
+ </div>
6
+ """
7
+ # Display the styled text
8
+ st.markdown(big_text, unsafe_allow_html=True)
requirements.txt ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ PyPDF2<3.0.0
2
+ poppler-utils
3
+ opencv-python
4
+ tesseract-ocr
5
+ pytesseract
6
+ pdf2image
7
+ Pillow