Im using the pytz module to translate a date in America/Los_Angeles timezone to utc by the code below :

TZ = 'America/Los_Angeles'
from = pytz.timezone(TZ)
utc = from.localize(original_date).astimezone(pytz.utc)

Now,i want to test if utc value is actually in UTC format or not. How to do that with pytz or datetime ?

Please Help Thank You

link|improve this question
1  
from is a reserved word. – eumiro Jul 15 '11 at 12:01
feedback

1 Answer

up vote 2 down vote accepted
utc.tzinfo == pytz.utc # returns True if utc in UTC

Example:

now = datetime.datetime.now(pytz.utc)
now.tzinfo == pytz.utc # returns True

now = now.astimezone(pytz.timezone('America/Los_Angeles'))
now.tzinfo == pytz.utc # returns False
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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