Skip to content

Instantly share code, notes, and snippets.

@Miserlou
Last active July 30, 2016 00:10
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save Miserlou/a9cbe22d06cbabc07f21 to your computer and use it in GitHub Desktop.
Save Miserlou/a9cbe22d06cbabc07f21 to your computer and use it in GitHub Desktop.
Generate a new Django SECRET_KEY
python -c 'import random; import string; print "".join([random.SystemRandom().choice(string.digits + string.letters + "!#$%&\()*+,-./:;<=>?@[]^_{|}~" ) for i in range(100)])'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment