slyapustin commited on
Commit
de2a087
1 Parent(s): 2da924c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -3,7 +3,7 @@ from pdfminer.high_level import extract_text
3
 
4
 
5
  def process(file):
6
- print(vars(file))
7
  text = extract_text(file.name)
8
  return text
9
 
 
3
 
4
 
5
  def process(file):
6
+ print(file)
7
  text = extract_text(file.name)
8
  return text
9