utils / app.py
not-lain's picture
Create app.py
4b0678e verified
raw
history blame
210 Bytes
import gradio as gr
from pdf2image import convert_from_path
def process(file) :
images = convert_from_path(file)
return images
!
demo = gr.Interface(process,gr.File(),gr.Gallery())
demo.launch(debug=True)