web3.py/web3/utils/async/__init__.py
Piper Merriam 9d2b1dd2de dirty
2017-01-09 23:25:48 -07:00

20 lines
324 B
Python

import os
if 'WEB3_ASYNC_GEVENT' in os.environ:
from .gevent_async import ( # noqa
Timeout,
sleep,
socket,
threading,
make_server,
)
else:
from .stdlib_async import ( # noqa
Timeout,
sleep,
socket,
threading,
make_server,
)