Python http.client.parse_headers() Examples
The following are 12
code examples of http.client.parse_headers().
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example.
You may also want to check out all available functions/classes of the module
http.client
, or try the search function
.
Example #1
Source File: pywsgi.py From satori with Apache License 2.0 | 5 votes |
def headers_factory(fp, *args): try: ret = client.parse_headers(fp, _class=OldMessage) except client.LineTooLong: ret = OldMessage() ret.status = 'Line too long' return ret
Example #2
Source File: test_httplib.py From Fluid-Designer with GNU General Public License v3.0 | 5 votes |
def test_all(self): # Documented objects defined in the module should be in __all__ expected = {"responses"} # White-list documented dict() object # HTTPMessage, parse_headers(), and the HTTP status code constants are # intentionally omitted for simplicity blacklist = {"HTTPMessage", "parse_headers"} for name in dir(client): if name in blacklist: continue module_object = getattr(client, name) if getattr(module_object, "__module__", None) == "http.client": expected.add(name) self.assertCountEqual(client.__all__, expected)
Example #3
Source File: test_httplib.py From Fluid-Designer with GNU General Public License v3.0 | 5 votes |
def get_headers_and_fp(self): f = io.BytesIO(self.sock.data) f.readline() # read the request line message = client.parse_headers(f) return message, f
Example #4
Source File: test_httplib.py From ironpython3 with Apache License 2.0 | 5 votes |
def test_all(self): # Documented objects defined in the module should be in __all__ expected = {"responses"} # White-list documented dict() object # HTTPMessage, parse_headers(), and the HTTP status code constants are # intentionally omitted for simplicity blacklist = {"HTTPMessage", "parse_headers"} for name in dir(client): if name in blacklist: continue module_object = getattr(client, name) if getattr(module_object, "__module__", None) == "http.client": expected.add(name) self.assertCountEqual(client.__all__, expected)
Example #5
Source File: test_httplib.py From ironpython3 with Apache License 2.0 | 5 votes |
def get_headers_and_fp(self): f = io.BytesIO(self.sock.data) f.readline() # read the request line message = client.parse_headers(f) return message, f
Example #6
Source File: logclient.py From aliyun-log-python-sdk with MIT License | 5 votes |
def _apply_cn_keys_patch(): """ apply this patch due to an issue in http.client.parse_headers when there're multi-bytes in headers. it will truncate some headers. https://github.com/aliyun/aliyun-log-python-sdk/issues/79 """ import sys if sys.version_info[:2] == (3, 5): import http.client as hc old_parse = hc.parse_headers def parse_header(*args, **kwargs): fp = args[0] old_readline = fp.readline def new_readline(*args, **kwargs): ret = old_readline(*args, **kwargs) if ret.lower().startswith(b'x-log-query-info'): return b'x-log-query-info: \r\n' return ret fp.readline = new_readline ret = old_parse(*args, **kwargs) return ret hc.parse_headers = parse_header
Example #7
Source File: test_httplib.py From Project-New-Reign---Nemesis-Main with GNU General Public License v3.0 | 5 votes |
def test_all(self): # Documented objects defined in the module should be in __all__ expected = {"responses"} # White-list documented dict() object # HTTPMessage, parse_headers(), and the HTTP status code constants are # intentionally omitted for simplicity blacklist = {"HTTPMessage", "parse_headers"} for name in dir(client): if name.startswith("_") or name in blacklist: continue module_object = getattr(client, name) if getattr(module_object, "__module__", None) == "http.client": expected.add(name) self.assertCountEqual(client.__all__, expected)
Example #8
Source File: test_httplib.py From Project-New-Reign---Nemesis-Main with GNU General Public License v3.0 | 5 votes |
def get_headers_and_fp(self): f = io.BytesIO(self.sock.data) f.readline() # read the request line message = client.parse_headers(f) return message, f
Example #9
Source File: pywsgi.py From PokemonGo-DesktopMap with MIT License | 5 votes |
def headers_factory(fp, *args): try: ret = client.parse_headers(fp, _class=OldMessage) except client.LineTooLong: ret = OldMessage() ret.status = 'Line too long' return ret
Example #10
Source File: pywsgi.py From PokemonGo-DesktopMap with MIT License | 5 votes |
def headers_factory(fp, *args): try: ret = client.parse_headers(fp, _class=OldMessage) except client.LineTooLong: ret = OldMessage() ret.status = 'Line too long' return ret
Example #11
Source File: test_httplib.py From android_universal with MIT License | 5 votes |
def test_all(self): # Documented objects defined in the module should be in __all__ expected = {"responses"} # White-list documented dict() object # HTTPMessage, parse_headers(), and the HTTP status code constants are # intentionally omitted for simplicity blacklist = {"HTTPMessage", "parse_headers"} for name in dir(client): if name.startswith("_") or name in blacklist: continue module_object = getattr(client, name) if getattr(module_object, "__module__", None) == "http.client": expected.add(name) self.assertCountEqual(client.__all__, expected)
Example #12
Source File: test_httplib.py From android_universal with MIT License | 5 votes |
def get_headers_and_fp(self): f = io.BytesIO(self.sock.data) f.readline() # read the request line message = client.parse_headers(f) return message, f