Skip to content

Latest commit

 

History

History
14 lines (10 loc) · 630 Bytes

File metadata and controls

14 lines (10 loc) · 630 Bytes

Image Scraper

A simple crawler that downloads all images from a given website.

It uses the Colly to traverse website's pages recursivelly and collects image links. Collected links are processed by a custom-build concurrent downloader.

NOTE: A simple custom crawler implementation, replacing Colly, can be found in PR#1.

Downloader

A very simple concurrent file downloader. It misses some features to make it production ready, e.g.:

  • Graceful shutdown
  • Retrying failed requests
  • Rate limiters with custom backoff strategies
  • Logging