Skip to content

Instantly share code, notes, and snippets.

@LetticiaNicoli
Last active August 22, 2019 00:29
Show Gist options
  • Save LetticiaNicoli/f9c0b52cdc86df5f6cd61c74e1c282ac to your computer and use it in GitHub Desktop.
Save LetticiaNicoli/f9c0b52cdc86df5f6cd61c74e1c282ac to your computer and use it in GitHub Desktop.
Flask First Steps
from flask import Flask, request, make_response, jsonify
app = Flask(__name__)
@app.route('/')
def index():
return 'Hello World!'
def results():
return {'fullfillmentText': 'This is a response from webhook'}
@app.route('/webhook', methods=['GET','POST'])
def webhook():
return make_response(jsonify(results()))
if __name__ == '__main__':
app.run(debug=True, host='0.0.0.0',port=5000)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment