15 lines
396 B
Python
15 lines
396 B
Python
"""
|
|
The Extension Manager
|
|
|
|
See documentation in docs/topics/extensions.rst
|
|
"""
|
|
from scrapy.middleware import MiddlewareManager
|
|
from scrapy.utils.conf import build_component_list
|
|
|
|
class ExtensionManager(MiddlewareManager):
|
|
|
|
component_name = 'extension'
|
|
|
|
@classmethod
|
|
def _get_mwlist_from_settings(cls, settings):
|
|
return build_component_list(settings.getwithbase('EXTENSIONS'))
|