from datetime import datetime
from datetime import datetime
startTime = datetime.now()
print("Started: " + str(startTime))
stepTime = datetime.now()
def printStepTime(text):
global stepTime
endTime = datetime.now()
print("Finished " + text + ": " + str(endTime) + ", took " + str(endTime - stepTime))
stepTime = endTime
# Download SI data
!curl -L https://github.com/Smithsonian/OpenAccess/archive/master.zip --output data/data.zip
printStepTime("downloading")