I want to get the default timezone (PST) of my system from Python. What\'s the best way to do that? I\'d like to avoid forking another process.
Check out the Python Time Module.
from time import gmtime, strftime print(strftime("%z", gmtime()))
Pacific Standard Time