Use built-in decoding feature of aiohttp.ClientResponse
This commit is contained in:
parent
ab6849b5e0
commit
f73f438d32
@ -14,7 +14,7 @@ __author__ = "Davide Testa"
|
|||||||
__email__ = "davide@davte.it"
|
__email__ = "davide@davte.it"
|
||||||
__credits__ = ["Marco Origlia", "Nick Lee @Nickoala"]
|
__credits__ = ["Marco Origlia", "Nick Lee @Nickoala"]
|
||||||
__license__ = "GNU General Public License v3.0"
|
__license__ = "GNU General Public License v3.0"
|
||||||
__version__ = "2.3.24"
|
__version__ = "2.3.25"
|
||||||
__maintainer__ = "Davide Testa"
|
__maintainer__ = "Davide Testa"
|
||||||
__contact__ = "t.me/davte"
|
__contact__ = "t.me/davte"
|
||||||
|
|
||||||
|
@ -161,7 +161,7 @@ async def async_post(url, mode='html', **kwargs):
|
|||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
async def async_request(url, type='get', mode='json', encoding='utf-8',
|
async def async_request(url, type='get', mode='json', encoding=None,
|
||||||
**kwargs):
|
**kwargs):
|
||||||
"""Make an async html request.
|
"""Make an async html request.
|
||||||
|
|
||||||
@ -184,9 +184,12 @@ async def async_request(url, type='get', mode='json', encoding='utf-8',
|
|||||||
if type == 'get'
|
if type == 'get'
|
||||||
else s.post(url, timeout=30, data=kwargs)
|
else s.post(url, timeout=30, data=kwargs)
|
||||||
) as r:
|
) as r:
|
||||||
result = await r.read()
|
|
||||||
if mode in ['html', 'json', 'string']:
|
if mode in ['html', 'json', 'string']:
|
||||||
result = result.decode(encoding)
|
result = await r.text(encoding=encoding)
|
||||||
|
else:
|
||||||
|
result = await r.read()
|
||||||
|
if encoding is not None:
|
||||||
|
result = result.decode(encoding)
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
logging.error(
|
logging.error(
|
||||||
'Error making async request to {}:\n{}'.format(
|
'Error making async request to {}:\n{}'.format(
|
||||||
|
Loading…
x
Reference in New Issue
Block a user