MCPcopy
hub / github.com/scrapy/scrapy / process_item_async

Method process_item_async

scrapy/pipelines/__init__.py:60–63  ·  view source on GitHub ↗
(self, item: Any)

Source from the content-addressed store, hash-verified

58 return deferred_from_coro(self.process_item_async(item))
59
60 async def process_item_async(self, item: Any) -> Any:
61 return await self._process_chain(
62 "process_item", item, add_spider=True, warn_deferred=True
63 )
64
65 def _get_dfd(
66 self,

Callers 3

process_itemMethod · 0.95
scraped_dataMethod · 0.45
start_itemproc_asyncMethod · 0.45

Calls 1

_process_chainMethod · 0.80

Tested by

no test coverage detected