So I know the week number of a date using x = mydate.strftime("%U")
now I need to find all the dates that fall in that week. Ultimately I need to get a query set from django on date object that returns all records that are in a given week based only on knowing the week number. Something like:
y = Stuff.objects.filter=(date__range=[#anydate that is in the week number of x])