Skip to main content

Django UTC datetime field - timestamp without time zone

Project description

Django DateTimeUTC

CI and unit tests

django-datetime-utc provides DateTimeUTCField, a naive datetime model field. In PostgreSQL this translates to the field timestamp without time zone. All timestamps are saved in UTC.

Why use this?

The problem with using Django's DateTimeField is unless the default timezone on your (PostgreSQL) database server is set to UTC it doesn't matter which TZ settings you select in Django, PostgreSQL will save all timestamps in local time with an offset.

Features

  • Supports the default DateTimeField options such as auto_now_add and auto_now
  • Saves all timestamps in UTC
  • Values automatically converted to local time (specified by TIME_ZONE in your project settings.py) in forms and templates

Install

From PyPi:

pip install django-datetime-utc

In settings.py add datetimeutc to the list of installed apps, set your local time zone and ensure time zone support is enabled:

TIME_ZONE = 'Europe/London'
USE_TZ = True
INSTALLED_APPS = (
    #...
    'datetimeutc',
)

Usage

In models.py:

from django.db import models
from datetimeutc.fields import DateTimeUTCField

class Journey(models.Model):
    name = models.CharField(max_length=100)
    departure_time = DateTimeUTCField(null=True)
    arrival_time = DateTimeUTCField(null=True)
    record_created = DateTimeUTCField(auto_now_add=True)

Notes

If your code creates datetime objects, they should always be TZ aware so they are automatically converted correctly to UTC (if necessary) before being saved to the database.

Using the Journey model above as an example, to set departure_time correctly you would:

import datetime
from zoneinfo import ZoneInfo

departure_time = datetime.datetime.now(datetime.UTC)

# or user defined (naive) datetime objects
departure_time = user_datetime.replace(tzinfo=ZoneInfo(settings.TIME_ZONE))

Journey.objects.create(name='Flight to LA', departure_time=departure_time)

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_datetime_utc-1.0.6.tar.gz (3.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

django_datetime_utc-1.0.6-py3-none-any.whl (3.8 kB view details)

Uploaded Python 3

File details

Details for the file django_datetime_utc-1.0.6.tar.gz.

File metadata

  • Download URL: django_datetime_utc-1.0.6.tar.gz
  • Upload date:
  • Size: 3.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.1

File hashes

Hashes for django_datetime_utc-1.0.6.tar.gz
Algorithm Hash digest
SHA256 88e6276619ef401220e4abf660e56e500d5cd27b261076d92addc54190435b13
MD5 437be2681d8e03e9fd2d0b5b39f439b4
BLAKE2b-256 4b3e96c4d914c1739603e85334e44351cee47645806057876ebfa242d7488894

See more details on using hashes here.

File details

Details for the file django_datetime_utc-1.0.6-py3-none-any.whl.

File metadata

File hashes

Hashes for django_datetime_utc-1.0.6-py3-none-any.whl
Algorithm Hash digest
SHA256 59a3c5c33a483ef4d3a007da54f8bd5dc77f6366b74671710b6f2ad4aea39400
MD5 9862075c7893a18899bffcebc9c93ddc
BLAKE2b-256 f15971d527e8431100944db1f54809d06a97cfe95dca9974a1f046d8364f2aca

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page