Return JSON response from Flask view

前端 未结 15 2575
时光取名叫无心
时光取名叫无心 2020-11-21 05:11

I have a function that analyzes a CSV file with Pandas and produces a dict with summary information. I want to return the results as a response from a Flask view. How do I r

15条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-11-21 06:12

    I like this way:

        @app.route("/summary")
        def summary():
            responseBody = { "message": "bla bla bla", "summary": make_summary() }
            return make_response(jsonify(responseBody), 200)
    

提交回复
热议问题