django1/django/contrib/sessions/management/commands/clearsessions.py

12 lines
504 B
Python
Raw Normal View History

from django.core.management.base import NoArgsCommand
from django.utils import timezone
class Command(NoArgsCommand):
help = "Can be run as a cronjob or directly to clean out expired sessions (only with the database backend at the moment)."
def handle_noargs(self, **options):
from django.db import transaction
from django.contrib.sessions.models import Session
Session.objects.filter(expire_date__lt=timezone.now()).delete()
transaction.commit_unless_managed()