Cerberus
Cerberus copied to clipboard
在Windows 10下运行subdomain的时候会抛出NotImplementedError异常
经测试在Windows 10下运行会抛出NotImplementedError
异常,在subdomain.py
头部加入以下代码即可解决:
import sys
if sys.platform == 'win32':
asyncio.set_event_loop_policy(asyncio.WindowsSelectorEventLoopPolicy())