mirror of
https://github.com/kevin1024/vcrpy.git
synced 2025-12-10 17:45:35 +00:00
Fix aiohttp utils to pass encondig to response.json
This commit is contained in:
@@ -4,7 +4,7 @@ import aiohttp
|
|||||||
|
|
||||||
|
|
||||||
@asyncio.coroutine
|
@asyncio.coroutine
|
||||||
def aiohttp_request(loop, method, url, output='text', **kwargs):
|
def aiohttp_request(loop, method, url, output='text', encoding='utf-8', **kwargs):
|
||||||
session = aiohttp.ClientSession(loop=loop)
|
session = aiohttp.ClientSession(loop=loop)
|
||||||
response_ctx = session.request(method, url, **kwargs) # NOQA: E999
|
response_ctx = session.request(method, url, **kwargs) # NOQA: E999
|
||||||
|
|
||||||
@@ -12,7 +12,7 @@ def aiohttp_request(loop, method, url, output='text', **kwargs):
|
|||||||
if output == 'text':
|
if output == 'text':
|
||||||
content = yield from response.text() # NOQA: E999
|
content = yield from response.text() # NOQA: E999
|
||||||
elif output == 'json':
|
elif output == 'json':
|
||||||
content = yield from response.json() # NOQA: E999
|
content = yield from response.json(encoding=encoding) # NOQA: E999
|
||||||
elif output == 'raw':
|
elif output == 'raw':
|
||||||
content = yield from response.read() # NOQA: E999
|
content = yield from response.read() # NOQA: E999
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user