Closed JasonGrace2282 closed 1 month ago
Django has a convenient django.setup() function to avoid the manage.py hackery we did. I tested the modified script, and it worked successfully.
django.setup()
manage.py
Additionally, I changed it to use getpass.getpass instead of input because it bothered me to enter a password in plaintext.
getpass.getpass
input
Superseeded by #86
Django has a convenient
django.setup()
function to avoid themanage.py
hackery we did. I tested the modified script, and it worked successfully.Additionally, I changed it to use
getpass.getpass
instead ofinput
because it bothered me to enter a password in plaintext.