user2460546
user2460546

Reputation: 15

How to localize dates in python?

I'm computing difference between two dates. One date came from Google Drive's createdDate, other date is from datetime.now(). I'm thinking I should get the localized value of createdDate so that the computed difference is accurate.

Please help or guide me what should I do.

Thanks!

Upvotes: 1

Views: 149

Answers (1)

JunYoung Gwak
JunYoung Gwak

Reputation: 2987

Dates returned in Google Drive's queries are in RFC 3339 format. Default timezone is UTC.

If you are using Python, feed.date.rfc3339 is a RFC 3339 date parser and you might want to use this to interact with Python's native datetime library.

Upvotes: 2

Related Questions