Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
722 views
in Technique[技术] by (71.8m points)

try catch - How to use an async with expression in except block using Python?

I am using the Python package aiohttp and want to access the async with expression (the with-item response) within an except block:

try:
    async with session.get(url, params={'user_id': user_id}) as response:
        return await response.json()
except (ClientConnectionError, asyncio.TimeoutError) as e:
    logger.error(f'{response.url} raised {e}')
    raise

As I understand, the context of response is closed when a ClientConnectionError or asyncio.TimeoutError is raised since it is outside of the async width block. As a consequence, calling response.url raises an UnboundLocalError.

How can I manually use __aenter__ and __aexit__ (see PEP 492) to rewrite the above snippet and keep the response context in the except block?

question from:https://stackoverflow.com/questions/65887535/how-to-use-an-async-with-expression-in-except-block-using-python

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...