Django week_day Field lookup
Django’s ORM offers built-in field lookups, one of which is week_day. So one can do Sale.objects.get(sale_date__week_day=2) to find out how well is the business doing on Mondays. Wait what? How come 2 is a Monday? According to Python documentation, there...