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


Python Request.headers方法代码示例

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


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

示例1: test_request_headers_dict

# 需要导入模块: from urllib2 import Request [as 别名]
# 或者: from urllib2.Request import headers [as 别名]
def test_request_headers_dict():
    """
    The Request.headers dictionary is not a documented interface.  It should
    stay that way, because the complete set of headers are only accessible
    through the .get_header(), .has_header(), .header_items() interface.
    However, .headers pre-dates those methods, and so real code will be using
    the dictionary.

    The introduction in 2.4 of those methods was a mistake for the same reason:
    code that previously saw all (urllib2 user)-provided headers in .headers
    now sees only a subset (and the function interface is ugly and incomplete).
    A better change would have been to replace .headers dict with a dict
    subclass (or UserDict.DictMixin instance?)  that preserved the .headers
    interface and also provided access to the "unredirected" headers.  It's
    probably too late to fix that, though.


    Check .capitalize() case normalization:

    >>> url = "http://example.com"
    >>> Request(url, headers={"Spam-eggs": "blah"}).headers["Spam-eggs"]
    'blah'
    >>> Request(url, headers={"spam-EggS": "blah"}).headers["Spam-eggs"]
    'blah'

    Currently, Request(url, "Spam-eggs").headers["Spam-Eggs"] raises KeyError,
    but that could be changed in future.

    """ 
开发者ID:IronLanguages,项目名称:ironpython2,代码行数:31,代码来源:test_urllib2.py

示例2: test_request_headers_methods

# 需要导入模块: from urllib2 import Request [as 别名]
# 或者: from urllib2.Request import headers [as 别名]
def test_request_headers_methods():
    """
    Note the case normalization of header names here, to .capitalize()-case.
    This should be preserved for backwards-compatibility.  (In the HTTP case,
    normalization to .title()-case is done by urllib2 before sending headers to
    httplib).

    >>> url = "http://example.com"
    >>> r = Request(url, headers={"Spam-eggs": "blah"})
    >>> r.has_header("Spam-eggs")
    True
    >>> r.header_items()
    [('Spam-eggs', 'blah')]
    >>> r.add_header("Foo-Bar", "baz")
    >>> items = r.header_items()
    >>> items.sort()
    >>> items
    [('Foo-bar', 'baz'), ('Spam-eggs', 'blah')]

    Note that e.g. r.has_header("spam-EggS") is currently False, and
    r.get_header("spam-EggS") returns None, but that could be changed in
    future.

    >>> r.has_header("Not-there")
    False
    >>> print r.get_header("Not-there")
    None
    >>> r.get_header("Not-there", "default")
    'default'

    """ 
开发者ID:IronLanguages,项目名称:ironpython2,代码行数:33,代码来源:test_urllib2.py

示例3: __init__

# 需要导入模块: from urllib2 import Request [as 别名]
# 或者: from urllib2.Request import headers [as 别名]
def __init__(self, code, msg, headers, data, url=None):
        StringIO.StringIO.__init__(self, data)
        self.code, self.msg, self.headers, self.url = code, msg, headers, url 
开发者ID:IronLanguages,项目名称:ironpython2,代码行数:5,代码来源:test_urllib2.py

示例4: set_tunnel

# 需要导入模块: from urllib2 import Request [as 别名]
# 或者: from urllib2.Request import headers [as 别名]
def set_tunnel(self, host, port=None, headers=None):
        self._tunnel_host = host
        self._tunnel_port = port
        if headers:
            self._tunnel_headers = headers
        else:
            self._tunnel_headers.clear() 
开发者ID:IronLanguages,项目名称:ironpython2,代码行数:9,代码来源:test_urllib2.py

示例5: request

# 需要导入模块: from urllib2 import Request [as 别名]
# 或者: from urllib2.Request import headers [as 别名]
def request(self, method, url, body=None, headers=None):
        self.method = method
        self.selector = url
        if headers is not None:
            self.req_headers += headers.items()
        self.req_headers.sort()
        if body:
            self.data = body
        if self.raise_on_endheaders:
            import socket
            raise socket.error() 
开发者ID:IronLanguages,项目名称:ironpython2,代码行数:13,代码来源:test_urllib2.py

示例6: http_open

# 需要导入模块: from urllib2 import Request [as 别名]
# 或者: from urllib2.Request import headers [as 别名]
def http_open(self, req):
        import mimetools, copy
        from StringIO import StringIO
        self.requests.append(copy.deepcopy(req))
        if self._count == 0:
            self._count = self._count + 1
            name = httplib.responses[self.code]
            msg = mimetools.Message(StringIO(self.headers))
            return self.parent.error(
                "http", req, MockFile(), self.code, name, msg)
        else:
            self.req = req
            msg = mimetools.Message(StringIO("\r\n\r\n"))
            return MockResponse(200, "OK", msg, "", req.get_full_url()) 
开发者ID:IronLanguages,项目名称:ironpython2,代码行数:16,代码来源:test_urllib2.py

示例7: setUp

# 需要导入模块: from urllib2 import Request [as 别名]
# 或者: from urllib2.Request import headers [as 别名]
def setUp(self):
        self.get = urllib2.Request("http://www.python.org/~jeremy/")
        self.post = urllib2.Request("http://www.python.org/~jeremy/",
                                    "data",
                                    headers={"X-Test": "test"}) 
开发者ID:IronLanguages,项目名称:ironpython2,代码行数:7,代码来源:test_urllib2.py

示例8: http_open

# 需要导入模块: from urllib2 import Request [as 别名]
# 或者: from urllib2.Request import headers [as 别名]
def http_open(self, req):
        import mimetools, httplib, copy
        from StringIO import StringIO
        self.requests.append(copy.deepcopy(req))
        if self._count == 0:
            self._count = self._count + 1
            name = httplib.responses[self.code]
            msg = mimetools.Message(StringIO(self.headers))
            return self.parent.error(
                "http", req, MockFile(), self.code, name, msg)
        else:
            self.req = req
            msg = mimetools.Message(StringIO("\r\n\r\n"))
            return MockResponse(200, "OK", msg, "", req.get_full_url()) 
开发者ID:dxwu,项目名称:BinderFilter,代码行数:16,代码来源:test_urllib2.py


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