摘要: # md5 加密def my_md5(s,salt=""): new_s = str(s) + salt m = hashlib.md5(new_s.encode()) return m.hexdigest()# 发送邮件 def send_mail(subject,content,files=No 阅读全文
posted @ 2021-02-05 17:44 Mia妈妈加油呀 阅读(114) 评论(0) 推荐(0)
摘要: import osimport jsonpathimport requestsdef save_jpg(qun): qun_url = "https://qun.qq.com/cgi-bin/qun_mgr/search_group_members" # 群管理URL qun_data = {"gc 阅读全文
posted @ 2021-02-05 15:40 Mia妈妈加油呀 阅读(393) 评论(0) 推荐(0)
摘要: import yamailpassword="amyli1499"host="smtp.163.com" #smtp.qq.com user="meiyanshandong@163.com"to = ["zhangmeiyan01@renmaitech.com"]cc = ["549541889@q 阅读全文
posted @ 2021-02-05 11:54 Mia妈妈加油呀 阅读(51) 评论(0) 推荐(0)