DEBSOURCES
Skip Quicknav
sources / python-scrapy / 2.13.3-1 / scrapy / utils / boto.py
12345678910
"""Boto/botocore helpers""" def is_botocore_available() -> bool: try: import botocore # noqa: F401 return True except ImportError: return False