-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
100 lines (76 loc) · 2.02 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
package main
import (
"fmt"
"os"
"github.com/PuerkitoBio/goquery"
)
func main() {
// res, err := http.Get("https://www.google.com/")
// if err != nil {
// log.Fatal(err)
// }
// defer res.Body.Close()
// input := res.Body
input, _ := os.Open("index.html")
// Primeira opção para pegar os token
// tokenizer := html.NewTokenizer(input)
// for {
// tokenType := tokenizer.Next()
// token := tokenizer.Token()
// if tokenType == html.ErrorToken {
// // chegou ao fim do arquivo
// if tokenizer.Err() == io.EOF {
// return
// }
// fmt.Println(tokenizer.Err())
// }
// // CommentToken pegar comentarios
// // if tokenType == html.CommentToken {
// // fmt.Println(token)
// // }
// // self close tag fechada em si mesmo SelfClosingTagToken exemplo </br>
// // if tokenType == html.SelfClosingTagToken {
// // fmt.Println(token)
// // }
// // imprimir todos os links da pagina
// if tokenType == html.StartTagToken {
// if token.Data == "a" {
// for _, att := range token.Attr {
// // fmt.Println(att.Key, att.Val)
// fmt.Println(att.Val)
// }
// tt := tokenizer.Next()
// if tt == html.TextToken {
// fmt.Println(tokenizer.Token())
// }
// }
// }
// }
// # Segunda opção
// node, _ := html.Parse(input)
// var acessa func(*html.Node)
// // func´~ao recursiva
// acessa = func(n *html.Node) {
// // fmt.Println(n.Data)
// // pegando os link
// if n.Type == html.ElementNode && n.Data == "a" {
// // fmt.Println(n) pega com os bit
// fmt.Print(n.FirstChild.Data + " -> ")
// for _, a := range n.Attr {
// if a.Key == "href" {
// fmt.Println(a.Val)
// }
// }
// }
// // entra no conteudo e pega o proximo conteudo
// for next := n.FirstChild; next != nil; next = next.NextSibling {
// acessa(next)
// }
// }
// acessa(node)
// # terceira forma de WebScraping
doc, _ := goquery.NewDocumentFromReader(input)
doc.Find(".foo").Each(func(i int, s *goquery.Selection) {
fmt.Println(s.Text())
})
}