Title
Scraping Framework for Golang
Go Home
Category
Description
Scraping framework for extracting the data you need from websites, used for a wide range of applications, like data mining, data processing or archiving
Address
Phone Number
+1 609-831-2326 (US) | Message me
Site Icon
Scraping Framework for Golang
Page Views
0
Share
Update Time
2022-05-27 15:39:32

"I love Scraping Framework for Golang"

www.go-colly.org VS www.gqak.com

2022-05-27 15:39:32

Colly Docs Articles Services Datasets GoDoc Colly DocsArticlesServicesDatasets GoDocGitHub Fast and Elegant Scraping Framework for Gophers GitHub Colly provides a clean interface to write any kind of crawler/scraper/spider With Colly you can easily extract structured data from websites, which can be used for a wide range of applications, like data mining, data processing or archiving. Features Clean API Fast (>1k request/sec on a single core) Manages request delays and maximum concurrency per domain Automatic cookie and session handling Sync/async/parallel scraping Distributed scraping Caching Automatic encoding of non-unicode responses Robots.txt support Google App Engine support 1 2 3 4 5 6 7 8 91011121314func main() {c := colly.NewCollector()// Find and visit all linksc.OnHTML("a", func(e *colly.HTMLElement) {e.Request.Visit(e.Attr("href"))})c.OnRequest(func(r *colly.Request) {fmt.Println("Visiting", r.URL)})c.Visit("http://go-colly.org/")} Batteries included Colly comes with all the tools you need for scraping. Examples Business ready Free for commercial use. License Open Source Development of Colly is community driven and public. Project Contact Us Documentation Services GitHub © 2018 Colly Team Page SourceSite map