Pass errors parameter in async_request function

This commit is contained in:
Davte 2020-02-12 15:34:54 +01:00
parent f73f438d32
commit 61fe8e0591
2 changed files with 3 additions and 3 deletions

View File

@ -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.25" __version__ = "2.3.26"
__maintainer__ = "Davide Testa" __maintainer__ = "Davide Testa"
__contact__ = "t.me/davte" __contact__ = "t.me/davte"

View File

@ -161,7 +161,7 @@ async def async_post(url, mode='html', **kwargs):
) )
async def async_request(url, type='get', mode='json', encoding=None, async def async_request(url, type='get', mode='json', encoding=None, errors='strict',
**kwargs): **kwargs):
"""Make an async html request. """Make an async html request.
@ -185,7 +185,7 @@ async def async_request(url, type='get', mode='json', encoding=None,
else s.post(url, timeout=30, data=kwargs) else s.post(url, timeout=30, data=kwargs)
) as r: ) as r:
if mode in ['html', 'json', 'string']: if mode in ['html', 'json', 'string']:
result = await r.text(encoding=encoding) result = await r.text(encoding=encoding, errors=errors)
else: else:
result = await r.read() result = await r.read()
if encoding is not None: if encoding is not None: