码迷,mamicode.com
首页 > 其他好文 > 详细

WSGI Server

时间:2020-01-12 15:02:52      阅读:71      评论:0      收藏:0      [点我收藏+]

标签:访问   return   make   print   ica   html   start   port   http   

WSGI Server

server.py

from wsgiref.simple_server import make_server
from app import application

httpd = make_server('0.0.0.0', 8080, application)
print('start http server 8080...')

httpd.serve_forever()

app.py

def application(environ, start_response):
    start_response('200 OK', [('Content-Type', 'text/html')])
    print(environ['PATH_INFO'])
    body = '<h1>Hello, %s!</h1>' % (environ['PATH_INFO'][1:] or 'web')
    return [body.encode('utf-8')]

好了,打开浏览器,输入127.0.0.1:8080/helloworld/

注意,server.py运行时可能会卡住,可以反复运行一次,浏览器就能访问到了

任何复杂的web服务,本质还是源于此

WSGI Server

标签:访问   return   make   print   ica   html   start   port   http   

原文地址:https://www.cnblogs.com/xufengfan/p/12182563.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!