colly icon indicating copy to clipboard operation
colly copied to clipboard

Elegant Scraper and Crawler Framework for Golang

Results 155 colly issues
Sort by recently updated
recently updated
newest added

For my given website after the ```colly.Visit``` function, the ```colly.OnError``` shows **Get "{website}": EOF**. When I check the `StatusCode` it shows `0` **Why?**. Is I'm missing anything? Note: the URL...

question

![image](https://user-images.githubusercontent.com/13204332/107331419-d3e92f00-6aed-11eb-8649-1bb2b37a91f7.png)

Will v3 have context cancellation as a standard part of the API?

Hi I got a use-case, when my proxy-ip got banned because of a big number of req/hour.. I want to remove 1 banned proxy-ip and set a new one... how...

Hi, I'm newbie and I have a question. First of all, thanks to make and share this cooool project! I'm trying to do some examples but the 'cryptocoinmarketcap.go' file doesn't...

bug
example

I crawl website like http://127.0.0.1:8080,AllowedDomains is 127.0.0.1:8080,crawl is not work. in code github.com/gocolly/colly/v2.(*Collector).isDomainAllowed at colly.go:752 if d2 == domain { //value is "127.0.0.1" == "127.0.0.1:8080" because line 708,call the parsedURL.Hostname()...

Hello everyone, I am trying to get an attribute value with colly and I am not being capable of achieve this. `I` I'm trying to get the id value in...

When the website has too much text content, the response will take up too much memory. Use sync.Pool to reduce memory applications. Thanks.

Hi, I'm trying to run the most simple colly sample(which goes through the links at go-colly.org) from Goland IDE, but when I try to run it the program just quits....

question

Very basic code ` func main() { c := colly.NewCollector() // Find and visit all links c.OnHTML("*", func(e *colly.HTMLElement) { fmt.Println(e) e.Request.Visit(e.Attr("href")) }) c.OnRequest(func(r *colly.Request) { fmt.Println("Visiting", r.URL) }) c.CheckHead...

question