Crawlie (the crawler) 




Crawlie is a simple Elixir library for writing decently-performing crawlers with minimum effort.
Usage example
See the crawlie_example project.
Inner workings
Crawlie uses Elixir's GenStage to parallelise
the work. Most of the logic is handled by the Crawlie.Stage.UrlManager, which consumes the url collection passed by the user, receives the urls extracted by the subsequent processing, makes sure no url is processed more than once, makes sure that the "discovered urls" collection is as small as possible by traversing the url tree in a roughly depth-first manner.
The urls are requested from the Crawlie.Stage.UrlManager by a GenStage Flow, which in parallel
fetches the urls using HTTPoison, and parses the responses using user-provided callbacks. Discovered urls get sent back to UrlManager.
Here's a rough diagram:
Configuration
See the docs for supported options.
Planned features
- Option of respecting
robots.txtof the websites (on by default)
Installation
The package can be installed as:
- Add
crawlieto your list of dependencies inmix.exs:
def deps do
[{:crawlie, "~> 0.5.0"}]
end
- Ensure
crawlieis started before your application:
def application do
[applications: [:crawlie]]
end