Spaces:
Runtime error
Runtime error
File size: 293 Bytes
8b8735d 8ee8372 8b8735d 8ee8372 8b8735d 8ee8372 8b8735d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
import gradio as gr
import pdfminer
def read_pdf(file)
from pdfminer.high_level import extract_text
text = extract_text(file.name)
return text
iface = gr.Interface(
read_pdf,
gr.inputs.FileUpload(is_single=True, allow_pdf=True),
gr.outputs.Textbox()
)
iface.launch()
|