Skip to content

Instantly share code, notes, and snippets.

View kevinlee12's full-sized avatar
🪽

Kevin Lee kevinlee12

🪽
View GitHub Profile
@mattseymour
mattseymour / django-secret-keygen.py
Last active September 8, 2022 23:47
Django secret key generator
"""
Pseudo-random django secret key generator.
- Does print SECRET key to terminal which can be seen as unsafe.
"""
import string
import random
from __future__ import print_function