dammy commited on
Commit
f05dba6
·
1 Parent(s): 4c7a0b4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +15 -4
app.py CHANGED
@@ -1,7 +1,18 @@
1
  import gradio as gr
 
2
 
3
- def greet(name):
4
- return "Hello " + name + "!!"
 
 
 
 
 
5
 
6
- iface = gr.Interface(fn=greet, inputs="text", outputs="text")
7
- iface.launch()
 
 
 
 
 
 
1
  import gradio as gr
2
+ import fitz # PyMuPDF
3
 
4
+ def extract_text(pdf_file):
5
+ doc = fitz.open(pdf_file.name)
6
+ text = ""
7
+ for page_num in range(doc.page_count):
8
+ page = doc[page_num]
9
+ text += page.get_text()
10
+ return text
11
 
12
+ iface = gr.Interface(
13
+ fn=extract_text,
14
+ inputs=gr.File(type="file", label="Upload PDF"),
15
+ outputs="text"
16
+ )
17
+
18
+ iface.launch()