Library to make moment-independent periods in python. It's designed especially for Regta Framework, but with an ability to use it independently.
This term in this context means that relying on this approach we can get the time to time points regardless of the points in which we are.
|-----------------|
t1 t2 moment
--------|--------|--------|--------> time
|--------|
Whereas with the standard intervals like datetime.timedelta
, we get an unnecessary offset:
|-----------------|
t1 t2 moment
--------|--------|--------|--------|--------> time
|-----------------|
For example, it is important in the context of the job scheduler, because when the scheduler is redeployed or restarted, you can get an unnecessary time shift or unnecessary execution of the job.
Regular offset is the same as python's timedelta
shift e.g. once per
Essentially, it works as a remainder of the time division from the Unix epoch.
Let
Let
Time offset is stating the exact time e.g. at 9 pm, at 12 am, at 16:30, etc. It works as a shift of the starting point in the exact time and time zone:
Note that it's not possible to combine exact time and short regular intervals such as hours, minutes, and seconds.
Time window is a static time frame in which the result should be included e.g. every Monday, every June, etc.
A window may be from
If the expression above is true, it means that the result is included in the time window, and the result is correct. If don't, we calculate the result from the maximum and calculate the next time window until we find a match:
Install using pip install regta-period
or poetry add regta-period
If you use python < 3.9, then also install backports: pip install "backports.zoneinfo[tzdata]"
There are two ways to create periods: old school style and hipster style.
from datetime import datetime
from zoneinfo import ZoneInfo
from regta_period import Period
# Hipster style
p = Period().every(3).days.at("17:00").by("Europe/Moscow")
# Old school style
p = Period(days=3, time="17:00", timezone=ZoneInfo("Europe/Moscow"))
# <Period: regular_offset=259200.0s, time_offset=61200s, timezone=Europe/Moscow>
# Every 3 days at 5 pm by Moscow time
t = datetime.now(tz=ZoneInfo("Europe/Moscow"))
next_moment: datetime = p.get_next(t) # f(t) + t
You also may combine a few periods to a single object with the same interface:
from datetime import datetime
from regta_period import Period, PeriodAggregation, Weekdays
# Hipster style
p = Period().on.weekdays.at("18:00") | Period().on.weekends.at("21:00")
# You also may replace `|` with `.OR` to write shorter and more human-readable code
p = Period().on.weekdays.at("18:00").OR.on.weekends.at("21:00")
# Old school style
p = PeriodAggregation(
Period(
weekdays=[Weekdays.MONDAY, Weekdays.TUESDAY, Weekdays.WEDNESDAY, Weekdays.THURSDAY, Weekdays.FRIDAY],
time="18:00",
),
Period(
weekdays=[Weekdays.SATURDAY, Weekdays.SUNDAY],
time="21:00",
),
)
# All of the above will the same result:
# <PeriodAggregation: <Period: regular_offset=86400.0s, time_offset=64800s, weekdays=Tuesday,Monday,Thursday,Wednesday,Friday> OR <Period: regular_offset=86400.0s, time_offset=75600s, weekdays=Sunday,Saturday>>
# At 6 pm on weekdays (Monday-Friday) and at 9 pm on weekends (Saturday-Sunday)
t = datetime.now()
timedelta_to_the_next_moment = p.get_interval(t) # f(t)
Full documentation and reference are available at regta-period.alinsky.tech