A Event class in models.py

class Event(models.Model):
 timestamp = models.DateTimeField()
 message = models.TextField()

  def __unicode__(self):
    return "'%s' at %s" % (self.message, self.timestamp)

   def api_detail(self):
    return {
        'timestamp': str(self.timestamp),
        'description': self.message,

There is UTC time saved in database. but i want to fetch it in localize time. For example timestamp will return : Feb. 14, 2012 , 7 p.m.. This time is in UTC i want to change it into a local time.

Please help me in this matter :)

link|improve this question

1  
feedback

1 Answer

up vote 2 down vote accepted

Local time in which time zone? The pytz documentation suggests that once you've decided which zone to use, it's as simple as:

local_time = zone.localize(timestamp)

Note that converting from UTC to local time is unambiguous, whereas the reverse is not.

link|improve this answer
It can be from anywhere in world. There is not such a set to defined it. It can't be possible that it first check local timezone and change it automatically :) – Amit Pal Feb 8 at 7:22
waiting for you response :) – Amit Pal Feb 8 at 7:36
@shardaPAL: I thought I'd added a comment, but it seems to be lost. I didn't really understand your previous comment - do you mean you want to use whatever the local time zone of the system running the code is? I can't find a way of getting that through pytz, but it may be available somewhere... – Jon Skeet Feb 8 at 7:42
yes, It depends on client timezone.It is a web app and i want to show the local time for every client. For this i was successfully to saved UTC time in database. But now i want to fetch it(according to client timezone) – Amit Pal Feb 8 at 7:47
@shardaPAL: If it's a web app then the tricky bit is finding out the client time zone. There's no way of doing that fully automatically and accurately. You could find the current time zone offset and let the user pick from all the time zones with that current offset - but importantly it's not going to be just a matter of using the system time zone for the system the code is running on. – Jon Skeet Feb 8 at 8:23
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.