tz_util – Utilities for dealing with timezones in Python#

Timezone related utilities for BSON.

class bson.tz_util.FixedOffset(offset: float | timedelta, name: str)#

Fixed offset timezone, in minutes east from UTC.

Implementation based from the Python standard library documentation. Defining __getinitargs__ enables pickling / copying.

dst(dt: datetime | None) timedelta#

datetime -> DST offset as timedelta positive east of UTC.

tzname(dt: datetime | None) str#

datetime -> string name of time zone.

utcoffset(dt: datetime | None) timedelta#

datetime -> timedelta showing offset from UTC, negative values indicating West of UTC

bson.tz_util.utc: FixedOffset = <bson.tz_util.FixedOffset object>#

Fixed offset timezone representing UTC.