python远程邮件控制电脑升级版 由于前边Python3.4实现远程控制电脑开关机写的远程操控电脑,使用的POP登陆有使用频率限制,导致非常被动,有时候邮件无法读取,下面改用POST网易邮箱的方法,获取邮件 import urllib.request as request import http.cookiejar as cookiejar import urllib.parse import re import smtplib from email.mime.text import MIMEText import time import win32com.client import win32con import win32api import os cj = cookiejar.LWPCookieJar() cookiesupport = request.HTTPCookieProcessor(cj) opener = request.build_opener(cookiesupport, request.HTTPHandler) request.install_opener(opener) speak = win32com.client.Dispatch('SAPI.SPVOICE') def Login(username, pwd): post_url = 'http://mail.163.com/entry/cgi/ntesdoor?df=mail163_letter&from=web&funcid=loginone&iframe=1&language=-1&passtype=1&product=mail163&net=c&style=-1&race=254_292_276_bj&uid='+ username + "@163.com" headers = { 'Host': 'mail.163.com', 'Origin': 'http://mail.163.com', 'Referer': 'http://mail.163.com/', 'User-Agent': 'Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.39 Safari/537.36' } post_data = {'savelogin':'0', 'url2': 'http://mail.163.com/errorpage/error163.htm', 'username': username, 'password': pwd } post_data = urllib.parse.urlencode(post_data).encode('gbk') req = request.Request(post_url, post_data, headers=headers) page = request.urlopen(req, timeout=20).read().decode('gb2312') sid = re.compile(r'sid=(.+?)&df').findall(page)[0] return sid def check_email(): mail_url = 'http://mail.163.com/js6/s?sid='+Login('******', '******')+'&func=mbox:listMessages&LeftNavRecieveMailClick=1&error=no%20Conext.module&mbox_folder_enter=1' mail_data = { 'var': 'mbox:getAllFolderstruefalsembox:getFolderStats1,3,18truefalsembox:listTagstruefalsembox:statMessages123418519700101:mbox:statMessages1234185:20150617' } mail_data = urllib.parse.urlencode(mail_data).encode('utf-8') req = request.Request(mail_url, mail_data) page = request.urlopen(req, timeout=20).read().decode('utf-8', 'ignore') subject = re.compile(r'(.+?)').findall(page) return (subject[len(subject)-1]) def send_email(): user = '******@163.com' pwd = '*******' to = ['*****@163.com', '*****@139.com'] msg = MIMEText('') msg['Subject'] = 'OK' msg['From'] = user msg['To'] = ','.join(to) s = smtplib.SMTP('smtp.163.com') s.login(user, pwd) s.sendmail(user, to, msg.as_string()) s.close() if __name__ == '__main__': while True: try: cmd = check_email() command1 = {'关机': 'shutdown -s -t 1', '重启': 'shutdown -r', '关闭浏览器': 'taskkill /F /IM chrome.exe', '关闭QQ': 'taskkill /F /IM QQ.exe', '关闭qq': 'taskkill /F /IM QQ.exe', '关闭wifi': 'taskkill /F /IM kwifi.exe', '关闭音乐': 'taskkill /F /IM cloudmusic.exe', '打开音乐': 'D:\\网易云音乐\\CloudMusic\\cloudmusic.exe', '打开摄像头': 'D:\\Python源码\\摄像头监控.py', '打开监控': 'D:\\Python源码\\winSpyon.py', '打开QQ': 'D:\\腾讯QQ\\Bin\\QQ.exe', '打开qq': 'D:\\腾讯QQ\\Bin\\QQ.exe', '打开wifi': 'D:\\Chrome\\kwifi\\kwifi.exe', '打开ss': 'D:\\代理服务器\\Shadowsocks-win-dotnet4.0-2.3\\Shadowsocks.exe' } if cmd in command1.keys(): speak.Speak('计算机即将' + cmd) send_email() if cmd.find('打开') == 0: win32api.ShellExecute(0, 'open', command1[cmd], '', '', 1) if cmd == '打开音乐': time.sleep(35) win32api.keybd_event(17, 0, 0, 0) win32api.keybd_event(18, 0, 0, 0) win32api.keybd_event(32, 0, 0, 0) win32api.keybd_event(32, 0, win32con.KEYEVENTF_KEYUP, 0) win32api.keybd_event(18, 0, win32con.KEYEVENTF_KEYUP, 0) win32api.keybd_event(17, 0, win32con.KEYEVENTF_KEYUP, 0) else: os.system(command1[cmd]) speak.Speak('计算机已经' + cmd + ',任务执行完毕!') time.sleep(60) except: time.sleep(120) 以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持中文源码网。