流程
项目创建
安装核心插件
pip install flask
pip install flask-restful
pip install flask-sqlalchemy
pip install pymysql
pip install flask-jwt-extended
直接启动
if __name__ == '__main__':
app.run(debug=True)
作业
- 完成TaskService的功能,基本的增删改查
- 拔高:增加的时候关联TestCase
把你的作业提交到github或者码云,把链接回帖。
相关链接
https://flask.palletsprojects.com/en/1.1.x/
https://flask-sqlalchemy.palletsprojects.com/en/2.x/
https://flask-jwt-extended.readthedocs.io/en/latest/
https://flask-restful.readthedocs.io/en/latest/quickstart.html#