首页 > 代码库 > python简单网页服务器示例
python简单网页服务器示例
参考:http://www.liaoxuefeng.com/wiki/001374738125095c955c1e6d8bb493182103fac9270762a000/001386832689740b04430a98f614b6da89da2157ea3efe2000
代码:
hello.py
1 #!/usr/bin/python2 # coding: utf-83 4 # hello.py5 def application(environ, start_response):6 start_response(‘200 OK‘, [(‘Content-Type‘, ‘text/html‘)])7 return ‘<h1>Hello, %s!</h1>‘ % (environ[‘PATH_INFO‘][1:] or ‘web‘)
server.py
1 #!/usr/bin/python 2 # coding: utf-8 3 4 # server.py 5 from wsgiref.simple_server import make_server 6 from hello import application 7 8 # create server, ip is empty, port is 8000, handle function is application 9 httpd = make_server(‘‘, 8000, application)10 print "Serving HTTP on port 8000..."11 # start listen http request12 httpd.serve_forever()
使用了模块wsgiref。它实现了wsgi接口,我们只需要定一个wsgi处理函数来处理得到的请求就可以了。
用python来实现这些看似很复杂的实例程序,非常简单,这都得益于python强大的库。
python简单网页服务器示例
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。