scrapy/scrapy/utils/boto.py

11 lines
180 B
Python

"""Boto/botocore helpers"""
def is_botocore_available() -> bool:
try:
import botocore # noqa: F401
return True
except ImportError:
return False