recurrent
recurrent copied to clipboard
Natural language parsing of dates and recurring events
Trying out package for first time, and my expectation was that it might recognize noon and midnight. But it does not. Not a big deal, but thought I'd bring it...
I think get_params should be changed to include the time component of dtstart. From the [RFC](https://www.kanzaki.com/docs/ical/dtstart.html) `DTSTART:19980118T073000Z` Looks like self.dtstart.strftime('%Y%m%d') would be changed to self.dtstart.strftime('%Y%m%dT%H%M%S'). The issue crops up if...
The string `every other year at 26th march` is wrongly detected as containing `BYHOUR=26` It is caused by the regex `RE_AT_TIME` which is expanding to ``` at\s(?P\d{1,2}):?(?P\d{2})?\s?(?Pam?|pm?)?(o\'?clock)? ``` I'd propose...
I've recently started using this in a project of mine and while parsing google calendar event recurrence rules I noticed it can't handle `FREQ=YEARLY`. For example: ``` > format(parse('every year'))...
Thank you for creating and maintaining the recurrent library—it's a powerful tool for parsing natural language date and time expressions. However, I've noticed an issue where the library doesn't correctly...