Crawlie (the crawler) badge Coverage Status Hex.pm docs

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:

  1. Add crawlie to your list of dependencies in mix.exs:

    def deps do
      [{:crawlie, "~> 0.1.1"}]
    end
  2. Ensure crawlie is started before your application:

    def application do
      [applications: [:crawlie]]
    end