Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/frobware/grawler
Web Crawler
https://github.com/frobware/grawler
crawler go
Last synced: 2 days ago
JSON representation
Web Crawler
- Host: GitHub
- URL: https://github.com/frobware/grawler
- Owner: frobware
- License: apache-2.0
- Created: 2017-05-19T12:35:38.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-05-26T07:28:27.000Z (over 7 years ago)
- Last Synced: 2024-06-20T08:13:04.256Z (5 months ago)
- Topics: crawler, go
- Language: Go
- Size: 23.4 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![Travis CI](https://travis-ci.org/frobware/grawler.svg?branch=master)](https://travis-ci.org/frobware/grawler)
[![GoDoc](https://img.shields.io/badge/godoc-reference-blue.svg?style=flat-square)](https://godoc.org/github.com/frobware/grawler)
[![Coverage Status](http://codecov.io/github/frobware/grawler/coverage.svg?branch=master)](http://codecov.io/github/frobware/grawler?branch=master)
[![Report Card](https://goreportcard.com/badge/github.com/frobware/grawler)](https://goreportcard.com/report/github.com/frobware/grawler)# Web Crawler
A webcrawler library written in Go.
## Installation
$ go get -u golang.org/x/net/html
$ go get -u github.com/frobware/grawler/...The binary `sitemap` is an example of using the library.
Given a URL it will print a basic sitemap for the given domain,
listing the links each page has, together with a list of assets found
on each page. At the moment only `img`, `script` and `link` elements
are considered an asset. `sitemap` will also only download links from
the same domain. And downloads are, by default, concurrent, governed
by the `-j ` argument.$ sitemap -j 42 http://gopl.io
```json
{
"URL": "http://gopl.io",
"Links": [
"http://www.informit.com/store/go-programming-language-9780134190440",
"http://www.amazon.com/dp/0134190440",
"http://www.barnesandnoble.com/w/1121601944",
"http://gopl.io/ch1.pdf",
"https://github.com/adonovan/gopl.io/",
"http://gopl.io/reviews.html",
"http://gopl.io/translations.html",
"http://gopl.io/errata.html",
"http://golang.org/s/oracle-user-manual",
"http://golang.org/lib/godoc/analysis/help.html",
"https://github.com/golang/tools/blob/master/refactor/eg/eg.go",
"https://github.com/golang/tools/blob/master/refactor/rename/rename.go",
"http://www.amazon.com/dp/0131103628?tracking_id=disfordig-20",
"http://www.amazon.com/dp/020161586X?tracking_id=disfordig-20"
],
"Assets": [
"style.css",
"cover.png",
"buyfromamazon.png",
"informit.png",
"barnesnoble.png"
]
},
{
"URL": "http://gopl.io/errata.html",
"Links": [
"https://github.com/golang/proposal/blob/master/design/12416-cgo-pointers.md"
],
"Assets": [
"style.css"
]
},
{
"URL": "http://gopl.io/reviews.html",
"Links": [
"https://www.usenix.org/system/files/login/articles/login_dec15_17_books.pdf",
"http://lpar.ath0.com/2015/12/03/review-go-programming-language-book",
"http://www.computingreviews.com/index_dynamic.cfm?CFID=15675338\u0026CFTOKEN=37047869",
"http://www.infoq.com/articles/the-go-programming-language-book-review",
"http://www.onebigfluke.com/2016/03/book-review-go-programming-language.html",
"http://eli.thegreenplace.net/2016/book-review-the-go-programming-language-by-alan-donovan-and-brian-kernighan",
"http://www.amazon.com/Programming-Language-Addison-Wesley-Professional-Computing/product-reviews/0134190440/ref=cm_cr_dp_see_all_summary"
],
"Assets": [
"style.css",
"5stars.png"
]
},
{
"URL": "http://gopl.io/translations.html",
"Links": [
"http://www.acornpub.co.kr/book/go-programming",
"http://www.williamspublishing.com/Books/978-5-8459-2051-5.html",
"http://helion.pl/ksiazki/jezyk-go-poznaj-i-programuj-alan-a-a-donovan-brian-w-kernighan,jgopop.htm",
"http://helion.pl/",
"http://www.amazon.co.jp/exec/obidos/ASIN/4621300253",
"http://www.maruzen.co.jp/corp/en/services/publishing.html",
"http://novatec.com.br/",
"http://www.gotop.com.tw/",
"http://www.pearsonapac.com/"
],
"Assets": [
"style.css"
]
},
{
"URL": "http://gopl.io/ch1.pdf"
}
```