Python dateutil.rrule.TU Examples
The following are 24
code examples of dateutil.rrule.TU().
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example.
You may also want to check out all available functions/classes of the module
dateutil.rrule
, or try the search function
.
Example #1
Source File: test_imports.py From plugin.video.emby with GNU General Public License v3.0 | 7 votes |
def testRRuleAll(self): from dateutil.rrule import rrule from dateutil.rrule import rruleset from dateutil.rrule import rrulestr from dateutil.rrule import YEARLY, MONTHLY, WEEKLY, DAILY from dateutil.rrule import HOURLY, MINUTELY, SECONDLY from dateutil.rrule import MO, TU, WE, TH, FR, SA, SU rr_all = (rrule, rruleset, rrulestr, YEARLY, MONTHLY, WEEKLY, DAILY, HOURLY, MINUTELY, SECONDLY, MO, TU, WE, TH, FR, SA, SU) for var in rr_all: self.assertIsNot(var, None) # In the public interface but not in all from dateutil.rrule import weekday self.assertIsNot(weekday, None)
Example #2
Source File: test_imports.py From bazarr with GNU General Public License v3.0 | 6 votes |
def testRRuleAll(self): from dateutil.rrule import rrule from dateutil.rrule import rruleset from dateutil.rrule import rrulestr from dateutil.rrule import YEARLY, MONTHLY, WEEKLY, DAILY from dateutil.rrule import HOURLY, MINUTELY, SECONDLY from dateutil.rrule import MO, TU, WE, TH, FR, SA, SU rr_all = (rrule, rruleset, rrulestr, YEARLY, MONTHLY, WEEKLY, DAILY, HOURLY, MINUTELY, SECONDLY, MO, TU, WE, TH, FR, SA, SU) for var in rr_all: self.assertIsNot(var, None) # In the public interface but not in all from dateutil.rrule import weekday self.assertIsNot(weekday, None)
Example #3
Source File: test_business_calendar.py From py-business-calendar with MIT License | 5 votes |
def __init__(self): BaseCalendarTest.__init__(self) self.holidays = [parse(x) for x in global_holidays.split('\n')] self.cal = Calendar(workdays=[0,1,4,6], holidays=self.holidays) rr = rruleset() rr.rrule(rrule(DAILY, byweekday=(MO,TU,FR,SU), dtstart=datetime.datetime(2010,1,1))) for h in self.holidays: rr.exdate(h) self.rr = rr self.dates = rr.between(datetime.datetime(2010,1,1), datetime.datetime(2013,12,31), inc=True)
Example #4
Source File: test_imports.py From plugin.video.emby with GNU General Public License v3.0 | 5 votes |
def testRelativeDeltaAll(self): from dateutil.relativedelta import relativedelta from dateutil.relativedelta import MO, TU, WE, TH, FR, SA, SU for var in (relativedelta, MO, TU, WE, TH, FR, SA, SU): self.assertIsNot(var, None) # In the public interface but not in all from dateutil.relativedelta import weekday self.assertIsNot(weekday, None)
Example #5
Source File: test_business_calendar.py From py-business-calendar with MIT License | 5 votes |
def __init__(self): BaseCalendarTest.__init__(self) self.holidays = [parse(x) for x in global_holidays.split('\n')] self.cal = Calendar(holidays=self.holidays) self.cal.warn_on_holiday_exhaustion = False rr = rruleset() rr.rrule(rrule(DAILY, byweekday=(MO,TU,WE,TH,FR), dtstart=datetime.datetime(2010,1,1))) for h in self.holidays: rr.exdate(h) self.rr = rr self.dates = rr.between(datetime.datetime(2010,1,1), datetime.datetime(2013,12,31), inc=True)
Example #6
Source File: test_business_calendar.py From py-business-calendar with MIT License | 5 votes |
def __init__(self): BaseCalendarTest.__init__(self) self.cal = Calendar(workdays=[0,1,4,6]) rr = rruleset() rr.rrule(rrule(DAILY, byweekday=(MO,TU,FR,SU), dtstart=datetime.datetime(2010,1,1))) self.rr = rr self.dates = rr.between(datetime.datetime(2010,1,1), datetime.datetime(2013,12,31), inc=True)
Example #7
Source File: test_business_calendar.py From py-business-calendar with MIT License | 5 votes |
def __init__(self): BaseCalendarTest.__init__(self) self.cal = Calendar() rr = rruleset() rr.rrule(rrule(DAILY, byweekday=(MO,TU,WE,TH,FR), dtstart=datetime.datetime(2010,1,1))) self.rr = rr self.dates = rr.between(datetime.datetime(2010,1,1), datetime.datetime(2013,12,31), inc=True)
Example #8
Source File: speed_comparison.py From py-business-calendar with MIT License | 5 votes |
def init_rruleset(): rr = rruleset() rr.rrule(rrule(DAILY, byweekday=(MO,TU,WE,TH,FR), dtstart=datetime.datetime(2010,1,1))) for h in holidays: rr.exdate(h) return rr
Example #9
Source File: test_imports.py From bazarr with GNU General Public License v3.0 | 5 votes |
def testRelativeDeltaAll(self): from dateutil.relativedelta import relativedelta from dateutil.relativedelta import MO, TU, WE, TH, FR, SA, SU for var in (relativedelta, MO, TU, WE, TH, FR, SA, SU): self.assertIsNot(var, None) # In the public interface but not in all from dateutil.relativedelta import weekday self.assertIsNot(weekday, None)
Example #10
Source File: tradingcalendar_tse.py From zipline-chinese with Apache License 2.0 | 5 votes |
def get_early_closes(start, end): # TSX closed at 1:00 PM on december 24th. start = canonicalize_datetime(start) end = canonicalize_datetime(end) start = max(start, datetime(1993, 1, 1, tzinfo=pytz.utc)) end = max(end, datetime(1993, 1, 1, tzinfo=pytz.utc)) # Not included here are early closes prior to 1993 # or unplanned early closes early_close_rules = [] christmas_eve = rrule.rrule( rrule.MONTHLY, bymonth=12, bymonthday=24, byweekday=(rrule.MO, rrule.TU, rrule.WE, rrule.TH, rrule.FR), cache=True, dtstart=start, until=end ) early_close_rules.append(christmas_eve) early_close_ruleset = rrule.rruleset() for rule in early_close_rules: early_close_ruleset.rrule(rule) early_closes = early_close_ruleset.between(start, end, inc=True) early_closes.sort() return pd.DatetimeIndex(early_closes)
Example #11
Source File: test_recurrence.py From django-ical with MIT License | 5 votes |
def test_complex_rule_serialization_with_weekday_instance(self): rule = recurrence.Rule( recurrence.WEEKLY, interval=17, wkst=recurrence.to_weekday(1), count=7, byday=[recurrence.to_weekday("-1MO"), recurrence.to_weekday("TU")], bymonth=[1, 3], ) vrecurr = utils.build_rrule_from_recurrences_rrule(rule) assert ( vRecur(vrecurr).to_ical().decode() == "FREQ=WEEKLY;COUNT=7;INTERVAL=17;BYDAY=-1MO,TU;BYMONTH=1,3;WKST=TU" )
Example #12
Source File: test_recurrence.py From django-ical with MIT License | 5 votes |
def test_complex_rule_serialization(self): rule = recurrence.Rule( recurrence.WEEKLY, interval=17, wkst=1, count=7, byday=[recurrence.to_weekday("-1MO"), recurrence.to_weekday("TU")], bymonth=[1, 3], ) vrecurr = utils.build_rrule_from_recurrences_rrule(rule) assert ( vRecur(vrecurr).to_ical().decode() == "FREQ=WEEKLY;COUNT=7;INTERVAL=17;BYDAY=-1MO,TU;BYMONTH=1,3;WKST=TU" )
Example #13
Source File: test_recurrence.py From django-ical with MIT License | 5 votes |
def test_monthly_month_nweekday(self): rule = rrule( MONTHLY, bymonth=(1, 3), byweekday=(TU(1), TH(-1)), dtstart=datetime.datetime(1997, 9, 2, 9, 0), ) vrecurr = utils.build_rrule_from_dateutil_rrule(rule) vRecur(vrecurr).to_ical().decode() == "FREQ=MONTHLY;BYDAY=+1TU,-1TH;BYMONTH=1,3"
Example #14
Source File: test_recurrence.py From django-ical with MIT License | 5 votes |
def test_monthly_nweekday(self): rule = rrule( MONTHLY, count=3, byweekday=(TU(1), TH(-1)), dtstart=datetime.datetime(1997, 9, 2, 9, 0), ) vrecurr = utils.build_rrule_from_dateutil_rrule(rule) vRecur(vrecurr).to_ical().decode() == "FREQ=MONTHLY;COUNT=3;BYDAY=+1TU,-1TH"
Example #15
Source File: test_recurrence.py From django-ical with MIT License | 5 votes |
def test_daily_by_month_nweekday(self): rule = rrule( DAILY, count=3, bymonth=(1, 3), byweekday=(TU(1), TH(-1)), dtstart=datetime.datetime(1997, 9, 2, 9, 0), ) vrecurr = utils.build_rrule_from_dateutil_rrule(rule) vRecur( vrecurr ).to_ical().decode() == "FREQ=DAILY;COUNT=3;BYDAY=TU,TH;BYMONTH=1,3"
Example #16
Source File: test_recurrence.py From django-ical with MIT License | 5 votes |
def test_weekly_by_weekday(self): rule = rrule( WEEKLY, count=3, byweekday=(TU, TH), dtstart=datetime.datetime(1997, 9, 2, 9, 0), ) vrecurr = utils.build_rrule_from_dateutil_rrule(rule) vRecur(vrecurr).to_ical().decode() == "FREQ=WEEKLY;COUNT=3;BYDAY=TU,TH"
Example #17
Source File: test_recurrence.py From django-ical with MIT License | 5 votes |
def test_weekly_by_month_nweekday(self): rule = rrule( WEEKLY, count=3, bymonth=(1, 3), byweekday=(TU(1), TH(-1)), dtstart=datetime.datetime(1997, 9, 2, 9, 0), ) vrecurr = utils.build_rrule_from_dateutil_rrule(rule) vRecur( vrecurr ).to_ical().decode() == "FREQ=WEEKLY;COUNT=3;BYDAY=TU,TH;BYMONTH=1,3"
Example #18
Source File: test_recurrence.py From django-ical with MIT License | 5 votes |
def test_every_day_in_jan(self): """Repeat every day in January""" vrecurr = utils.build_rrule_from_text( "FREQ=YEARLY;BYMONTH=1;BYDAY=MO,TU,WE,TH,FR,SA,SU;" ) assert vrecurr["FREQ"] == ["YEARLY"] assert vrecurr["BYMONTH"] == [1] assert vrecurr["BYDAY"] == ["MO", "TU", "WE", "TH", "FR", "SA", "SU"] vRecur( vrecurr ).to_ical().decode() == "FREQ=YEARLY;BYDAY=MO,TU,WE,TH,FR,SA,SU;BYMONTH=1" assert len(vrecurr.keys()) == 3
Example #19
Source File: test_recurrence.py From django-ical with MIT License | 5 votes |
def test_every_month_last_working_day(self): """Repeat the last working day of each month.""" vrecurr = utils.build_rrule_from_text( "FREQ=MONTHLY;BYDAY=MO,TU,WE,TH,FR;BYSETPOS=-1;" ) assert vrecurr["FREQ"] == ["MONTHLY"] assert vrecurr["BYDAY"] == ["MO", "TU", "WE", "TH", "FR"] assert vrecurr["BYSETPOS"] == [-1] vRecur( vrecurr ).to_ical().decode() == "FREQ=MONTHLY;BYDAY=MO,TU,WE,TH,FR;BYSETPOS=-1" assert len(vrecurr.keys()) == 3
Example #20
Source File: test_recurrence.py From django-ical with MIT License | 5 votes |
def test_weekly_tue(self): """Repeat every week on Tuesday.""" vrecurr = utils.build_rrule_from_text("FREQ=WEEKLY;BYDAY=TU") assert vrecurr["FREQ"] == ["WEEKLY"] assert vrecurr["BYDAY"] == ["TU"] vRecur(vrecurr).to_ical().decode() == "FREQ=WEEKLY;BYDAY=TU" assert len(vrecurr.keys()) == 2
Example #21
Source File: test_recurrence.py From django-ical with MIT License | 5 votes |
def test_every_day_in_jan(self): """Repeat every day in January""" vrecurr = utils.build_rrule( freq="YEARLY", bymonth=1, byday=["MO", "TU", "WE", "TH", "FR", "SA", "SU"] ) assert vrecurr["FREQ"] == "YEARLY" assert vrecurr["BYMONTH"] == 1 assert vrecurr["BYDAY"] == ["MO", "TU", "WE", "TH", "FR", "SA", "SU"] vRecur( vrecurr ).to_ical().decode() == "FREQ=YEARLY;BYDAY=MO,TU,WE,TH,FR,SA,SU;BYMONTH=1" assert len(vrecurr.keys()) == 3
Example #22
Source File: test_recurrence.py From django-ical with MIT License | 5 votes |
def test_every_month_last_working_day(self): """Repeat the last working day of each month.""" vrecurr = utils.build_rrule( freq="MONTHLY", byday=["MO", "TU", "WE", "TH", "FR"], bysetpos=-1 ) assert vrecurr["FREQ"] == "MONTHLY" assert vrecurr["BYDAY"] == ["MO", "TU", "WE", "TH", "FR"] assert vrecurr["BYSETPOS"] == -1 vRecur( vrecurr ).to_ical().decode() == "FREQ=MONTHLY;BYDAY=MO,TU,WE,TH,FR;BYSETPOS=-1" assert len(vrecurr.keys()) == 3
Example #23
Source File: test_recurrence.py From django-ical with MIT License | 5 votes |
def test_every_weekday(self): """Repeat every weekday.""" vrecurr = utils.build_rrule(freq="WEEKLY", byday=["MO", "TU", "WE", "TH", "FR"]) assert vrecurr["FREQ"] == "WEEKLY" assert vrecurr["BYDAY"] == ["MO", "TU", "WE", "TH", "FR"] vRecur(vrecurr).to_ical().decode() == "FREQ=WEEKLY;BYDAY=MO,TU,WE,TH,FR" assert len(vrecurr.keys()) == 2
Example #24
Source File: test_recurrence.py From django-ical with MIT License | 5 votes |
def test_weekly_tue(self): """Repeat every week on Tuesday.""" vrecurr = utils.build_rrule(freq="WEEKLY", byday="TU") assert vrecurr["FREQ"] == "WEEKLY" assert vrecurr["BYDAY"] == "TU" vRecur(vrecurr).to_ical().decode() == "FREQ=WEEKLY;BYDAY=TU" assert len(vrecurr.keys()) == 2