from datetime import date
today=date.today()
month=today.month
day=today.day
studentList=Student.objects.filter(st_birthdate__month=month,st_birthdate__day=day)