Skip to content

Instantly share code, notes, and snippets.

@gnrfan
Created June 7, 2012 04:01
Show Gist options
  • Select an option

  • Save gnrfan/2886488 to your computer and use it in GitHub Desktop.

Select an option

Save gnrfan/2886488 to your computer and use it in GitHub Desktop.
Change Django admin password to "admin"
from django.contrib.auth.models import User
user = User.objects.get(username='admin')
user.set_password("admin")
user.save()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment