In mongodb, a field called joining_date appears as "Sun Dec 19 2010 05:35:55 GMT+0000 (UTC)".This as you see is a UTC date . But the same field when accessed from pymongo appears as datetime.datetime(2010, 12, 19, 5, 35, 55, 286000). From python i need to check that the date is in utc format or not, but i get a strange result as shown below
v = datetime(2010, 12, 19, 5, 35, 55, 286000)
v.tzinfo == pytz.utc # Returns False !..why ?
How can i get back the original string Sun Dec 19 2010 05:35:55 GMT+0000 (UTC) from datetime.datetime(2010, 12, 19, 5, 35, 55, 286000) or how can i check if datetime.datetime(2010, 12, 19, 5, 35, 55, 286000) is in UTC format or not ?
Please Help Thank You