Skip to content

Instantly share code, notes, and snippets.

@normoes
Created October 7, 2018 11:28
Show Gist options
  • Save normoes/b8e03fee39189929d5216ec881358f0e to your computer and use it in GitHub Desktop.
Save normoes/b8e03fee39189929d5216ec881358f0e to your computer and use it in GitHub Desktop.
Create Django SECRET_KEY
    >>> import secrets
    >>> import string
    >>> print(''.join(secrets.choice(string.digits + string.ascii_letters + string.punctuation) for i in range(100)))

    *:}~{MH)D&e}SGYRcAO~Q}PFD@:bN$6\d2&A7VB.ge2<zGda5J#)(p>>_H5l*Z>Q9R+!lZ&yn-th2^0ZUf|tkQS8zQu&5+THw&}C
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment