tz_util – Utilities for dealing with timezones in Python
Timezone related utilities for BSON.
class bson.tz_util.``FixedOffset(offset, name)
Fixed offset timezone, in minutes east from UTC.
Implementation based from the Python standard library documentation. Defining __getinitargs__ enables pickling / copying.
dst(dt)datetime -> DST offset as timedelta positive east of UTC.
tzname(dt)datetime -> string name of time zone.
utcoffset(dt)datetime -> timedelta showing offset from UTC, negative values indicating West of UTC
bson.tz_util.``utc = <bson.tz_util.FixedOffset object>
Fixed offset timezone representing UTC.
Previous topic
timestamp – Tools for representing MongoDB internal Timestamps
Next topic
pymongo – Python driver for MongoDB