Popularity
4.6
Declining
Activity
0.0
Stable
22
4
13
Monthly Downloads: 801
Programming language: Elixir
License: MIT License
Tags:
Date And Time
ex_ical alternatives and similar packages
Based on the "Date and Time" category.
Alternatively, view ex_ical alternatives based on common mentions on social networks and blogs.
-
filtrex
A library for performing and validating complex filters from a client (e.g. smart filters) -
Crontab
Parse Cron Expressions, Compose Cron Expression Strings and Caluclate Execution Dates. -
Ex_Cldr_Dates_Times
Date & times formatting functions for the Common Locale Data Repository (CLDR) package https://github.com/elixir-cldr/cldr -
jalaali
Jalaali (also known as Jalali, Persian, Khorshidi, Shamsi) calendar implementation in Elixir. -
timex_interval
A date/time interval library for Elixir projects, based on Timex. -
block_timer
Macros to use :timer.apply_after and :timer.apply_interval with a block -
emojiclock
An Elixir module for returning an emoji clock for a given hour -
Calixir
Calixir is a port of the Lisp calendar software calendrica-4.0 to Elixir. -
japan_municipality_key
Elixir Library for Japan municipality key converting
Learn Elixir in as little as 12 Weeks
A structured learning environment with practical assignments, code reviews, weekly live coaching sessions, job-hunting assistance, and more. Try a Free Preview today!
Promo
learn-elixir.dev
Do you think we are missing an alternative of ex_ical or a related project?
README
ExIcal

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.1.0"}]
end
Usage
HTTPotion.get("url-for-icalendar").body
|> ExIcal.parse
|> ExIcal.by_range(Date.now, Date.now |> Date.shift(days: 7))