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
Workflow: | |
From forked & updated repo: | |
create branch | |
Either: | |
-git branch litmus_11759_test_blank_search (create branch) | |
-git checkout litmus_11759_test_blank_search (switch to that branch) | |
or: | |
-git checkout -b litmus_11759_test_blank_search (create & switch to branch) |
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
class InspectorGadget(object): | |
def __init__(self, quarrel_with): | |
self.__evil_antagonist = quarrel_with | |
def go_go_gadget_hat(self): | |
... deploy hat | |
def go_go_gadget_arms(self): | |
... do that crazy arm thing |
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
#!/usr/bin/env python | |
import smtplib, string, os | |
from email.MIMEMultipart import MIMEMultipart | |
from email.MIMEText import MIMEText | |
from email.MIMEBase import MIMEBase | |
from email.Encoders import encode_base64 | |
class Emailer(): | |
'''Creates a simple object to interact with to send out mass emails''' |
NewerOlder