README.md
# Crawlie (the crawler) [](https://travis-ci.org/nietaki/crawlie) [](https://coveralls.io/github/nietaki/crawlie?branch=master) [](https://hex.pm/packages/crawlie) [](https://hexdocs.pm/crawlie/)
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](https://github.com/nietaki/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`:
```elixir
def deps do
[{:crawlie, "~> 0.1.1"}]
end
```
2. Ensure `crawlie` is started before your application:
```elixir
def application do
[applications: [:crawlie]]
end
```