PHP to Python conversion to get timezone offset

240 Views Asked by At

I am new to Python and would like to do the same thing below in Python instead of PHP.

$timestamp = 1414231200;
$timezone = 'Australia/NSW';
$offset = timezone_offset_get(timezone_open($timezone), new DateTime()); //39600 (11 Hours)
$adjust = $timestamp + $offset;
$new = new DateTime('@'.$adjust);
print_r($new->format('Y-m-d\TH:i:s'));

Result: 2014-10-25T21:00:00

I am using GAE (Google App Engine) and it looks like I can't import pytz. Are there any other solutions?

I have tried:

from datetime import datetime
from pytz import timezone
import pytz

TIMESTAMP = 1415700000;
TIMEZONE = timezone('Australia/NSW')
FORMAT = '%Y-%m-%d\T%H:%M:%S'
#Not sure how to get offset

NEW = TIMEZONE.localize(datetime.fromtimestamp(TIMESTAMP))
NEW.strftime(FORMAT)
print(NEW)

But get the error: ImportError: No module named pytz

1

There are 1 best solutions below

2
On BEST ANSWER

You might be able to use this and achieve this: https://code.google.com/p/gae-pytz/ I think you might also be able to use pytz, but you'll have to manually install it: How to properly add PyTZ to a Google App Engine application?