Golang 爬虫框架 Goquery的使用

Goquery 是一个基于 Go 语言 net/html 包和 cascadia CSS 选择器库的爬虫框架,它提供了类似于 jQuery 的语法和功能。通过 go get 命令安装后,可以方便地选择和操作 HTML 元素。框架包括 Document 和 Selection 结构,以及 Matcher 接口。虽然不支持 jQuery 的一些状态操作函数,但提供了多种选择和过滤元素的方法,适用于 Go 语言的 HTML 解析和处理。
摘要由CSDN通过智能技术生成
介绍

goquery brings a syntax and a set of features similar to jQuery to the Go language. It is based on Go’s net/html package and the CSS Selector library cascadia. Since the net/html parser returns nodes, and not a full-featured DOM tree, jQuery’s stateful manipulation functions (like height(), css(), detach()) have been left off.

实现了类似jquery的功能,可以快速选择元素。

GitHub:https://github.com/PuerkitoBio/goquery

安装:go get github.com/PuerkitoBio/goquery

example1
package main

import (
  "fmt"
  "log"
  "net/http"
  "github.com/PuerkitoBio/goquery"
)

func ExampleScrape() {
   
  // Request the HTML page.
  res, err := http.Get("http://metalsucks.net")
  if err != nil {
   
    log.Fatal(err)
  }
  defer res.Body.Close()
  if res.StatusCode != 200 {
   
    log.Fatalf("status code error: %d %s", res.StatusCode, res.Status)
  }

  // Load the HTML document
  doc, err := goquery.NewDoc
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值