how do i get queryset of people with a birthday in the next X days? I saw this answer, but it does not suit me, because gets people only with current year of birth.
Assuming it's datetime field do something like this (using future_date from dimosaur answer):
Profile.objects.get( Q(birthday__lte=future_date), Q(birthday__gte=datetime.date.today()) )