Asyncio RuntimeError: Loop Event ditutup

if sys.platform == 'win32':
                # Set the policy to prevent "Event loop is closed" error on Windows - https://github.com/encode/httpx/issues/914
                asyncio.set_event_loop_policy(asyncio.WindowsSelectorEventLoopPolicy())
Faithful Falcon