- force explicit '/' namespace connect with readiness checks - add guarded emits with disconnect reason diagnostics - add configurable socket transports (e.g. websocket-only) - introduce AsyncBot based on socketio.AsyncClient - export AsyncBot and document async quick-start/troubleshooting - bump package version for release
6 lines
166 B
Python
6 lines
166 B
Python
from .bot import Bot
|
|
from .async_bot import AsyncBot
|
|
from .exceptions import BotAPIError
|
|
from .rank import Rank
|
|
|
|
__all__ = ["Bot", "AsyncBot", "BotAPIError", "Rank"]
|