In my Google App Engine application, I save the automatic updated date / time in my model:
class MyModel(db.Model):
date = db.DateTimeProperty(auto_now_add=True)
But this date / time is the local time on the server, according to this time zone.
So, when I would like to display it on my web page, how can I format it according to the client’s time zone ?
Also, how can I find out what time zone the google server is located in?
source
share