Skip to content

Instantly share code, notes, and snippets.

@vitorfs
Created October 30, 2017 09:27
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save vitorfs/9e09b4332ece80cbf29f233c8872393c to your computer and use it in GitHub Desktop.
Save vitorfs/9e09b4332ece80cbf29f233c8872393c to your computer and use it in GitHub Desktop.
Generate secret key
from django.utils.crypto import get_random_string
chars = 'abcdefghijklmnopqrstuvwxyz0123456789!@#$%^&*(-_=+)'
random_string = get_random_string(50, chars)
print(random_string)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment