hyper icon indicating copy to clipboard operation
hyper copied to clipboard

HTTP/2 for Python.

Results 100 hyper issues
Sort by recently updated
recently updated
newest added

I am using hyper v0.7.0 as a dependency from APNS2 lib (https://github.com/Pr0Ger/PyAPNs2/) for sending out push notifications to iOS devices. We have sporadic but reproducable issues when hyper hangs when...

Sample code ``` try: conn = HTTP11Connection('www.cloudflare.com:443', secure=True) req = conn.request('GET', '/') rep = conn.get_response() #

Using `hyper`, is there a way to resolve a hostname to a specific IP address? Like the way we can do with `cUrl`'s `--resolve` flag. This is useful when you...

When we used the hyper lib on a ARM board with Python 3.7.3, we found that our program could run MUCH MUCH faster by increasing the MAX_CHUNK from 1024 to...

eg: ` s = requests.Session()` ` s.mount('https://www.cloudflare.com/', HTTP20Adapter())` when url don't contain commas ` r = s.get('https://www.cloudflare.com')` This is work well, but ` r = s.get('https://www.cloudflare.com?data={a,b}')` Commas cause the following...

``` Python 2.7.10 (default, Oct 6 2017, 22:29:07) [GCC 4.2.1 Compatible Apple LLVM 9.0.0 (clang-900.0.31)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> import requests >>>...

``` import requests from hyper.contrib import HTTP20Adapter sess = requests.session() sess.mount('http://', HTTP20Adapter()) sess.mount('https://', HTTP20Adapter()) sess.proxies.update({ 'http': 'http://login:pass@ip:port', 'https': 'https://login:pass@ip:port' }) sess.get(url) ``` Actually, the problem is described in the title....

ONVIF defines the Uplink service based on HTTP/2 and connection reversal, in order to have cameras connect to cloud services while having NAT between themselves and the remote service (For...

(Related to #314, but impacts the request side of things) Because of the way HTTPHeaderMap splits header values on commas into multiple ways, servers may have trouble understanding headers with...

#### Issue Ping function from Hyper does not check the real state of the connection. In my case, I make a connection to the server and then I switch off...