This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
import vobject | |
import datetime | |
from pytz import timezone | |
from dateutil import rrule | |
TIME_ZONE = timezone('US/Eastern') | |
TODAY = datetime.date.today() - datetime.timedelta(days=31) | |
MEETING_START_TIME = datetime.time(19, 30, tzinfo=TIME_ZONE) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
import vobject | |
import datetime | |
from pytz import timezone | |
from dateutil import rrule | |
TIME_ZONE = timezone('US/Eastern') | |
TODAY = datetime.date.today() - datetime.timedelta(days=31) | |
MEETING_START_TIME = datetime.time(19, 30, tzinfo=TIME_ZONE) |