sqlalchemy.event.rrule

Here are the examples of the python api sqlalchemy.event.rrule taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Examples 7

3 Source : event.py
with GNU Affero General Public License v3.0
from closeio

    def update(self, event):
        super().update(event)
        if isinstance(event, type(self)):
            self.rrule = event.rrule
            self.exdate = event.exdate
            self.until = event.until
            self.start_timezone = event.start_timezone


class RecurringEventOverride(Event):