import os,sys
import hippo

app=hippo.HDApp()
canvas=app.canvas()

def get_date1(): 	#GET THE DATE
	Fullpath=os.getcwd()
	directory=Fullpath.split('/')
	Date=directory[6]
	Date_Parts=Date.split('-')
	Year=Date_Parts[0]
	Month=Date_Parts[1]
	Day=Date_Parts[2]
	return Year,Month,Day
