Next / Previous / Contents / TCC Help System / NM Tech homepage

2.2. Imports

We'll need the standard Python sys module to get at command line arguments and I/O streams.

jd
#================================================================
# Imports
#----------------------------------------------------------------

import sys

In addition to the sidereal.py module, we'll need Python's datetime package required by the JulianDate class.

jd
import sidereal
import datetime