An open API service indexing awesome lists of open source software.

https://github.com/oglinuk/goccer

Go Concurrent Crawler Library
https://github.com/oglinuk/goccer

concurrency crawler go library

Last synced: 12 months ago
JSON representation

Go Concurrent Crawler Library

Awesome Lists containing this project

README

          

# Goccer

Go concurrent crawler(s) library

## Usage

```Go
package main

import (
"log"

"github.com/oglinuk/goccer"
)

func main() {
wp := goccer.NewWorkerpool()

collected := wp.Queue([]string{"https://fourohfournotfound.com"})

for _, c := range collected {
log.Println(c)
}
}
```

## Examples

See [examples](examples) directory.