Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

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

async await - How to close a asyncio(http) connection in Python 3.7+

How do you close a asyncio loop in Python 3.7+ ? (I'm new to asynchronous programming especially py 3.7+)

I know it's closed using this inthe previous versions.

loop= asyncio.get_event_loop()
loop.run_until_complete(main())
loop.close()

But now that we've got the new Python. I've searched several pages to see how the closure of a connection is established in Py 3.7+. but nothing satisfied me. Could anyone tell me how the closure of a loop is done in the new version?

asyncio.run(main)

**now how do we close this connection? or is it done by itself?**
asyncio.close() ?

Also, if we are not closing the loop...won't be get 'Runtime Error: Event loop is closed' error?

question from:https://stackoverflow.com/questions/65926242/how-to-close-a-asynciohttp-connection-in-python-3-7

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

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...