mirror of
https://github.com/kevin1024/vcrpy.git
synced 2025-12-09 01:03:24 +00:00
Fix aiohttp_request to properly perform aiohttp requests
This commit is contained in:
@@ -3,11 +3,11 @@ import aiohttp
|
|||||||
|
|
||||||
async def aiohttp_request(loop, method, url, output='text', **kwargs): # NOQA: E999
|
async def aiohttp_request(loop, method, url, output='text', **kwargs): # NOQA: E999
|
||||||
async with aiohttp.ClientSession(loop=loop) as session: # NOQA: E999
|
async with aiohttp.ClientSession(loop=loop) as session: # NOQA: E999
|
||||||
response = await session.request(method, url, **kwargs) # NOQA: E999
|
async with session.request(method, url, **kwargs) as response: # NOQA: E999
|
||||||
if output == 'text':
|
if output == 'text':
|
||||||
content = await response.text() # NOQA: E999
|
content = await response.text() # NOQA: E999
|
||||||
elif output == 'json':
|
elif output == 'json':
|
||||||
content = await response.json() # NOQA: E999
|
content = await response.json() # NOQA: E999
|
||||||
elif output == 'raw':
|
elif output == 'raw':
|
||||||
content = await response.read() # NOQA: E999
|
content = await response.read() # NOQA: E999
|
||||||
return response, content
|
return response, content
|
||||||
|
|||||||
Reference in New Issue
Block a user