xiomarablanco commited on
Commit
e3f7f19
1 Parent(s): f497c64

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -2
app.py CHANGED
@@ -283,6 +283,8 @@ def answersTodict(zip_path):
283
  studentAnswersDict.append({"respuesta":"", "hashed_id":student_name, "TableIndex":indx})
284
  print("Error buscando ficheros")
285
 
 
 
286
  #saving the final dictionary
287
  save_json(create_file_path('ApiStudentsDict.json', doctype= 1),studentAnswersDict)
288
  return studentAnswersDict
@@ -307,5 +309,5 @@ iface = gr.Interface(fn=Main
307
 
308
  )
309
 
310
- iface.launch(share = False,enable_queue=True, show_error =True, server_port= 7861)
311
- #iface.launch(share = False,enable_queue=True, show_error =True)
 
283
  studentAnswersDict.append({"respuesta":"", "hashed_id":student_name, "TableIndex":indx})
284
  print("Error buscando ficheros")
285
 
286
+ print("DICT" + json.dumps(studentAnswersDict))
287
+
288
  #saving the final dictionary
289
  save_json(create_file_path('ApiStudentsDict.json', doctype= 1),studentAnswersDict)
290
  return studentAnswersDict
 
309
 
310
  )
311
 
312
+ #iface.launch(share = False,enable_queue=True, show_error =True, server_port= 7861)
313
+ iface.launch(share = False,enable_queue=True, show_error =True)