资源简介
python 自动收邮件(基于imaplib)
代码片段和文件信息
# -*- coding:utf-8 -*-
import imaplib
import re
import time
import datetime
import win32gui
import win32con
import win32clipboard as w
def LoginMail(hostname user password):
r = imaplib.IMAP4_SSL(hostname)
r.login(user password)
x y = r.status(‘INBOX‘ ‘(MESSAGES UNSEEN)‘)
print(x)
print(str(y))
allmes unseenmes = re.match(r‘.*\s+(\d+)\s+.*\s+(\d+)‘ str(y)).groups()
tomail = (‘%s 有 %s 封邮件 %s 封是未读 ‘ % (user allmes unseenmes))
time_tup = time.localtime(time.time())
format_time = ‘%Y-%m-%d %H:%M:%S‘
cur_time = time.strftime(format_time time_tup)
print(cur_time)
with open(‘未读邮件.txt‘ ‘a+‘) as f:
f.write( cur_time+‘\t‘+ tomail + ‘\n‘)
r.logout()
def setText(aString):
“““设置剪贴板文本“““
w.OpenClipboard()
w.EmptyClipboard()
w.SetClipboardData(win32con.CF_UNICODETEXT aString)
w.CloseClipboard()
def send_qq(to_who msg):
# 将消息写到剪贴板
setText(msg)
# 获取qq窗口句柄
相关资源
- python 自动生成 RDP 远程连接登陆文件
- Python-借助adb工具配合Python脚本来实现
- python实现:自动更新代码到FTP(仅包
- Python实现EXCEL图标自动生成
- 监控文件夹,发现psd文件自动生成j
- 自动化测试(基于pytest)
- pywinauto自动打开东方财富证券下单
- 使用sendgrid api 发送邮件
- 《Python自动化运维:技术与最佳实践
- 微信自动聊天(基于itchat)
- python 桌面应用程序自动化工具pywina
- python 连接微信和图灵机器人,完成自
- python实现Gui 自动化测试
- Python For Chrome自动化测试Demo
- python+selenium+phantomjs 模拟自动登陆di
- python+selenium+headless+chrome 模拟自动登陆
- python 自动购物系统 超简单源码
- csdn淘宝自动发货系统
- 《Python自动化运维 技术与最佳实践》
- python:搜索微信好友并自动发消息
- 利用python微信自动回复(itchat)
- Python+Neo4j医药知识图谱自动问答系统
- python微信自动回复(机器人)
- python实现自动发送邮件
- python 自动关机(Win10系统亲测)
- Python美团店铺爬虫(无需登陆爬取数
- CURLpython;实现geoserver半自动发布服务
- playsound更改后自动stop释放音频文件
- 银行自动提款机系统.zip
- Python-DQNchainerPython用Chainer实现的Deep
评论
共有 条评论