Marthee commited on
Commit
d59d9cc
·
verified ·
1 Parent(s): 9e6686c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -19,7 +19,7 @@ def process():
19
  # Extracting values
20
  filePath = data.get('filePath')
21
  groupName = data.get('groupName')
22
-
23
  pdftext = pdftotext.texts_from_pdf(filePath,groupName)
24
  return jsonify(pdftext)
25
 
 
19
  # Extracting values
20
  filePath = data.get('filePath')
21
  groupName = data.get('groupName')
22
+ print(filePath,groupName)
23
  pdftext = pdftotext.texts_from_pdf(filePath,groupName)
24
  return jsonify(pdftext)
25