python网页服务器 基于python实现简单网页服务器代码实例
冷冰若水 人气:0想了解基于python实现简单网页服务器代码实例的相关内容吗,冷冰若水在本文为您仔细讲解python网页服务器的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:python,网页,服务器,下面大家一起来学习吧。
代码:
hello.py
#!/usr/bin/python # coding: utf-8 # hello.py def application(environ, start_response): start_response('200 OK', [('Content-Type', 'text/html')]) return '<h1>Hello, %s!</h1>' % (environ['PATH_INFO'][1:] or 'web')
server.py
#!/usr/bin/python # coding: utf-8 # server.py from wsgiref.simple_server import make_server from hello import application # create server, ip is empty, port is 8000, handle function is application httpd = make_server('', 8000, application) print "Serving HTTP on port 8000..." # start listen http request httpd.serve_forever()
使用了模块wsgiref。它实现了wsgi接口,我们只需要定一个wsgi处理函数来处理得到的请求就可以了。
用python来实现这些看似很复杂的实例程序,非常简单,这都得益于python强大的库。
加载全部内容