flask实现api
Posted 安迪9468
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了flask实现api相关的知识,希望对你有一定的参考价值。
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的主要内容,如果未能解决你的问题,请参考以下文章
flask restful-api实现及基于flask-httpauth实现基础权限管控
flask restful-api实现及基于flask-httpauth实现基础权限管控
flask restful-api实现及基于flask-httpauth实现基础权限管控