Skip to content

Instantly share code, notes, and snippets.

@svschannak
Created March 16, 2017 14:59
Show Gist options
  • Save svschannak/0469a512de2f6fea32e58f99b36541f6 to your computer and use it in GitHub Desktop.
Save svschannak/0469a512de2f6fea32e58f99b36541f6 to your computer and use it in GitHub Desktop.
class EventFeed(ICalFeed):
"""
A simple event calender
"""
product_id = '-//example.com//Example//EN'
timezone = 'UTC'
file_name = "event.ics"
def __call__(self, request, *args, **kwargs):
self.request = request
return super(EventFeed, self).__call__(request, *args, **kwargs)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment