Skip to content

Instantly share code, notes, and snippets.

@mottet-dev
Created June 10, 2019 16:21
Embed
What would you like to do?
ForEach - 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) {
e.ForEach("div.a-section.a-spacing-medium", func(_ int, 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