hyper
hyper copied to clipboard
HTTP/2 for Python.
# Problem Using hyper HTTP1 and HTTP2 on top of [mptcp](https://multipath-tcp.org/pmwiki.php/Users/AptRepository) using 2 interfaces on client and 2 on server end (Can share some steps to set it up if...
The current '=' separator enables to add key-value pairs as strings in a JSON object to the HTTP body. But there's no way to provide more complex JSON objects This...
This delays SSL context construction in the requests adapter to only construct the new context when it will actually be used to establish a new connection. This avoids getting duplicate...
``` Traceback (most recent call last): File "/home/pi/Public/DuerOS-Python-Client-moxigua/sdk/dueros_core.py", line 178, in run self.__run() File "/home/pi/Public/DuerOS-Python-Client-moxigua/sdk/dueros_core.py", line 205, in __run downchannel_response = conn.get_response(downchannel_id) File "/usr/local/lib/python3.4/dist-packages/hyper/http20/connection.py", line 312, in get_response return HTTP20Response(stream.getheaders(),...
Can you please make a new release? 0.7.0 is more than a year old and there are many new commits and bug fixes in development branch since 9/2016.
When running plaintext HTTP/2 upgrades on my Windows machine (Windows 7, Python 2.7.10, Hyper version 0.4.0) I hit a timeout and the following traceback: ``` C:\Users\Cory>hyper GET http://http2bin.org/get Traceback (most...
Let's start this discussion right now. I'd like to have `hyper` eventually be integrated into `urllib3`, giving all the happy HTTP/2.0 love to users of `urllib3` (and indirectly, users of...
In a non-secure HTTP/2 HEAD request, hyper try to receive an empty body. However, if I send a HEAD request to http://nghttp2.org/httpbin/get, it is successful. They also succeed when executed...
https://github.com/Lukasa/hyper/blob/13e2a909e14349d14ae2b86217062e1568242b9a/hyper/http20/stream.py#L330 End of the stream is not marked when the last chunk is of size equal to MAX_CHUNK (1024). Condition `len(data) < MAX_CHUNK` works fine in all cases when the...