mirror of
https://github.com/FlipsideCrypto/web3.py.git
synced 2026-02-06 10:56:47 +00:00
20 lines
324 B
Python
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,
|
|
)
|