Sambhavnoobcoder's picture
just testing with code , commented out the output in gradio
214cc79
raw
history blame
256 Bytes
import gradio as gr
import pdfminer
from pdfminer.high_level import extract_text
def read_pdf(file):
text = extract_text(file.name)
return text
iface = gr.Interface(
read_pdf,
gr.inputs.File(),
# gr.outputs.Textbox()
)
iface.launch()