document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. @app.route(\'/final\',methods=[\'POST\',\'GET\'])
  2. def message():
  3.     if request.method == \'POST\':
  4.         app.logger.debug(" entered message function"+ request.form[\'query\'])
  5.         q = request.form[\'query\']
  6.     return render_template(\'final.html\',query=q,result="Core_Table Output")
');