Skip to content

Instantly share code, notes, and snippets.

@qoda
Last active March 16, 2023 13:39
Show Gist options
  • Save qoda/7577716 to your computer and use it in GitHub Desktop.
Save qoda/7577716 to your computer and use it in GitHub Desktop.
Secret Key Generator
import random
import string
print("".join([random.choice(string.ascii_letters + string.digits + string.punctuation) for i in range(64)]))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment