Can anyone advise how I change the timezone for my google app engine application? It's running python, I need to set the timezone so all datetime.now() etc work on EST timezone instead of the default?
Thanks!
|
Can anyone advise how I change the timezone for my google app engine application? It's running python, I need to set the timezone so all datetime.now() etc work on EST timezone instead of the default? Thanks! |
|||
|
|
|
Have a look at http://timezones.appspot.com/ You can not make |
||||
|
|
|
You can also use the dateutil library:
...to get the now() time for UTC, for instance. |
|||
|
|