Chronomeleon is a Python package that converts and maps date and time information from their representation in one system to another. It's meant to be used in data migration projects.
While converting a datetime alone is possible with either Python builtin tools or libraries like pendulum
and arrow
,
things become more complicated when you have to convert time slices or ranges or when the source and target system interpret dates and times differently.
Think your migrating e.g., contracts from system A to system B.
In system A might have an API, a data dump or something else from where you can read,
that a contract starts at 2024-01-01
and ends at 2024-06-30
.
Now assume, the same contract in system B starts at 2023-12-31T23:00:00Z
and ends at 2024-06-30T21:59:59Z
.
For this little conversion, although simple, you have to consider a lot:
- Are date and times implicitly "meant" in any certain time zone? Here, system A seems to implicitly assume, everything as German local time, whereas system B uses explicit UTC offsets.
- What about the resolution? Although using dates only might be sufficient for the modeling the business logic, as soon as the resolution of system B is higher, you have to start interpreting stuff.
- What if there was a system C, which supported microseconds but only stored the date and time in a single integer?
- What about the end date (times)? It seems that system A uses the end date as inclusive (contract ends at the end of june), whereas system B uses it as exclusive (start of the followup contract == end of the previous contract).
Chronomeleon has two purposes:
- It forces you to make assumptions explicit.
- Once the assumptions are explicit, it helps you do the conversion.
The latter is no rocket science (and neither is any line of code in chronomeleon), but making assumptions explicit is crucial and that's why using it is beneficial.
When you're constantly wondering why other coders seem to randomly
- add or subtract a day, a second, a tick here and there
- pass around naive dates and datetimes and try to convert them to UTC or other timezones with no clear reason
then chronomeleon is for you.
Chronomeleon makes your code more readable and makes your assumption clear. This allows you to spot errors in your or your teammates code more easily and explain why things are done the way they are.
Install it from pypi:
pip install chronomeleon
Then, in your code: Make assumptions about the source and target system explicit. To do so, chronomeleon provides you with so-called MappingConfig objects.
Here's an advanced example, that shows the capabilities of Chronomeleon:
from datetime import date, datetime, timedelta
import pytz
from chronomeleon import ChronoAssumption, MappingConfig, adapt_to_target
config = MappingConfig( # make assumptions explicit
source=ChronoAssumption(
implicit_timezone=pytz.timezone("Europe/Berlin"),
resolution=timedelta(days=1),
is_inclusive_end=True,
is_gastag_aware=False,
),
target=ChronoAssumption(resolution=timedelta(milliseconds=1), is_inclusive_end=True, is_gastag_aware=True),
is_end=True,
is_gas=True,
)
source_value = date(2021, 12, 31)
result = adapt_to_target(source_value, config) # do the mapping
assert result == datetime(2022, 1, 1, 4, 59, 59, microsecond=999000, tzinfo=pytz.utc)
Follow the instructions from our template repository.
tl;dr: tox
.
You are very welcome to contribute to this template repository by opening a pull request against the main branch.