https://github.com/svycal/calex
An Elixir library for encoding and decoding the iCalendar (iCal) data format.
https://github.com/svycal/calex
elixir ical
Last synced: 11 months ago
JSON representation
An Elixir library for encoding and decoding the iCalendar (iCal) data format.
- Host: GitHub
- URL: https://github.com/svycal/calex
- Owner: svycal
- License: mit
- Created: 2021-07-29T20:36:52.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2024-12-04T19:34:39.000Z (over 1 year ago)
- Last Synced: 2025-07-10T23:34:34.830Z (12 months ago)
- Topics: elixir, ical
- Language: Elixir
- Homepage: https://hexdocs.pm/calex
- Size: 45.9 KB
- Stars: 5
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Calex [](https://hexdocs.pm/calex/readme.html)
An Elixir library for encoding and decoding the [iCalendar (iCal)](https://datatracker.ietf.org/doc/html/rfc5545) data format.
Implementation based on the [Calibex](https://github.com/kbrw/calibex) library.
## Installation
Add `calex` to your list of dependencies in `mix.exs`:
```elixir
def deps do
[
{:calex, "~> 0.1.0"}
]
end
```