| ⌘T | go to file |
| ⌘⌃P | go to project |
| ⌘R | go to methods |
| ⌃G | go to line |
| ⌘KB | toggle side bar |
| ⌘⇧P | command prompt |
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
| """Utility to send passwords to a list of addresses in a CSV file""" | |
| import os | |
| import sys | |
| import csv | |
| import string | |
| import smtplib | |
| from email.mime.text import MIMEText | |
| from random import choice, randint, seed |
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
| """WSGI application file""" | |
| import os | |
| from django.core.wsgi import get_wsgi_application | |
| from barrel import cooper | |
| os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'project.settings') | |
| django_app = get_wsgi_application() |
NewerOlder