Last active
          December 19, 2023 10:16 
        
      - 
      
- 
        Save brizandrew/e5ff878f8e3c17386de037c201386dc1 to your computer and use it in GitHub Desktop. 
Revisions
- 
        brizandrew revised this gist Mar 1, 2018 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewingThis file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -33,7 +33,7 @@ def index(): @app.route('/api/print', methods=['POST']) def print_test(): """ Send a POST request to localhost:5000/api/print with a JSON body with a "p" key to print that message in the server console. """ payload = parse_request(request) @@ -44,7 +44,7 @@ def print_test(): @app.route('/api/sum', methods=['POST']) def sum(): """ Send a POST request to localhost:5000/api/sum with a JSON body with an "a" and "b" key to have the app add those numbers together and return a response string with their sum. """ print "Processing request..." 
- 
        brizandrew created this gist Mar 1, 2018 .There are no files selected for viewingThis file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,68 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- from flask import Flask, request from urllib import unquote_plus import json import re app = Flask(__name__) def parse_request(req): """ Parses application/json request body data into a Python dictionary """ payload = req.get_data() payload = unquote_plus(payload) payload = re.sub('payload=', '', payload) payload = json.loads(payload) return payload @app.route('/', methods=['GET']) def index(): """ Go to localhost:5000 to see a message """ return ('This is a website.', 200, None) @app.route('/api/print', methods=['POST']) def print_test(): """ Go to localhost:5000/api/print and pass a JSON body with a "p" key to print that message in the server console. """ payload = parse_request(request) print payload['p'] return ("", 200, None) @app.route('/api/sum', methods=['POST']) def sum(): """ Go to localhost:5000/api/sum and pass a JSON body with an "a" and "b" key to have the app add those numbers together and return a response string with their sum. """ print "Processing request..." payload = parse_request(request) print "Receieved following paylod:" print payload print "Adding sum..." summation = payload['a'] + payload['b'] print "Found sum: %s" % summation print "Creating response string..." resp = '%s + %s = %s' % (payload['a'], payload['b'], summation) print "Sending the following response:" print resp return (resp, 200, None) if __name__ == '__main__': app.run(debug=True, use_reloader=True)