To include the dictionary, you could do this if your file location is in
different directory (with caution of path.append as @Coldspeed
mentioned):
import syssys.path.append("path/foo/bar/")from light import *If it is in same directory as current directory, you could just do:
from light import *



