mirror of
https://github.com/kevin1024/vcrpy.git
synced 2025-12-10 09:35:34 +00:00
14 lines
551 B
Python
14 lines
551 B
Python
import aiohttp
|
|
|
|
|
|
async def aiohttp_request(loop, method, url, output='text', **kwargs): # NOQA: E999
|
|
async with aiohttp.ClientSession(loop=loop) as session: # NOQA: E999
|
|
response = await session.request(method, url, **kwargs) # NOQA: E999
|
|
if output == 'text':
|
|
content = await response.text() # NOQA: E999
|
|
elif output == 'json':
|
|
content = await response.json() # NOQA: E999
|
|
elif output == 'raw':
|
|
content = await response.read() # NOQA: E999
|
|
return response, content
|