MCPcopy
hub / github.com/scrapy/scrapy / css

Method css

scrapy/http/response/text.py:165–166  ·  view source on GitHub ↗
(self, query: str)

Source from the content-addressed store, hash-verified

163 return cast("SelectorList", self.selector.xpath(query, **kwargs))
164
165 def css(self, query: str) -> SelectorList:
166 return cast("SelectorList", self.selector.css(query))
167
168 def follow(
169 self,

Calls

no outgoing calls