File size: 213 Bytes
7ea044a
 
f60f447
7ea044a
 
f60f447
 
7ea044a
 
 
1
2
3
4
5
6
7
8
9
10
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()