您好,登錄后才能下訂單哦!
今天就跟大家聊聊有關python 使用Twilio免費短信網關報警方法是什么,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結了以下內容,希望大家根據這篇文章可以有所收獲。
二、寫python 接口
sms.py
點擊(此處)折疊或打開
#coding: utf-8
from twilio.rest import Client
def sms(t):
account_sid = " "
auth_token = " "
client = Client(account_sid, auth_token)
message = client.messages.create(
to="= ",#自己的手要號碼
from_=" ",#在網站上申請的手機碼,只能用這個號碼發信息
body=t.decode("utf-8"))#編碼密碼使用utf-8才發送中文。
print(message.sid)
引用sms模塊
點擊(此處)折疊或打開
#!/usr/bin/python
import socket
import time
from sms import sms
import logging
import time
def port_try(host,port):
shijian=time.strftime('%Y-%m-%d %H:%M:%S', time.localtime(time.time()))
sk = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
sk.settimeout(1)
try:
sk.connect((host,port))
t=host+"服務器 "+str(port)+" 連接正常 "+str(shijian)
#sms(t)
print t
except Exception:
w=host+" 服務器 "+str(port)+" 無法連接 "+str(shijian)
print w
sms(w)
sk.close()
file = open("/root/script/ip.txt")#ip地址寫法192.16.0.1:80
while True:
line = file.readline().strip('\n')
if len(line)==0:break
ip=str(line.split(':',1)[0])
port=int(line.split(':',1)[1])
port_try(ip,port)
#time.sleep(2)
看完上述內容,你們對python 使用Twilio免費短信網關報警方法是什么有進一步的了解嗎?如果還想了解更多知識或者相關內容,請關注億速云行業資訊頻道,感謝大家的支持。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。