MCPcopy
hub / github.com/scrapy/scrapy / _process_parallel

Method _process_parallel

scrapy/pipelines/__init__.py:115–118  ·  view source on GitHub ↗
(self, methodname: str)

Source from the content-addressed store, hash-verified

113 return [None for _ in methods]
114
115 async def _process_parallel(self, methodname: str) -> list[None]:
116 if is_asyncio_available():
117 return await self._process_parallel_asyncio(methodname)
118 return await self._process_parallel_dfd(methodname)
119
120 def open_spider(self, spider: Spider) -> Deferred[list[None]]:
121 warnings.warn(

Callers 4

open_spiderMethod · 0.95
open_spider_asyncMethod · 0.95
close_spiderMethod · 0.95
close_spider_asyncMethod · 0.95

Calls 3

_process_parallel_dfdMethod · 0.95
is_asyncio_availableFunction · 0.90

Tested by

no test coverage detected