1 Star 5 Fork 2

仲夏柠叶香/earthquake-spider

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
common.py 1.26 KB
一键复制 编辑 原始数据 按行查看 历史
仲夏柠叶香 提交于 2021-07-15 15:09 . update common.py.
# -*- coding: utf-8 -*-
import json
import time
from smtplib import SMTP_SSL
from email.mime.text import MIMEText
def get_config():
config = None
with open('config.json', encoding='utf-8') as file:
config = json.loads(file.read())
return config
def get_parameter():
parameter = None
with open('parameter.json', encoding='utf-8') as file:
parameter = json.loads(file.read())
return parameter
def write_parameter(parameter):
with open('parameter.json', encoding='utf-8', mode='w') as file:
file.write(json.dumps(parameter))
def send_email(mail):
with SMTP_SSL(host="smtp.qq.com") as smtp:
smtp.login(user='2220677239@qq.com', password='***************')
t = time.localtime(time.time())
time_str = '{}-{}-{} {}:{}:{}'.format(str(t[0]).zfill(4), str(t[1]).zfill(2), str(t[2]).zfill(2),
str(t[3]).zfill(2), str(t[4]).zfill(2), str(t[5]).zfill(2))
msg = MIMEText('[时间: {}]\n{}'.format(time_str, mail), _charset="utf8")
msg["Subject"] = "【爬虫状况】"
msg["from"] = '2220677239@qq.com'
msg["to"] = '2206034346@qq.com'
smtp.sendmail(from_addr="2220677239@qq.com", to_addrs="2206034346@qq.com", msg=msg.as_string())
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/Hook-shy/earthquake-spider.git
git@gitee.com:Hook-shy/earthquake-spider.git
Hook-shy
earthquake-spider
earthquake-spider
master

搜索帮助