python 모니터링 파일 및 경고 메 일 발송
2970 단어 python감시 파일우편물 을 발송 하 다
프로필
import time,datetime
TODAY = time.time()
TIME_PATH = str(TODAY.year) + "/" + str(TODAY.month) + "/" + str(datetime.datetime.now().date())
MONITOR_CONFIG = {
"monitor_file":[
{"key":"py_distribute-datacollect","path":"/home/vagrant/py_distribute/data/" + TIME_PATH + "_error.txt","max_size":100},
],
"send_account":"[email protected]",
"license_code":"feruwfpsiwkuibge", #
"rec_account":["[email protected]"],
"host":"smtp.qq.com",
"port":465,
"sleep_time":60,
}
모니터링
#-*- encoding: utf8 -*-
#
# feruwfpsiwkuibge
import smtplib
import logging
import time
import os
from email.mime.text import MIMEText
from monitor_config import MONITOR_CONFIG
FORMAT = '[%(asctime)-15s] %(message)s'
logging.basicConfig(filename = "monitor.txt", level = logging.DEBUG, filemode = "a", format=FORMAT)
def get_file_size(file_name):
if os.path.exists(file_name):
bytes_size = float(os.path.getsize(file_name))
kb = bytes_size/1024
mb = kb/1024
return mb
return 0
def send_email(file_name,key):
msg = MIMEText(file_name+" , , 。 :"+key)
msg = [key]
msg["From"]= MONITOR_CONFIG["send_account"]
msg["To"] = MONITOR_CONFIG["rec_account"]
try:
s = smtplib.SMTP_SSL(MONITOR_CONFIG["host"],MONITOR_CONFIG["port"])
s.login(MONITOR_CONFIG["send_account"],MONITOR_CONFIG["license_code"])
s.sendmail(MONITOR_CONFIG["send_account"],MONITOR_CONFIG["rec_account"],msg.as_string())
s.quit()
logging.info(file_name + " ")
except Exception as e:
logging.exception(e)
# check
while True:
for file in MONITOR_CONFIG["monitor_file"]:
file_size = get_file_size(file["path"])
if file_size > file["max_size"]:
send_email(file["path"],file["key"])
logging.info(" ")
time.sleep(MONITOR_CONFIG["sleep_time"])
3.QQ 메 일 박스 설정 에서 POP 3/SMTP 서 비 스 를 시작 해 야 합 니 다.참고
Python 은 QQ 메 일 로 이메일 을 보 내 는 방법 인 스 턴 스 를 사용 합 니 다.
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
로마 숫자를 정수로 또는 그 반대로 변환그 중 하나는 로마 숫자를 정수로 변환하는 함수를 만드는 것이었고 두 번째는 그 반대를 수행하는 함수를 만드는 것이었습니다. 문자만 포함합니다'I', 'V', 'X', 'L', 'C', 'D', 'M' ; 문자열이 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.