Skip to content
forked from luxifer/ical

📅 Golang iCalendar lexer/parser implementing RFC 5545

License

Notifications You must be signed in to change notification settings

iswangwenbin/ical

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

40 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

iCalendar lexer/parser

Build Status

Golang iCalendar lexer/parser implementing RFC 5545. This project is heavily inspired of the talk Lexical Scanning in Go by Rob Pike.

Usage

import (
    "github.com/iswangwenbin/ical"
)

// filename is an io.Reader
// second parameter is a *time.Location which defaults to system local
calendar, err := ical.Parse(filename, nil)

Components

Component Reference Status
VCALENDAR RFC5545.Section 3.4 ✓
VEVENT RFC5545.Section 3.6.1 ✓
VALARM RFC5545.Section 3.6.6 ✓
VTIMEZONE RFC5545.Section 3.6.5 ✓
STANDARD RFC5545.Section 3.6.5 ✓
DAYLIGHT RFC5545.Section 3.6.5 ✓
VTODO RFC5545.Section 3.6.2
VJOURNAL RFC5545.Section 3.6.3
VFREEBUSY RFC5545.Section 3.6.4

TODO

  • Implements VEVENT
  • Implements VALARM
  • Implements VTIMEZONE
  • Implements STANDARD
  • Implements DAYLIGHT
  • Implements VTODO
  • Implements VJOURNAL
  • Implements VFREEBUSY
  • Implements Missing Properties on VEVENT
  • Implements Missing Properties on VTIMEZONE

About

📅 Golang iCalendar lexer/parser implementing RFC 5545

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Go 100.0%