The tzparse module
(Obsolete). This (highly incomplete) module contains a parser for timezone specifications. When you import this module, it parses the content of the TZ environment variable. Example: Using the tzparse module # File: import os if not os.environ.has_key(“TZ”): # set it to something… os.environ[“TZ”] = “EST+5EDT;100/2,300/2” # importing this module will parse the TZ variable import […]
The tzparse module Read More »