This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
import subprocess | |
import time | |
import datetime | |
import ephem #pyephem integration for checking if lights need to remain on | |
o=ephem.Observer() | |
o.lat='30' #change to your latitude | |
o.long='-98' #change to your longitude | |
running=1 |