Flask-小试牛刀 待续

Posted buyisan

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Flask-小试牛刀 待续相关的知识,希望对你有一定的参考价值。

  • Web本质
from werkzeug.wrappers import Request, Response
from werkzeug.serving import run_simple


@Request.application
def hello(request):
    return Response(‘Hello World!‘)

if __name__ == ‘__main__‘:

    run_simple(‘localhost‘, 4000, hello)
  •  快速入门
from flask import Flask

# 实例化Flask对象
app = Flask(__name__)

# 生成路由关系,并把关系保存到某个地方,app对象的 url_map字段中
@app.route(‘/xxxx‘)  # @decorator # 带参数装饰器.
def index():
    return "Index"

# def index():
#     return "Index"
# app.add_url_rule(‘/xxx‘, "n1", index)  # 添加路由关系的第二种方式

if __name__ == ‘__main__‘:
    # 启动程序,监听用户请求
    # 一旦请求到来,执行 app.__call__方法
    # 封装用户请求
    # 进行路由匹配
    app.run()

 

以上是关于Flask-小试牛刀 待续的主要内容,如果未能解决你的问题,请参考以下文章

flask+ngrok微信公众号搭建小试

前端试题-小试牛刀

python Flask - 数据库片段

Flask 作者写万字长文谈 asyncio(上)

Python Nameko框架使用

Flask 编写http接口api及接口自动化测试