码迷,mamicode.com
首页 > Windows程序 > 详细

flask实现api

时间:2018-03-12 17:01:25      阅读:264      评论:0      收藏:0      [点我收藏+]

标签:div   UI   learn   ==   tps   body   return   run   tor   

https://www.cnblogs.com/vovlie/p/4178077.html

 

from flask import Flask, jsonify

app = Flask(__name__)

tasks = [
    {
        ‘id‘: 1,
        ‘title‘: u‘Buy groceries‘,
        ‘description‘: u‘Milk, Cheese, Pizza, Fruit, Tylenol‘,
        ‘done‘: False
    },
    {
        ‘id‘: 2,
        ‘title‘: u‘Learn Python‘,
        ‘description‘: u‘Need to find a good Python tutorial on the web‘,
        ‘done‘: False
    }
]

@app.route(‘/todo/api/v1.0/tasks‘, methods=[‘GET‘])
def get_tasks():
    return jsonify({‘tasks‘: tasks})

if __name__ == ‘__main__‘:
    app.run(debug=True)

  

flask实现api

标签:div   UI   learn   ==   tps   body   return   run   tor   

原文地址:https://www.cnblogs.com/andy9468/p/8549548.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!