File tree 1 file changed +9
-3
lines changed
python-ecosys/aiohttp/aiohttp
1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -18,8 +18,14 @@ class ClientResponse:
18
18
def __init__ (self , reader ):
19
19
self .content = reader
20
20
21
+ def get_header (self , keyname , value = None ):
22
+ try :
23
+ return next ((v for k , v in self .headers .items () if k .lower () == keyname .lower ()))
24
+ except StopIteration :
25
+ return value
26
+
21
27
def _decode (self , data ):
22
- c_encoding = self .headers . get ("Content-Encoding" )
28
+ c_encoding = self .get_header ("Content-Encoding" )
23
29
if c_encoding in ("gzip" , "deflate" , "gzip,deflate" ):
24
30
try :
25
31
import deflate
@@ -39,10 +45,10 @@ async def read(self, sz=-1):
39
45
return self ._decode (await self .content .read (sz ))
40
46
41
47
async def text (self , encoding = "utf-8" ):
42
- return (await self .read (int (self .headers . get ("Content-Length" , - 1 )))).decode (encoding )
48
+ return (await self .read (int (self .get_header ("Content-Length" , - 1 )))).decode (encoding )
43
49
44
50
async def json (self ):
45
- return _json .loads (await self .read (int (self .headers . get ("Content-Length" , - 1 ))))
51
+ return _json .loads (await self .read (int (self .get_header ("Content-Length" , - 1 ))))
46
52
47
53
def __repr__ (self ):
48
54
return "<ClientResponse %d %s>" % (self .status , self .headers )
You can’t perform that action at this time.
0 commit comments