You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
bazarr/libs/engineio/__init__.py

14 lines
481 B

from .client import Client
from .middleware import WSGIApp, Middleware
from .server import Server
from .async_server import AsyncServer
from .async_client import AsyncClient
from .async_drivers.asgi import ASGIApp
try:
from .async_drivers.tornado import get_tornado_handler
except ImportError: # pragma: no cover
get_tornado_handler = None
__all__ = ['Server', 'WSGIApp', 'Middleware', 'Client',
'AsyncServer', 'ASGIApp', 'get_tornado_handler', 'AsyncClient']