-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
76 lines (61 loc) · 1.61 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
package main
import (
"bufio"
"fmt"
"github.com/gocolly/colly"
"os"
"strings"
)
type Product struct {
Name string
Price string
Link string
Rating string
Reviews string
Image string
}
var products []Product
// a-size-base-plus a-color-base a-text-normal
func main() {
fmt.Println("Enter a product name:")
reader := bufio.NewReader(os.Stdin)
line, _ := reader.ReadString('\n')
c := colly.NewCollector()
i := 0
c.OnHTML("div.s-result-list.s-search-results.sg-row", func(h *colly.HTMLElement) {
h.ForEach("div.a-section.a-spacing-base", func(_ int, h *colly.HTMLElement) {
var name string
name = h.ChildText("span.a-size-base-plus.a-color-base.a-text-normal")
var stars string
stars = h.ChildText("span.a-icon-alt")
var price string
price = h.ChildText("span.a-price-whole")
products = append(products, Product{Name: name, Rating: stars, Price: price})
})
})
c.OnHTML(".a-size-base-plus.a-color-base.a-text-normal", func(e *colly.HTMLElement) {
products = append(products, Product{Name: e.Text})
})
c.OnHTML(".a-text-price", func(e *colly.HTMLElement) {
if i == len(products) {
return
}
product := products[i]
product.Price = e.Text
products[i] = product
i++
})
c.OnRequest(func(r *colly.Request) {
fmt.Println("Visiting", r.URL.String())
})
err := c.Visit("https://amazon.in/s?k=" + strings.TrimRight(strings.ReplaceAll(line, " ", "+"), "\r\n"))
if err != nil {
panic(err)
}
for _, product := range products {
fmt.Println("Name: ", product.Name)
fmt.Println("Rating: ", product.Rating)
fmt.Println("Price: ", product.Price)
fmt.Println()
}
}