-
-
Save foresmac/ad987b09b864319fba86 to your computer and use it in GitHub Desktop.
This file contains 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
""" | |
Pseudo-random django secret key generator. | |
- Does print SECRET key to terminal which can be seen as unsafe. | |
""" | |
import string | |
import random | |
# Just use letters and digits to simplfy setting values from user_data.txt | |
chars = ''.join([string.ascii_letters, string.digits]) | |
SECRET_KEY = ''.join([random.SystemRandom().choice(chars) for i in range(50)]) | |
print SECRET_KEY |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment