溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Golang網絡爬蟲框架gocolly/colly怎么用

發(fā)布時間:2021-12-15 09:26:46 來源:億速云 閱讀:341 作者:小新 欄目:軟件技術

小編給大家分享一下Golang網絡爬蟲框架gocolly/colly怎么用,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

安裝

go get -u github.com/gocolly/colly/...

例子

import (    "fmt"    "github.com/gocolly/colly")func main() {    c := colly.NewCollector()    c.OnResponse(func(r *colly.Response) {        fmt.Println("IP:", string(r.Body))    })    //c.SetProxy("http://127.0.0.1:1080")    c.Visit("http://ip.cip.cc/")}

SetProxy函數可以用來配置HTTP代理。

colly的主體是Collector對象,管理網絡通信和負責在作業(yè)運行時執(zhí)行附加的回掉函數。使用colly需要先初始化Collector:

c := colly.NewCollector()

vgo

vgo是Go語言推出的第三方庫管理工具,在Go語言新版本中使用。

常用的命令行:

· go help mod 查看幫助。

· go mod init <項目模塊名稱>初始化模塊,會在項目根目錄下生成 go.mod 文件,是可以自己手動編輯的。

依賴包大多在Github上,安裝依賴可能會出現(xiàn)連接超時等問題,可以配置全局git代理:

git config --global http.proxy http://127.0.0.1:1080git config --global https.proxy https://127.0.0.1:1080#取消代理:git config --global --unset http.proxygit config --global --unset https.proxy

cmd走shadowsocks代理:

set http_proxy=127.0.0.1:1080set https_proxy=127.0.0.1:1080curl cip.ccIP    : 140.206.97.42地址    : 中國  上海數據二    : 上海市 | 聯(lián)通URL    : http://www.cip.cc/140.206.97.42

Linux使用export設置環(huán)境變量,代碼同上。

回掉函數的調用順序

1. OnRequest 在發(fā)起請求前被調用。

2. OnError 請求過程中如果發(fā)生錯誤被調用。

3. OnResponse 收到回復后被調用。

4. OnHTML 在OnResponse之后被調用,如果收到的內容是HTML 。

5. OnScraped 在OnHTML之后被調用。

官方提供的Basic示例代碼:

package mainimport (    "fmt"    "github.com/gocolly/colly")func main() {    // Instantiate default collector    c := colly.NewCollector(        // Visit only domains: hackerspaces.org, wiki.hackerspaces.org        colly.AllowedDomains("hackerspaces.org", "wiki.hackerspaces.org"),    )    // On every a element which has href attribute call callback    c.OnHTML("a[href]", func(e *colly.HTMLElement) {        link := e.Attr("href")        // Print link        fmt.Printf("Link found: %q -> %s\n", e.Text, link)        // Visit link found on page        // Only those links are visited which are in AllowedDomains         c.Visit(e.Request.AbsoluteURL(link))    })    // Before making a request print "Visiting ..."    c.OnRequest(func(r *colly.Request) {        fmt.Println("Visiting", r.URL.String())    })    // Start scraping on https://hackerspaces.org    c.Visit("https://hackerspaces.org/")}

該實例程序僅訪問hackerspaces.org域內的鏈接,OnHTML回掉函數的選擇器為a[href],選擇頁面內具有href屬性的a類型元素,找到鏈接后繼續(xù)抓取。 運行的部分結果如下:

Visiting https://hackerspaces.org/Link found: "navigation" -> #column-oneLink found: "search" -> #searchInputLink found: "" -> /File:Cbase07.jpgVisiting https://hackerspaces.org/File:Cbase07.jpgLink found: "navigation" -> #column-oneLink found: "search" -> #searchInputLink found: "File" -> #fileLink found: "File history" -> #filehistoryLink found: "File usage" -> #filelinksLink found: "" -> /images/e/ec/Cbase07.jpgVisiting https://hackerspaces.org/images/e/ec/Cbase07.jpgLink found: "800 × 600 pixels" -> /images/thumb/e/ec/Cbase07.jpg/800px-Cbase07.jpgVisiting https://hackerspaces.org/images/thumb/e/ec/Cbase07.jpg/800px-Cbase07.jpg

以上是“Golang網絡爬蟲框架gocolly/colly怎么用”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業(yè)資訊頻道!

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI