README.md
# ExIcal [](https://hex.pm/packages/ex_ical) [](https://travis-ci.org/fazibear/ex_ical) [](https://codeclimate.com/github/fazibear/ex_ical)
Not ready yet!
iCalendar parser for [Elixir](http://elixir-lang.org).
## Installation
Add ex_ical to your list of dependencies in `mix.exs`:
```elixir
def deps do
[{:ex_ical, "~> 0.1.0"}]
end
```
## Usage
```elixir
HTTPotion.get("url-for-icalendar").body
|> ExIcal.parse
|> ExIcal.by_range(Date.now, Date.now |> Date.shift(days: 7))
```