modulepackage
0.0.0-20160903072319-12a01d622084
Repository: https://github.com/anisus/query.git
Documentation: pkg.go.dev
# README
query
A html scraper allowing queries using method chaining. Built upon the golang.org/x/net/html package.
# Functions
ByAttr returns a Selector which matches all nodes with the provided attribute equal to the provided value.
ByClass returns a Selector which matches all nodes with the provided class.
ById returns a Selector which matches all nodes with the provided id.
ByTag returns a Selector which matches all nodes of the provided tag type.
ByType returns a Selector which matches all nodes of the provided NodeType.