mirror of
https://github.com/kevin1024/vcrpy.git
synced 2025-12-09 09:13:23 +00:00
16 lines
565 B
Python
16 lines
565 B
Python
import asyncio
|
|
import aiohttp
|
|
|
|
|
|
@asyncio.coroutine
|
|
def aiohttp_request(loop, method, url, output='text', **kwargs):
|
|
with aiohttp.ClientSession(loop=loop) as session:
|
|
response = yield from session.request(method, url, **kwargs) # NOQA: E999
|
|
if output == 'text':
|
|
content = yield from response.text() # NOQA: E999
|
|
elif output == 'json':
|
|
content = yield from response.json() # NOQA: E999
|
|
elif output == 'raw':
|
|
content = yield from response.read() # NOQA: E999
|
|
return response, content
|