Skip to content

Latest commit

 

History

History
23 lines (16 loc) · 585 Bytes

README.md

File metadata and controls

23 lines (16 loc) · 585 Bytes

ExIcal Package Version Build Status

Not ready yet!

ICalendar parser for Elixir.

Installation

Add ex_ical to your list of dependencies in mix.exs:

  def deps do
    [{:ex_ical, "~> 0.0.1"}]
  end

Usage

  HTTPotion.get("url-for-icalendar").body
    |> ExIcal.parse
    |> ExIcal.by_range(Date.now, Date.now |> Date.shift(days: 7))