MCPcopy
hub / github.com/scrapy/scrapy / parse

Method parse

scrapy/commands/bench.py:66–69  ·  view source on GitHub ↗
(self, response: Response)

Source from the content-addressed store, hash-verified

64 yield scrapy.Request(url, dont_filter=True)
65
66 def parse(self, response: Response) -> Any:
67 assert isinstance(response, TextResponse)
68 for link in self.link_extractor.extract_links(response):
69 yield scrapy.Request(link.url, callback=self.parse)

Callers

nothing calls this directly

Calls 1

extract_linksMethod · 0.45

Tested by

no test coverage detected