FLASK写简单接口
1.FLASK介绍
flask是一个python的轻量级web框架,可以用来开发web项目和接口服务。
2.FLASK目录结构
project/
__init__.py
models/
__init__.py
base.py
users.py
posts.py
...
routes/
__init__.py
home.py
account.py
dashboard.py
...
templates/
base.html
post.html
...
services/
__init__.py
google.py
mail.py
...
在项目根目录下有models、 routes、templates、service 子目录,分别#未完待续