django-chrono is a helper class for date and time operations in Django projects.
Project description
django-chrono
django-chrono is a helper class for date and time operations in Django projects.
Usage Examples
1. String ↔ Datetime
from django_chrono import ChronoUtils
dt = ChronoUtils.str_to_datetime("2025-06-07 16:30:00")
dt_str = ChronoUtils.datetime_to_str(dt, fmt="%d.%m.%Y %H:%M")
# Result: '07.06.2025 16:30'
2. Date ↔ Datetime
import datetime
from django_chrono import ChronoUtils
d = datetime.date(2025, 6, 7)
dt = ChronoUtils.date_to_datetime(d) # 2025-06-07 00:00:00
d2 = ChronoUtils.datetime_to_date(dt) # 2025-06-07
3. Timestamps
dt = ChronoUtils.timestamp_to_datetime(1759991100)
ts = ChronoUtils.datetime_to_timestamp(dt)
4. Time Zone Conversion
import pytz
from django.utils import timezone
dt = ChronoUtils.str_to_datetime("2025-06-07 12:00:00", tz=pytz.timezone('Europe/Sofia'))
dt_utc = ChronoUtils.to_utc(dt) # Convert to UTC
dt_local = ChronoUtils.from_utc(dt_utc, pytz.timezone('Europe/Sofia')) # Convert back
5. ISO Format
dt = ChronoUtils.parse_iso("2025-06-07T14:15:00")
iso_str = ChronoUtils.to_iso(dt)
6. Day/Week Boundaries
today = datetime.date.today()
start_day, end_day = ChronoUtils.get_day_bounds(today)
start_week, end_week = ChronoUtils.get_week_bounds(today, start_of_week=0) # Monday
7. Add/Subtract Weeks, Months, Years
from django_chrono import ChronoUtils
dt = datetime.date(2025, 6, 7)
dt_plus_2w = ChronoUtils.add_weeks(dt, 2) # +2 weeks
dt_minus_1m = ChronoUtils.sub_months(dt, 1) # -1 month
dt_plus_3y = ChronoUtils.add_years(dt, 3) # +3 years
8. Calculate Difference
d1 = datetime.date(2024, 6, 7)
d2 = datetime.date(2025, 6, 7)
w_diff = ChronoUtils.diff_in_weeks(d2, d1) # 52
m_diff = ChronoUtils.diff_in_months(d2, d1) # 12
y_diff = ChronoUtils.diff_in_years(d2, d1) # 1
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
django_chrono-0.0.1.tar.gz
(3.9 kB
view details)
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 django_chrono-0.0.1.tar.gz.
File metadata
- Download URL: django_chrono-0.0.1.tar.gz
- Upload date:
- Size: 3.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.9.23
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c4fe3a000110b52fed8a615359ffe39ed09347b0eca38d68e7bac6c3e4649862
|
|
| MD5 |
0dd6de22499e4f6ba5ec24c3447c0298
|
|
| BLAKE2b-256 |
8c7e18f0dec1c6020705028633cee61c691c037a287f8e2a728543a701efe007
|
File details
Details for the file django_chrono-0.0.1-py3-none-any.whl.
File metadata
- Download URL: django_chrono-0.0.1-py3-none-any.whl
- Upload date:
- Size: 4.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.9.23
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
55dbcade449e52a54e2d9dddbfdc8446ea3c083ef4494c35bf0b5a942be5e75a
|
|
| MD5 |
3f63c676c40bd5585a0980724aab9394
|
|
| BLAKE2b-256 |
cfe17ad92ca9453593c93694b19157996ded4b11dc4722a6b580944d1a5bf87e
|