Provides a datetime.tzinfo derived class for the  Solar Time time zone implementation.
Equation of time is from astral module (http://pypi.python.org/pypi/astral/0.5).
Example:

# -*- coding: utf8 -*-
from SolarTZ import *

OsakaST=SolarTZ(135.5026)
JarvisIslandST=SolarTZ(-159.9997)
print ("Osaka : "+str(OsakaST.solarnow()))
print ("Jarvis Island : "+str(JarvisIslandST.solarnow()))
