We'll need the standard Python sys module
to get at command line arguments and I/O streams.
#================================================================ # Imports #---------------------------------------------------------------- import sys
In addition to the sidereal.py module, we'll need Python's datetime package required by the JulianDate class.
import sidereal import datetime