Comment on Scrape: A simple, higher level interface for Go web scrapingparentComments−ericchiangOP11y rows := scrape.FindAll(table, scrape.ByTag(atom.Tr)) cols := []*html.Node{} for _, row := range rows { // Find returns the first result col, ok := scrape.Find(row, scrape.ByTag(atom.Td)) if ok { cols = append(cols, col) } }−chrissnell11yThanks!
Comments
Thanks!