源码网商城,靠谱的源码在线交易网站 我的订单 购物车 帮助

源码网商城

Python基于twisted实现简单的web服务器

  • 时间:2020-07-04 21:39 编辑: 来源: 阅读:
  • 扫一扫,手机访问
摘要:Python基于twisted实现简单的web服务器
本文实例讲述了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,看到效果如下图所示: [img]http://files.jb51.net/file_images/article/201409/2014929101716931.jpg?2014829101750[/img] 希望本文所述对大家的Python程序设计有所帮助
  • 全部评论(0)
联系客服
客服电话:
400-000-3129
微信版

扫一扫进微信版
返回顶部