Created
November 14, 2023 16:36
-
-
Save henriquesebastiao/254b7017c524438f634437b196137979 to your computer and use it in GitHub Desktop.
Generate secret key with python.
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
| python -c "import string as s;from random import SystemRandom as sr;print(''.join(sr().choices(s.ascii_letters + s.punctuation, k=64)))" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment