文件名称:httpnext:用于 Python 的下一代 HTTP
文件大小:49KB
文件格式:ZIP
更新时间:2024-07-09 03:36:11
Python
警告:这是一项正在进行的工作。 它尚未准备好用于一般用途。 conn = httpnext.HTTPConnection("www.python.org") conn.request("GET", "/index.html") r1 = conn.getresponse() print(r1.status, r1.reason) while not r1.closed: print(r1.read(200)) - SPDY、HTTP2 特征 早期错误支持 ( Expect: 100-continue ) 中流错误支持 分块 I/O,事件支持 零长度块保活 asyncio.IncompleReadError.expected 是总预期大小,而不是剩余大小 不建立连接的HTTP解析 增量 HTTP 解析 原始套接字控制 背压测试 性能回归测试 定义的可扩展性策略,mix
【文件预览】:
httpnext-master
----setup.py(1KB)
----t.py(1KB)
----.gitignore(544B)
----requirements.txt(13B)
----Makefile(404B)
----.travis.yml(295B)
----LICENSE(11KB)
----README.md(2KB)
----docs()
--------Makefile(5KB)
--------index.rst(234B)
--------conf.py(8KB)
----test()
--------support()
--------test_httplib.py(45KB)
--------test.py(1KB)
----httpnext()
--------__init__.py(5KB)
--------transports()
----tox.ini(88B)
----Changes.rst(75B)