Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
venkatl
/
pdf-util
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
pdf-util
/
app.py
venkatl
V0.2 Release
0f422ff
over 1 year ago
raw
Copy download link
history
blame
contribute
delete
Safe
213 Bytes
import
streamlit
as
st
st.title(
"NG+ PDF Extractor"
)
def
main
():
st.write(
"### Welcome to PDF Manager!"
)
st.write(
"This app helps you extract text from PDF files."
)
if
__name__ ==
"__main__"
:
main()