Skip to content

URL support for parsing (feature) #77

@Courtcircuits

Description

@Courtcircuits

I'm working on a project using golang-ical. But the thing is that I need to parse a calendar accessible by a URL.
Here is my show-case :

// parse an ical url to instantiate a Calendar
func NewCalendar(url string) Calendar {
	cal, err := ics.ParseCalendar(url)
	return Calendar{
		Url: url,
                Events: cal,
	}
}

The javascript's ical library provides this kind of feature, but I don't want to use javascript to do that.
By the way, I can work on this issue. I just wanted to know if it might be helpful for this project to add such a feature (I will fork the project anyway).

Metadata

Metadata

Assignees

Labels

No labels
No labels

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions