Skip to main content

regta-period

Library to make moment-independent periods in python. It's designed especially for Regta Framework, but with an ability to use it independently.

versions Tests Code Quality codecov PyPI version license

Moment-Independence Idea Explanation

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.

Math Explanation Of Moment-Independence

Regular Offset

Regular offset is the same as python's timedelta shift e.g. once per $n_1$ days, $n_2$ hours, $n_3$ minutes, $n_4$ seconds, but with the moment-independence idea.

Essentially, it works as a remainder of the time division from the Unix epoch. Let $t_{unix}$ be the moment of the Unix epoch, a moment that we can get a grip on. $t$ is the current moment. Then, the time since epoch is:

$$\ \Delta t = t - t_{unix} $$

Let $T$ be our regular period. Thus, to calculate time until the next moment we must subtract from our period the remainder of the division by the period. Final function to calculate time until the next moment since current looks following:

$$\ f(t) = T - ( \Delta t \mod T ) = T - ( ( t - t_{unix} ) \mod T ) $$

Time Offset

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:

$$\ t_{unix} + \Delta t_{time} + \Delta t_{tz} $$

Note that it's not possible to combine exact time and short regular intervals such as hours, minutes, and seconds.

Time Windows

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 $t_{min}$ to $t_{max}$, then function result must be included in this interval:

$$ t + f(t) \in [t_{min}, t_{max}] $$

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:

$$ t + f(t) \notin [t_{min_n}, t_{max_n}] \longrightarrow f(t_{max_n}); [t_{min_{n+1}}, t_{max_{n+1}}] $$

Installation

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]"

Examples

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

Release files for regta-period 0.2.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for regta-period 0.2.0
File Size Uploaded
regta-period-0.2.0.tar.gz 8.5 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for regta-period 0.2.0
File Interpreter ABI Platform
regta_period-0.2.0-py3-none-any.whl Python 3 none any Details

Total release size: 17.3 kB

Release files / regta-period-0.2.0.tar.gz

Download URL regta-period-0.2.0.tar.gz
Size 8.5 kB
Tags Source
SHA-256 checksum
How to use checksums
a32c6296ba839420ea4066af3c76f15ebae7831c7a01ddf4d946f32b428fc367
BLAKE2b-256 checksum
How to use checksums
0936c7b9b845a6ddd5a3169d8cc71254197c4236fe8369937cd09ad7b91b107c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via poetry/1.1.13 CPython/3.10.2 Darwin/19.6.0

Release files / regta_period-0.2.0-py3-none-any.whl

Download URL regta_period-0.2.0-py3-none-any.whl
Size 8.9 kB
Tags Python 3
SHA-256 checksum
How to use checksums
b827a2ce01e7d80506d3bcb0286f3d8f6114b6e67312c23a1f6d756de6474640
BLAKE2b-256 checksum
How to use checksums
1e9d8853439d84a3880f4b54b6f07fa1d7cfdd642f63672ec73ef6a8fae363be
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via poetry/1.1.13 CPython/3.10.2 Darwin/19.6.0

Release history Release notifications | RSS feed

This release

0.2.0 This release

2 release files

0.1.0

2 release files

0.0.0

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page