David H
David H
Having the same issue here. I seemed to have fixed it by both making it use the integrated terminal (zsh) and setting the executor map like such: ``` "code-runner.executorMap": {...
So after some quick digging, here is what I could pull up: [This line](https://github.com/Lukasa/hyper/blob/development/hyper/contrib.py#L148) is where the cookies are extracted. The [extract_cookies_to_jar](https://github.com/kennethreitz/requests/blob/master/requests/cookies.py#L118-L132) function in requests is expecting 2 things: 1)...
Shouldn't you be using POST instead of GET to send a body? Also, note that `body=` is expecting a byte string, and you are passing it a dict.
[This](https://hyper.readthedocs.io/en/latest/quickstart.html?highlight=post#streams) part of the docs provides an example POST request: ```py from hyper import HTTPConnection c = HTTPConnection('http2bin.org') req = c.request('POST', '/post', body=b'hello') ``` As you can see, `body=` is...
Currently there is no way to do this in hyper. There are two ways I can see this being resolved: 1) Implement the functionality manually within Hyper 2) Re-use requests...
What are you doing at the minute? [This](https://github.com/Lukasa/hyper/blob/18b629b8487169870235fe13387e2ae03c178b9f/hyper/http20/connection.py#L391) line seems to be where the read timeout for the socket is set, its value is set [here](https://github.com/Lukasa/hyper/blob/18b629b8487169870235fe13387e2ae03c178b9f/hyper/http20/connection.py#L349-L354). If `timeout` is a...
The following _should_ work: clone the repo locally, and check out the `development` branch, then run `python setup.py install` in the directory, that should install the package to your python...
That would be up to the repo owner, I'm just a passer by :) I can't close the issue unfortunately, you should be able to do that on your end
I'm happy to give this a go, I will be unavailable tomorrow, but if no one else is available by Thursday I should be able to start :)
Working on this now