Update app.py
Browse files
app.py
CHANGED
@@ -4,6 +4,6 @@ from pdf2image import convert_from_path
|
|
4 |
def process(file) :
|
5 |
images = convert_from_path(file)
|
6 |
return images
|
7 |
-
|
8 |
demo = gr.Interface(process,gr.File(),gr.Gallery())
|
9 |
demo.launch(debug=True)
|
|
|
4 |
def process(file) :
|
5 |
images = convert_from_path(file)
|
6 |
return images
|
7 |
+
|
8 |
demo = gr.Interface(process,gr.File(),gr.Gallery())
|
9 |
demo.launch(debug=True)
|