You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be helpful if there may be a command-line interface added for parsel, as existing tools (e.g. W3's html-xml-tools and pup in Golang) are not handy enough.
Expected usage example:
$ curl -s https://scrapy.org/ | parsel --css "div#scrapy-logo + p::text"
An open source and collaborative framework for extracting the data you need from websites.
$ curl -s https://scrapy.org/ | parsel --all --output-json --css "div#scrapy-logo ~ * ::text"
["An open source and collaborative framework for extracting the data you need from websites.", "In a fast, simple, yet extensible way.", "Maintained by", "Scrapinghub", "and", "many other contributors"]
The text was updated successfully, but these errors were encountered:
It would be helpful if there may be a command-line interface added for
parsel
, as existing tools (e.g. W3'shtml-xml-tools
andpup
in Golang) are not handy enough.Expected usage example:
The text was updated successfully, but these errors were encountered: