當前位置: 首頁>>代碼示例>>Python>>正文


Python httplib.HTTPMessage方法代碼示例

本文整理匯總了Python中httplib.HTTPMessage方法的典型用法代碼示例。如果您正苦於以下問題:Python httplib.HTTPMessage方法的具體用法?Python httplib.HTTPMessage怎麽用?Python httplib.HTTPMessage使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在httplib的用法示例。


在下文中一共展示了httplib.HTTPMessage方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: _make_response

# 需要導入模塊: import httplib [as 別名]
# 或者: from httplib import HTTPMessage [as 別名]
def _make_response(self, result, url):
        data = "\r\n".join(["%s: %s" % (k, v) for k, v in result.header_items])
        headers = httplib.HTTPMessage(StringIO(data))
        response = urllib.addinfourl(StringIO(result.data), headers, url)
        code, msg = result.status.split(None, 1)
        response.code, response.msg = int(code), msg
        return response 
開發者ID:joxeankoret,項目名稱:nightmare,代碼行數:9,代碼來源:browser.py

示例2: _make_response

# 需要導入模塊: import httplib [as 別名]
# 或者: from httplib import HTTPMessage [as 別名]
def _make_response(self, result, url):

        data = "\r\n".join(["%s: %s" % (k, v) for k, v in result.header_items])

        if PY2:
            headers = HTTPMessage(BytesIO(data))
        else:
            import email
            headers = email.message_from_string(data)

        response = addinfourl(BytesIO(result.data), headers, url)
        code, msg = result.status.split(None, 1)
        response.code, response.msg = int(code), msg
        return response 
開發者ID:Naayouu,項目名稱:Hatkey,代碼行數:16,代碼來源:browser.py

示例3: __init__

# 需要導入模塊: import httplib [as 別名]
# 或者: from httplib import HTTPMessage [as 別名]
def __init__(self, cacheLocation,url,setCacheHeader=True):
        self.cacheLocation = cacheLocation
        hash = md5.new(url).hexdigest()
        StringIO.StringIO.__init__(self, file(self.cacheLocation + "/" + hash+".body").read())
        self.url     = url
        self.code    = 200
        self.msg     = "OK"
        headerbuf = file(self.cacheLocation + "/" + hash+".headers").read()
        if setCacheHeader:
            headerbuf += "x-cache: %s/%s\r\n" % (self.cacheLocation,hash)
        self.headers = httplib.HTTPMessage(StringIO.StringIO(headerbuf)) 
開發者ID:ActiveState,項目名稱:code,代碼行數:13,代碼來源:recipe-491261.py

示例4: __init__

# 需要導入模塊: import httplib [as 別名]
# 或者: from httplib import HTTPMessage [as 別名]
def __init__(self, response_proto):
    """Constructor.

    Args:
      response_proto: The `URLFetchResponse` protocol buffer to wrap.
    """
    self.__pb = response_proto
    self.content = response_proto.content()
    self.status_code = response_proto.statuscode()
    self.content_was_truncated = response_proto.contentwastruncated()
    self.final_url = response_proto.finalurl() or None
    self.header_msg = httplib.HTTPMessage(
        StringIO.StringIO(''.join(['%s: %s\n' % (h.key(), h.value())
                          for h in response_proto.header_list()] + ['\n'])))
    self.headers = _CaselessDict(self.header_msg.items()) 
開發者ID:GoogleCloudPlatform,項目名稱:python-compat-runtime,代碼行數:17,代碼來源:urlfetch.py


注:本文中的httplib.HTTPMessage方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。