Create intervals and helpers for data pipelines
Project description
Koltrast
Koltrast is a very small module that splits a time interval into multiple, shorter intervals.
It was made to help simplify the process of backfilling pipelines.
How to install
pip install koltrast
Example usage
import koltrast
intervals = koltrast.interval.generate_intervals(since="2014-06-01", until="2014-06-04", chunk="day")
for interval in intervals:
print(interval)
Interval(since=DateTime(2014, 6, 1, 0, 0, 0, tzinfo=Timezone('UTC')), until=DateTime(2014, 6, 2, 0, 0, 0, tzinfo=Timezone('UTC')))
Interval(since=DateTime(2014, 6, 2, 0, 0, 0, tzinfo=Timezone('UTC')), until=DateTime(2014, 6, 3, 0, 0, 0, tzinfo=Timezone('UTC')))
Interval(since=DateTime(2014, 6, 3, 0, 0, 0, tzinfo=Timezone('UTC')), until=DateTime(2014, 6, 4, 0, 0, 0, tzinfo=Timezone('UTC')))
Notes
Accepts the following chunks: day, hour, week, month, year
Koltrast always uses "left", which means for a range from A > D, only A B C are selected.
If you provide a since and until, which cannot be divided evenly by the chunk you provided, the last interval will be shorter.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file koltrast-2.0.3.tar.gz.
File metadata
- Download URL: koltrast-2.0.3.tar.gz
- Upload date:
- Size: 4.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e6e347eb41315128db700197fa4993d84be84508eacceb9d34ca83894bcf67f2
|
|
| MD5 |
12b2eb1afd54e8287ac17d686c4c4a9a
|
|
| BLAKE2b-256 |
6ce1c8d7bf53391ee3dfb8e791e8a0824fa648c1555d9ec98df225fb56e89d12
|
File details
Details for the file koltrast-2.0.3-py3-none-any.whl.
File metadata
- Download URL: koltrast-2.0.3-py3-none-any.whl
- Upload date:
- Size: 3.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
11f6a0f80f0b506a7a0b3c9609b6f37e319ddbbe91bc8880204cea19ec6a3872
|
|
| MD5 |
ed3cff878875f45566f4333aabf177ea
|
|
| BLAKE2b-256 |
83511edf954aa62d0fa87aef5d3bc65cd6ffdff8635309a6509c5cc838bcd35f
|