MCPcopy
hub / github.com/scrapy/scrapy / start

Method start

scrapy/core/engine.py:164–174  ·  view source on GitHub ↗
(
        self, _start_request_processing: bool = True
    )

Source from the content-addressed store, hash-verified

162 return scheduler_cls
163
164 def start(
165 self, _start_request_processing: bool = True
166 ) -> Deferred[None]: # pragma: no cover
167 warnings.warn(
168 "ExecutionEngine.start() is deprecated, use start_async() instead",
169 ScrapyDeprecationWarning,
170 stacklevel=2,
171 )
172 return deferred_from_coro(
173 self.start_async(_start_request_processing=_start_request_processing)
174 )
175
176 async def start_async(self, *, _start_request_processing: bool = True) -> None:
177 """Start the execution engine.

Callers 3

process_startMethod · 0.45
_start_slot_gcMethod · 0.45

Calls 2

start_asyncMethod · 0.95
deferred_from_coroFunction · 0.90

Tested by

no test coverage detected