Python基于twisted实现简单的web服务器
程序员文章站
2023-10-21 19:41:24
本文实例讲述了python基于twisted实现简单的web服务器,分享给大家供大家参考。具体方法如下:
1. 新建htm文件夹,在这个文件夹中放入显示的网页文件
2....
本文实例讲述了python基于twisted实现简单的web服务器,分享给大家供大家参考。具体方法如下:
1. 新建htm文件夹,在这个文件夹中放入显示的网页文件
2. 在htm文件夹的同级目录下,建立web.py,web.py的内容为:
from twisted.web.resource import resource from twisted.web import server from twisted.web import static from twisted.internet import reactor port = 1234 ######################################################################## class restructed(resource): """""" #---------------------------------------------------------------------- def __init__(self, filename, *a): """constructor""" self.rst = open(filename).read() def render(self, request): return self.rst resource = static.file('htm/') resource.processors = {'.html':restructed} resource.indexnames = ['index.html'] reactor.listentcp(port, server.site(resource)) reactor.run()
3. 安装上twisted 下载地址为:http://twistedmatrix.com/trac/
安装上zope模块:http://old.zope.org/products/zopeinterface/3.3.0/zope.interface-3.3.0.tar.gz/swreleasefile_view
5.在命令行中(windows系统)运行:python web.py
6.在浏览器中输入:127.0.0.1:1234,看到效果如下图所示:
希望本文所述对大家的python程序设计有所帮助
上一篇: 使用Properties集合操作存储数据
下一篇: SSM项目(GitHub上找的)