https://github.com/sermilrod/simple-webcrawler
Simple webcrawler implementation in Go
https://github.com/sermilrod/simple-webcrawler
algorithms algorithms-implemented docker go golang
Last synced: 4 months ago
JSON representation
Simple webcrawler implementation in Go
- Host: GitHub
- URL: https://github.com/sermilrod/simple-webcrawler
- Owner: sermilrod
- Created: 2019-02-07T11:29:33.000Z (over 6 years ago)
- Default Branch: develop
- Last Pushed: 2020-10-07T13:33:49.000Z (over 4 years ago)
- Last Synced: 2025-01-10T15:46:05.448Z (6 months ago)
- Topics: algorithms, algorithms-implemented, docker, go, golang
- Language: Go
- Homepage:
- Size: 10.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Simple Webcrawler
A simple webcrawler written in go# Building the artefact
```
$ docker build -t sermilrod/simple-webcrawler .
$ docker push sermilrod/simple-webcrawler
```# How to use it
```
$ docker run --rm sermilrod/simple-webcrawler -url http://foo.bar
$ docker run --rm sermilrod/simple-webcrawler -url http://foo.bar -url http://bibidi.babidi.boo
```# Running the tests
```
$ go test -v ./... --benchmem
```