module documentation

This module provides an interface to the native time zone data on Windows, including :py:class:`datetime.tzinfo` implementations. Attempting to import this module on a non-Windows platform will raise an :py:obj:`ImportError`.

Class tzres Class for accessing ``tzres.dll``, which contains timezone name related resources.
Class tzwin Time zone object created from the zone info in the Windows registry
Class tzwinbase tzinfo class based on win32's timezones available in the registry.
Class tzwinlocal Class representing the local time zone information in the Windows registry
Function picknthweekday dayofweek == 0 means Sunday, whichweek 5 means last instance
Function valuestodict Convert a registry key's values to a dictionary.
Constant ONEWEEK Undocumented
Constant TZKEYNAME Undocumented
Constant TZKEYNAME9X Undocumented
Constant TZKEYNAMENT Undocumented
Constant TZLOCALKEYNAME Undocumented
Function _settzkeyname Undocumented
def picknthweekday(year, month, dayofweek, hour, minute, whichweek): (source)

dayofweek == 0 means Sunday, whichweek 5 means last instance

def valuestodict(key): (source)

Convert a registry key's values to a dictionary.

ONEWEEK = (source)

Undocumented

Value
datetime.timedelta(7)
TZKEYNAME = (source)

Undocumented

Value
_settzkeyname()
TZKEYNAME9X: str = (source)

Undocumented

Value
'SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Time Zones'
TZKEYNAMENT: str = (source)

Undocumented

Value
'SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones'
TZLOCALKEYNAME: str = (source)

Undocumented

Value
'SYSTEM\\CurrentControlSet\\Control\\TimeZoneInformation'
def _settzkeyname(): (source)

Undocumented