https://github.com/nicklayb/gleam_ics
Gleam ICS decoder
https://github.com/nicklayb/gleam_ics
Last synced: 5 months ago
JSON representation
Gleam ICS decoder
- Host: GitHub
- URL: https://github.com/nicklayb/gleam_ics
- Owner: nicklayb
- Created: 2025-01-19T01:58:37.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-01-31T03:26:58.000Z (over 1 year ago)
- Last Synced: 2025-04-03T06:37:29.039Z (about 1 year ago)
- Language: Gleam
- Size: 46.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ICS
[](https://hex.pm/packages/ics)
[](https://hexdocs.pm/ics/)
Library to parse Ics calendar in respect to the RFC2445 spec.
This is still WIP
```sh
gleam add ics@1
```
```gleam
import ics
import ics/document.{Document}
pub fn main() {
let assert Ok(Document(..)) = ics.parse("some ICS content")
}
```