... I wrote some python to text me ...
Nice!
Which library did you use for sending the text? I've been thinking about adding SMS functionality to my ReconBot but wasn't sure which hoops I needed to jump through to get provider access, etc.
urllib.request to get it, beautiful soup to read, smtplib to send using a gmail account I keep around just for sending stuff from scripts. I'm using my cell providers email to text gateway. [your phone number@vtext.com for Verizon]
I hope this does not get mangled, but...
def send_email_note(body_text):
# for this to work, you have to have turned on 2 step, then create an app specific password.
# creates SMTP session
s = smtplib.SMTP('smtp.gmail.com', 587)
# start TLS for security
s.starttls()
# Authentication
s.login(email_src, email_pass)
# sending the mail
s.sendmail(email_src, email_dest, body_text)
# terminating the session
s.quit()