mirror of
https://github.com/FlipsideCrypto/web3.py.git
synced 2026-02-06 10:56:47 +00:00
12 lines
200 B
Python
12 lines
200 B
Python
import os
|
|
|
|
|
|
if 'WEB3_ASYNC_GEVENT' in os.environ:
|
|
from .requests_http import (
|
|
make_post_request,
|
|
)
|
|
else:
|
|
from .gevent_http import ( # noqa: F401
|
|
make_post_request,
|
|
)
|