完成所需的一种可靠方法是使用 Python Web 框架 Flask ( http://flask.pocoo.org/ )。有一些 Youtube 视频很好地解释了 Flask 基础知识 ( https://www.youtube.com/watch?v=ZVGwqnjOKjk )。
这是我的运动检测器的一个例子,当我的猫在门口等着时,它会发短信给我。触发此代码所需要做的就是针对地址(在我的情况下) http://192.168.1.112:5000/cat_detected的 HTTP 请求
from flask import Flask
import smtplib
import time
def email(from_address, to_address, email_subject, email_message):
server = smtplib.SMTP('smtp.gmail.com:587')
server.ehlo()
server.starttls()
server.login(username, password)
# For character type new-lines, change the header to read: "Content-Type: text/plain". Use the double \r\n.
# For HTML style tags for your new-lines, change the header to read: "Content-Type: text/html". Use line-breaks <br>.
headers = "\r\n".join(["from: " + from_address, "subject: " + email_subject,
"to: " + to_address,
"mime-version: 1.0",
"content-type: text/plain"])
message = headers + '\r\n' + email_message
server.sendmail(from_address, to_address, message)
server.quit()
return time.strftime('%Y-%m-%d, %H:%M:%S')
app = Flask(__name__)
@app.route('/cat_detected', methods=['GET'])
def cat_detected():
fromaddr = 'CAT ALERT'
admin_addrs_list = [['YourPhoneNumber@tmomail.net', 'Mark']] # Use your carrier's format for sending text messages via email.
for y in admin_addrs_list:
email(fromaddr, y[0], 'CAT ALERT', 'Carbon life-form standing by the door.')
print('Email on its way!', time.strftime('%Y-%m-%d, %H:%M:%S'))
return 'Email Sent!'
if __name__ == '__main__':
username = 'yourGmailUserName@gmail.com'
password = 'yourGmailPassword'
app.run(host='0.0.0.0', threaded=True)