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 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…