Crawlie (the crawler)

Crawlie is meant to be a simple Elixir library for writing decently-peforming crawlers with minimum effort. It’s a work in progress, it doesn’t do much yet.
Usage example
See the crawlie_example project.
Configuration
TODO
Planned features
TODO
Installation
The package can be installed as:
Add
crawlie
to your list of dependencies inmix.exs
:def deps do [{:crawlie, "~> 0.1.1"}] end
Ensure
crawlie
is started before your application:def application do [applications: [:crawlie]] end