当前位置: 首页>>代码示例>>Python>>正文


Python Response.from_file方法代码示例

本文整理汇总了Python中webob.Response.from_file方法的典型用法代码示例。如果您正苦于以下问题:Python Response.from_file方法的具体用法?Python Response.from_file怎么用?Python Response.from_file使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在webob.Response的用法示例。


在下文中一共展示了Response.from_file方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: result

# 需要导入模块: from webob import Response [as 别名]
# 或者: from webob.Response import from_file [as 别名]
 def result(self):
     response_time = self.response_time
     method = self.request[:4].strip()
     if method in http_methods:
         stream = BytesIO(self.request)
         req = Request.from_file(stream)
         params={}
         try:
             params = req.params.mixed()
         except:
             pass
         vars =[req.method, req.path, params, req.referer ]
         if len(self.response):
             stream = BytesIO(self.response)
             resp = Response.from_file(stream)
             if resp.content_length and response_time > 20:
                 self.save_file(req, resp)
             return "{0:.2f}".format(response_time),  "\t".join([str(e) for e in vars])
开发者ID:gh0stisic,项目名称:justniffer,代码行数:20,代码来源:test.py

示例2: test_from_file_w_leading_space_in_header

# 需要导入模块: from webob import Response [as 别名]
# 或者: from webob.Response import from_file [as 别名]
def test_from_file_w_leading_space_in_header():
    # Make sure the removal of code dealing with leading spaces is safe
    res1 = Response()
    file_w_space = StringIO('200 OK\n\tContent-Type: text/html; charset=UTF-8')
    res2 = Response.from_file(file_w_space)
    eq_(res1.headers, res2.headers)
开发者ID:GdZ,项目名称:scriptfile,代码行数:8,代码来源:test_response.py

示例3: equal_resp

# 需要导入模块: from webob import Response [as 别名]
# 或者: from webob.Response import from_file [as 别名]
def equal_resp(res):
    input_ = StringIO(str(res))
    res2 = Response.from_file(input_)
    eq_(res.body, res2.body)
    eq_(res.headers, res2.headers)
开发者ID:GdZ,项目名称:scriptfile,代码行数:7,代码来源:test_response.py


注:本文中的webob.Response.from_file方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。