Created
June 29, 2012 07:49
-
-
Save doubleo2/3016540 to your computer and use it in GitHub Desktop.
Generate SECRET_KEY for django project
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from django.utils.crypto import get_random_string | |
chars = 'abcdefghijklmnopqrstuvwxyz0123456789!@#$%^&*(-_=+)' | |
get_random_string(50, chars) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment