You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Anytime I try to use AsyncStealthSession I get this warning which I can't seem to remove:
RuntimeWarning:
Proactor event loop does not implement add_reader family of methods required.
Registering an additional selector thread for add_reader support.
To avoid this warning use:
asyncio.set_event_loop_policy(WindowsSelectorEventLoopPolicy())
self.loop = _get_selector(loop if loop is not None else asyncio.get_running_loop())
The text was updated successfully, but these errors were encountered:
Anytime I try to use AsyncStealthSession I get this warning which I can't seem to remove:
RuntimeWarning:
Proactor event loop does not implement add_reader family of methods required.
Registering an additional selector thread for add_reader support.
To avoid this warning use:
asyncio.set_event_loop_policy(WindowsSelectorEventLoopPolicy())
self.loop = _get_selector(loop if loop is not None else asyncio.get_running_loop())
The text was updated successfully, but these errors were encountered: