Skip to content

soup

2,191 1 22 MIT
v1.2.5 (16 Jan 2022) Apr 29 2017 58.1 thousand (month)

soup is a Go library for parsing and querying HTML documents.

It provides a simple and intuitive interface for extracting information from HTML pages. It's inspired by popular Python web scraping library BeautifulSoup and shares similar use API implementing functions like Find and FindAll.

soup can also use go's built-in http client to download HTML content.

Note that unlike beautifulsoup, soup does not support CSS selectors or XPath.

Example Use


package main

import (
  "fmt"
  "log"

  "github.com/anaskhan96/soup"
)

func main() {

  url := "https://www.bing.com/search?q=weather+Toronto"

  # soup has basic HTTP client though it's not recommended for scraping:
  resp, err := soup.Get(url)
  if err != nil {
    log.Fatal(err)
  }

  # create soup object from HTML
  doc := soup.HTMLParse(resp)

  # html elements can be found using Find or FindStrict methods:
  # in this case find <div> elements where "class" attribute matches some values:
  grid := doc.FindStrict("div", "class", "b_antiTopBleed b_antiSideBleed b_antiBottomBleed")
  # note: to find all elements FindAll() method can be used the same way

  # elements can be further searched for descendents:
  heading := grid.Find("div", "class", "wtr_titleCtrn").Find("div").Text()
  conditions := grid.Find("div", "class", "wtr_condition")
  primaryCondition := conditions.Find("div")
  secondaryCondition := primaryCondition.FindNextElementSibling()
  temp := primaryCondition.Find("div", "class", "wtr_condiTemp").Find("div").Text()
  others := primaryCondition.Find("div", "class", "wtr_condiAttribs").FindAll("div")
  caption := secondaryCondition.Find("div").Text()

  fmt.Println("City Name : " + heading)
  fmt.Println("Temperature : " + temp + "˚C")
  for _, i := range others {
    fmt.Println(i.Text())
  }
  fmt.Println(caption)
}

Alternatives / Similar


717 Start (7 years ago) Feb 20 2018 compare
14,273 v1.10.2 (5 days ago) Aug 29 2016 compare
760 v1.3.4 (a month ago) Feb 07 2019 compare
699 v1.3.3 (2 months ago) Jun 08 2019 compare

Other Languages

1,101 1.4.1 (8 months ago) Feb 09 2011 compare
3,698 7.2.1 (3 months ago) Jul 03 2013 compare
4,529 10.0.0 (a month ago) Aug 28 2011 compare
- 4.13.3 (13 days ago) Jul 26 2019 compare
2,737 5.3.0 (6 months ago) Dec 13 2022 compare
5,577 0.14.2 (4 months ago) Jul 30 2007 compare
28,873 1.0.0 (6 months ago) Oct 08 2011 compare
1,153 1.1 (4 years ago) Jul 30 2007 compare
293 1.2.0 (2 years ago) Apr 14 2012 compare
6,173 1.18.2 (29 days ago) Jul 25 2009 compare
2,048 6.0.11 (1 year, 2 months ago) Jun 15 2007 compare
2,312 2.0.1 (5 months ago) Dec 05 2008 compare
1,187 1.10.0 (a month ago) Jul 26 2019 compare
13,780 0.10.0 (6 years ago) Feb 25 2018 compare
221 1.3.6 (1 year, 7 months ago) Apr 20 2015 compare
1,498 1.0.4 (2 years ago) Nov 22 2014 compare
1,186 0.3.27 (2 months ago) Mar 01 2018 compare
1,638 2.9.0 (10 months ago) Jun 01 2013 compare
619 1.2.1 (2 years ago) Jun 09 2011 compare
3,985 v7.2.3 (22 days ago) Sep 26 2011 compare
683 0.4.12 (1 year, 3 months ago) Jun 03 2007 compare
202 1.3.0 (6 months ago) Jul 30 2007 compare
764 1.1 (4 years ago) Dec 28 2012 compare
2,103 v4.4.15 (a month ago) Oct 26 2013 compare
22 0.6.0 (1 year, 9 months ago) Jul 24 2014 compare
156 2.2.4 (3 years ago) Dec 22 2019 compare
Was this page helpful?