• Python -- Web -- WSGI



    WSGI:Web Server Gateway Interface

      只要求Web开发者实现一个函数,就可以响应HTTP请求。

    # hello.py
    
    def application(environ, start_response):
        start_response('200 OK', [('Content-Type', 'text/html')])
        return [b'<h1>Hello, web!</h1>']
    # server.py
    from wsgiref.simple_server import make_server
    
    from hello import application
    
    # 创建一个服务器,IP地址为空,端口是8000,处理函数是application:
    httpd = make_server('', 8000, application)
    print('Serving HTTP on port 8000...')
    # 开始监听HTTP请求: httpd.serve_forever()

    运行server.py,浏览器中输入IP:8000即可访问

    KEEP LEARNING!
  • 相关阅读:
    最短路小变形
    最短路
    bfs + 路径输出
    优先队列
    dijkstra
    重载运算符-operator
    最短路
    二分图匹配
    依赖型的关系建立
    string 类
  • 原文地址:https://www.cnblogs.com/roronoa-sqd/p/4911693.html
Copyright © 2020-2023  润新知