OnHTML - Go Colly
package main | |
import ( | |
"fmt" | |
"github.com/gocolly/colly" | |
) | |
func main() { | |
c := colly.NewCollector() | |
c.OnRequest(func(r *colly.Request) { | |
fmt.Println("Visiting", r.URL) | |
}) | |
c.OnHTML("div.s-result-list.s-search-results.sg-row", func(e *colly.HTMLElement) { | |
// ... | |
}) | |
c.Visit("https://www.amazon.com/s?k=nintendo+switch&ref=nb_sb_noss_1") | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment