pythonは、Webサイトの自動監視とメールアラートの送信を実現


pythonスクリプトをタイミングよく実行することで、定期的にWebサイトに一括アクセスできます.Webサイトが開かないことを発見したら、管理者メールボックスに最初の時間にメールを送ってアラートを行います.
ここではpython 3を使用しています.5
インストールするプラグイン:
smtplib:メールを送るには
pycurl:Webサイトへのアクセスに使用する
linecache:txtサイトのリストを読み込むときに使用する必要があります
具体的な考え方:
pythonプログラムはtxtからウェブサイトの情報を一括して読み出し、Curl.pyシミュレーションブラウザはウェブサイトにアクセスし、アクセスの結果を自分のウェブサイト名-日付に書き込む.txt形式のファイルに記録する.いくつかの状況があります.
1、もし開けられないことを発見したら、直接メールでサイトが開けられないことを提示します
2、開くことができることを発見し、ファイルの中で前回アクセスした場合(txtファイルの最後の行を読み取る)、
1)前回は開かなかったことに気づいたら、サイトが復旧したことをメールで注意する
2)前回はヒットしていた(200のリターンコード)を見つけたら、サイトアクセスのログを記録するだけでいいです
全部で4つのファイルがあり、
Email.pyはメールクラスで、主にメールを送るときに呼び出されます.ここではあなたの状況に応じてメールボックス(msg['From'])、メールサーバーアドレス(SMTPアドレス)、メールボックスパスワード(SMTP.login)に変更する必要があります.
Email.py
#!/usr/bin/python
#-*- coding:utf-8 -*-
import sys
import smtplib
from email.mime.text import MIMEText
from email.mime.multipart import MIMEMultipart
class Email_send(object):
    def __init__(self,msgTo,data2,Subject):
        self.msgTo=msgTo
        self.data2=data2
        self.Subject=Subject
    def sendEmail(self):
       # (attachment,html) = content
        msg = MIMEMultipart()
        msg['Subject'] = self.Subject
        msg['From'] = '[email protected]'
        msg['To'] = self.msgTo
        html_att = MIMEText(self.data2, 'html', 'utf-8')
        #att = MIMEText(attachment, 'plain', 'utf-8')
        msg.attach(html_att)
        #msg.attach(att)
        try:
            smtp = smtplib.SMTP()
            smtp.connect('smtp.xxxx.com', 25)
            smtp.login(msg['From'], 'xxxx') #         
            smtp.sendmail(msg['From'], msg['To'].split(','), msg.as_string())
            return('      ')
        except Exception as e:
            print('--------------sss------',e)
    def curl(self):
        import pycurl
        c=pycurl.Curl()
        #url="www.luoan.com.cn"
        #indexfile=open(os.path.dirname(os.path.realpath(__file__))+"/content.txt","wb")
        c.setopt(c.URL,url)
        c.setopt(c.VERBOSE,1)
        c.setopt(c.ENCODING,"gzip")
        #       
        c.setopt(c.USERAGENT,"Mozilla/5.0 (Windows NT 6.1; rv:35.0) Gecko/20100101 Firefox/35.0")
        return c

Curl.py主にシミュレーションブラウザを実行してWebサイトにアクセスし、結果を返すファイル
#!/usr/bin/python
#-*- coding:utf-8 -*-
import sys
import pycurl
class Curl(object):
    def __init__(self,url):
        self.url=url
    def Curl_site(self):
        c=pycurl.Curl()
        #url="www.luoan.com.cn"
        #indexfile=open(os.path.dirname(os.path.realpath(__file__))+"/content.txt","wb")
        c.setopt(c.URL,self.url)
        c.setopt(c.VERBOSE,1)
        c.setopt(c.ENCODING,"gzip")
        #       
        c.setopt(c.USERAGENT,"Mozilla/5.0 (Windows NT 6.1; rv:35.0) Gecko/20100101 Firefox/35.0")
        return c

site_moniter.pyこのファイルはメインプログラムで、主に上の関数を呼び出して、txtファイルの中のウェブサイトのリストを読んで、もしウェブサイトが開かないならばメールを出して警告します
注意:1、[email protected]自分のメールボックスに変更して、
2、ファイルのパスを自分の実際のパスに変更する
#!/usr/bin/python
#-*- coding:utf-8 -*-
import pycurl
import os
import sys
import linecache
import time  #     ,          
#from ceshi import Student
from Email import Email_send
from Curl import Curl

#bart = Student('mafei',59)
#bart.print_score()

def script(urls,type):
    msgTo = '[email protected]'
    now_time=time.strftime("%Y-%m-%d %H:%M:%S",time.localtime(time.time()))
    j=1
#       data2=[{'aa':'aa'}]
    for url_split in urls:
        #print(url_split)
        url_1=url_split.split('---')
        url=url_1[1]
        recovery_title = "    ----%s url:%s" % (url_1[0], url) + " " + time.strftime("%Y-%m-%d %H:%M:%S",time.localtime(time.time())) + "    "
        down_title = "    ----%s url:%s" % (url_1[0], url) + " " + time.strftime("%Y-%m-%d %H:%M:%S",time.localtime(time.time())) + "    "
        #print('~~~~~~~~~~~~~~~~~~~')
        #print(url)
        #        ,    
        url_result = Curl(url)
        c = url_result.Curl_site()
        try:
            c.perform()
            code = str(c.getinfo(c.HTTP_CODE))
            print(code+'aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa')
        except Exception as e:
            print('--------    :--------',e)
            #indexfile.close()
            #c.close()
        code = str(c.getinfo(c.HTTP_CODE))
        # print(code+'aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa')
        filename = '%s-%s.txt' % (url_1[0], time.strftime("%Y-%m-%d", time.localtime(time.time())))
        #               
        if code == '0' or code=='400' or code=='500' or code=='404':
            resolveTime = 0
            Connection_Time = 0
            Transfer_Total_Time = 0
            Total_Time = 0
            # print(' 000000000000000000000000000000000000000000')
            data3 = '  :%s    %s' % (url_1[0], url)
            # indexfile.close()
            # c.close()
            #            
            stat3 = Email_send(msgTo, data3, down_title)
            resole=stat3.sendEmail()
            print(resole)
            print(data3 + '      ')
        else:
            #resolveTime = str(c.getinfo(c.NAMELOOKUP_TIME) * 1000) + " ms"
            # Connection_Time=str(float(c.getinfo(c.CONNECT_TIME)*1000-c.getinfo(c.NAMELOOKUP_TIME)*1000))+" ms"
            #Connection_Time = str(c.getinfo(c.CONNECT_TIME) * 1000 - c.getinfo(c.NAMELOOKUP_TIME) * 1000) + " ms"
            # Connection_Time=round(float(Connection_Time))
            #Transfer_Total_Time = str(c.getinfo(c.TOTAL_TIME) * 1000 - c.getinfo(c.PRETRANSFER_TIME) * 1000) + " ms"
            #Total_Time = str(c.getinfo(c.TOTAL_TIME) * 1000) + " ms"
            # data2=data
            # data={'url':url,'HTTP CODE':code,'resolveTime':resolveTime,'Connection_Time':Connection_Time,'Transfer_Total_Time':Transfer_Total_Time,'Total_Time':Total_Time}
            print('        ')
            #f = open(filename, 'a',encoding='utf-8')
            file_exit=os.path.exists(filename)
            #print(file_exit)
            #            
            if(file_exit):
                #        ,              
                file = open(filename, 'r',encoding='utf-8')
                linecount = len(file.readlines())
                data = linecache.getline(filename, linecount)
                file.close
                if data == '':
                    print('  '+data+'     ')
                else:
                    print('    %s'%(data))
                    explode = data.split('----')
                    #          ,             
                    if explode[3]=='0
' or explode[3]=='400
' or explode[3]=='500' or explode[3]=='404':                         data3 = ' :%s %s %s' % (url_1[0], now_time,url)                         stat3 = Email_send(msgTo, data3, recovery_title)                         resole = stat3.sendEmail()                         print(resole)                         print(data3 + ' ')                     else:                         print(' :%s'%(explode[3])+'-----')             else:                 print(' ')         data2 = '
' + url_1[0] + '----' + url + '-----' + time.strftime("%H:%M:%S", time.localtime(time.time())) + '-------' + code         print('data2 :' + data2)         file = open(filename, 'a', encoding='utf-8')         file.write(data2)         file.close #  bart = Student(data2,59) #  bart.print_score() if __name__ == "__main__":     type = " - " + time.strftime("%Y-%m-%d %H:%M:%S", time.localtime(time.time()))     data1=[' ---www.luoan.com.cn',' ---yun.luoan.com.cn']     #script(data1,type)   #     file=open('D:\python\site_moniter\zhongxin.txt')     data2=[]     while 1:         line2 =file.readline()         print(line2)         if not line2:             break         data2.append(line2[0:-1])     #data2=['www.luoan.com.cn','yun.luoan.com.cn','www.qq.com']     print(data2)     title=" - "+ time.strftime("%Y-%m-%d %H:%M:%S",time.localtime(time.time()))     script(data2,title)

転載先:https://blog.51cto.com/mapengfei/1841731