Skip to content

Commit

Permalink
asyncio based client
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelgrinberg committed Dec 8, 2018
1 parent a11e803 commit 5c84bbb
Show file tree
Hide file tree
Showing 7 changed files with 522 additions and 14 deletions.
7 changes: 6 additions & 1 deletion engineio/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,18 @@
from .server import Server
if sys.version_info >= (3, 5): # pragma: no cover
from .asyncio_server import AsyncServer
from .asyncio_client import AsyncClient
from .async_drivers.tornado import get_tornado_handler
from .async_drivers.asgi import ASGIApp
else: # pragma: no cover
AsyncServer = None
AsyncClient = None
get_tornado_handler = None
ASGIApp = None

__version__ = '3.0.0'

__all__ = ['__version__', 'Server', 'WSGIApp', 'Middleware', 'Client']
if AsyncServer is not None: # pragma: no cover
__all__ += ['AsyncServer', 'ASGIApp', 'get_tornado_handler']
__all__ += ['AsyncServer', 'ASGIApp', 'get_tornado_handler',
'AsyncClient'],
Loading

0 comments on commit 5c84bbb

Please sign in to comment.