Skip to content

Instantly share code, notes, and snippets.

@HeenaR17
Created November 29, 2020 23:43
Show Gist options
  • Save HeenaR17/5af263558c28837361b482e3ee58eedb to your computer and use it in GitHub Desktop.
Save HeenaR17/5af263558c28837361b482e3ee58eedb to your computer and use it in GitHub Desktop.
app = Flask(__name__)
# render the home.html file
@app.route("/")
def home():
return render_template("home.html")
@app.route("/get")
def get_bot_response():
userText = request.args.get('msg')
return getReply(userText)
if __name__ == "__main__":
app.run(debug=True)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment