1
0
mirror of https://github.com/kevin1024/vcrpy.git synced 2025-12-10 09:35:34 +00:00

Maintain support to python 3.4 and aiohttp

This commit is contained in:
Luiz Menezes
2018-05-06 19:09:32 -03:00
parent 6ab508d67d
commit bd08e5119f

View File

@@ -1,13 +1,22 @@
import asyncio
import aiohttp import aiohttp
async def aiohttp_request(loop, method, url, output='text', **kwargs): # NOQA: E999 @asyncio.coroutine
async with aiohttp.ClientSession(loop=loop) as session: # NOQA: E999 def aiohttp_request(loop, method, url, output='text', **kwargs):
async with session.request(method, url, **kwargs) as response: # NOQA: E999 session = aiohttp.ClientSession(loop=loop)
if output == 'text': response_ctx = session.request(method, url, **kwargs) # NOQA: E999
content = await response.text() # NOQA: E999
elif output == 'json': response = yield from response_ctx.__aenter__() # NOQA: E999
content = await response.json() # NOQA: E999 if output == 'text':
elif output == 'raw': content = yield from response.text() # NOQA: E999
content = await response.read() # NOQA: E999 elif output == 'json':
return response, content content = yield from response.json() # NOQA: E999
elif output == 'raw':
content = yield from response.read() # NOQA: E999
response_ctx._resp.close()
yield from session.close()
return response, content