Return JSON response from Flask view

前端 未结 15 2572
时光取名叫无心
时光取名叫无心 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条回答
  •  情歌与酒
    2020-11-21 06:10

    if its a dict, flask can return it directly (Version 1.0.2)

    def summary():
        d = make_summary()
        return d, 200
    

提交回复
热议问题