5 ms·
I have used it when using scraping some data from web pages using scrapy framework. It's reliable way to extract something from web pages compared to regex.
by never_inline 1y ago
I have used it when using scraping some data from web pages using scrapy framework. It's reliable way to extract something from web pages compared to regex.
- mdaniel 1y agodon't overlook the ability to mix and match them, because each "axis" is good at its own things response.xpath("//div[string-contains(@data-foo, "foo")").css(".some-class").re(r"[a-z][a-zA-Z]+") The .css() flavor gets complied down into .xpath() but there is no contest about their expressivity: https://github.com/scrapy/parsel/blob/v1.9.1/parsel/csstranslator.py#L143 https://github.com/scrapy/parsel/blob/v1.9.1/parsel/csstrans...