veretube_bot_lib/veretube_bot/__init__.py
Speng Reb 12d01f9d6d Fix socket namespace readiness and add AsyncBot API
- 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
2026-05-20 20:09:32 +02:00

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"]