I'm implementing reusable python module which makes use of gevent for async http requests. If gevent is not available then we fall back to sync requests. Now I ended up with:
_use_gevent = False
try:
import gevent
# gevent 1.0bN renamed coros to lock
try:
from gevent.lock import Semaphore
except ImportError:
from gevent.coros import Semaphore
# Verify gevent has patched os. If not we just don't use gevent.
import os
if 'gevent' in os.fork.__module__:
_use_gevent = True
except ImportError:
pass
Is this correct way to define if gevent is available and its patches actually applied?