Python编程实现及时获取新邮件的方法示例


Posted in Python onAugust 10, 2017

本文实例讲述了Python编程实现及时获取新邮件的方法。分享给大家供大家参考,具体如下:

#-*- encoding: utf-8 -*-
import sys
import locale
import poplib
from email import parser
import email
import string
import mysql.connector
import traceback
import datetime
from mysql.connector import errorcode
import time
import re
reload(sys);
sys.setdefaultencoding('utf8');
# 确定运行环境的encoding
__g_codeset = sys.getdefaultencoding()
if "ascii"==__g_codeset:
  __g_codeset = 'utf8';
#
def object2double(obj):
  if(obj==None or obj==""):
    return 0
  else:
    return float(obj)
  #end if
#
def getMailIndex():
  file = open('mailindex.txt',"r");
  lines = file.readlines();
  file.close();
  return int(lines[0]);
#
def setMailIndex(index):
  f = open('mailindex.txt', 'w');
  f.write(index);
  f.close();
#
def utf8_to_mbs(s):
  return s.decode("utf-8").encode(__g_codeset)
#
def utf8_to_gbk(s):
  return s.decode("utf-8").encode('gb2312')
#
def mbs_to_utf8(s):
  return s.decode(__g_codeset).encode("utf-8")
#
def gbk_to_utf8(s):
  return s.decode('gb2312').encode("utf-8")
#
def _queryQuick(cu,sql,tuple):
  try:
    cu.execute(sql,tuple);
    rows = []
    for row in cu:
      rows.append(row)
    #
    return rows
  except:
    print(traceback.format_exc())
  #end
#
#获取信息
def _queryRows(cu,sql):
  try:
    cu.execute(sql)
    rows = []
    for row in cu:
      rows.append(row)
    #
    return rows
  except:
    print(traceback.format_exc())
  #end
#
#是否有新邮件
global hasNewMail;
hasNewMail=True;
#全局已读的邮件数量
global globalMailReaded;
globalMailReaded=getMailIndex()+1;
#获取新邮件
def getNewMail(conn2,cur2):
  try:
    global hasNewMail;
    global globalMailReaded;
    conn2.commit();
    rows=_queryRows(cur2,"select count(*) as message_count from hm_messages where messageaccountid=1");
    message_count=rows[0][0];
    if(hasNewMail):
      print('read mailindex.txt')
      globalMailReaded=getMailIndex()+1;
    #end if
    if(message_count<=globalMailReaded):
      hasNewMail=False;
      #print('Did not receive new mail,continue wait...')
      return None;#没新邮件,直接返回
    #end if
    #登陆邮箱
    host = '127.0.0.1'
    username = 'username@myserver.net'
    password = 'password'
    pop_conn = poplib.POP3(host)
    #print pop_conn.getwelcome()
    pop_conn.user(username);
    pop_conn.pass_(password);
    #Get messages from server:
    messages = [pop_conn.retr(i) for i in range(1, len(pop_conn.list()[1]) + 1)]
    # Concat message pieces:
    messages = ["\n".join(mssg[1]) for mssg in messages]
    #Parse message intom an email object:
    messages = [parser.Parser().parsestr(mssg) for mssg in messages]
    print("get new mail!");
    print pop_conn.stat()
    print('%s readed mail count is %d,all mail count is: %d'%(datetime.datetime.now().strftime("%y-%m-%d %H:%M:%S"),globalMailReaded,len(messages)))
    message = messages[globalMailReaded];
    subject = message.get('subject')
    h = email.Header.Header(subject)
    dh = email.Header.decode_header(h)
    #subject = unicode(dh[0][0], dh[0][1]).encode('utf8')
    #print >> f, "Date: ", message["Date"]
    #print >> f, "From: ", email.utils.parseaddr(message.get('from'))[1]
    #print >> f, "To: ", email.utils.parseaddr(message.get('to'))[1]
    #print >> f, "Subject: ", subject
    j = 0
    for part in message.walk():
      j = j + 1
      fileName = part.get_filename()
      contentType = part.get_content_type()
      mycode=part.get_content_charset();
      # 保存附件
      if fileName:
        pass;
      elif contentType == 'text/plain':# or contentType == 'text/html':
        #保存正文
        data = part.get_payload(decode=True)
        content=str(data);
        if mycode=='gb2312':
          content= gbk_to_utf8(content)
        #end if
        content=content.replace(u'\u200d','');
        setMailIndex(str(globalMailReaded));
        hasNewMail=True;
        pop_conn.quit();
        return (content,email.utils.parseaddr(message.get('from'))[1]);
      #end if
    #end for
  except:
    print("search hmailserver fail,try again");
    return None;
  finally:
    pass;
  #end try
#end def
#连接数据库
conn2 = mysql.connector.connect(user='root', password='password',host='127.0.0.1',database='hmailserver',charset='gb2312');
cur2 = conn2.cursor();
#只要收到电子邮件,就把这个事件记录在事件库中
#现在就是循环查询邮箱,如果有新邮件就读取,并查询关键词库
while(True):
  mailtuple=getNewMail(conn2,cur2);
  if(mailtuple==None):
    #print('Did not search MySQL,continue loop...')
    time.sleep(0.5)
    continue;
  #end if
  (article,origin)=mailtuple;
#end while

更多关于Python相关内容可查看本站专题:《Python Socket编程技巧总结》、《Python数据结构与算法教程》、《Python函数使用技巧总结》、《Python字符串操作技巧汇总》、《Python入门与进阶经典教程》及《Python文件与目录操作技巧汇总》

希望本文所述对大家Python程序设计有所帮助。

Python 相关文章推荐
跟老齐学Python之字典,你还记得吗?
Sep 20 Python
分享一个常用的Python模拟登陆类
Mar 29 Python
Python打包文件夹的方法小结(zip,tar,tar.gz等)
Sep 18 Python
pygame实现弹力球及其变速效果
Jul 03 Python
Python将多个excel表格合并为一个表格
Feb 22 Python
pyttsx3实现中文文字转语音的方法
Dec 24 Python
在 Linux/Mac 下为Python函数添加超时时间的方法
Feb 20 Python
解决django的template中如果无法引用MEDIA_URL问题
Apr 07 Python
python中matplotlib实现随鼠标滑动自动标注代码
Apr 23 Python
Python函数参数定义及传递方式解析
Jun 10 Python
python 获取剪切板内容的两种方法
Nov 28 Python
python非标准时间的转换
Jul 25 Python
Python中函数eval和ast.literal_eval的区别详解
Aug 10 #Python
Python基础之getpass模块详细介绍
Aug 10 #Python
Python中字典(dict)合并的四种方法总结
Aug 10 #Python
详解Python 模拟实现生产者消费者模式的实例
Aug 10 #Python
Python 操作文件的基本方法总结
Aug 10 #Python
Python 模拟登陆的两种实现方法
Aug 10 #Python
Python 网页解析HTMLParse的实例详解
Aug 10 #Python
You might like
php如何连接sql server
2015/10/16 PHP
PHP编程获取音频文件时长的方法【基于getid3类】
2017/04/20 PHP
php和nginx交互实例讲解
2019/09/24 PHP
js和html5实现手机端刮刮卡抽奖效果完美兼容android/IOS
2013/11/18 Javascript
js中indexof的用法详细解析
2013/12/24 Javascript
jquery JSON的解析方式示例介绍
2014/07/27 Javascript
原生javascript实现隔行换色
2015/01/04 Javascript
最精简的JavaScript实现鼠标拖动效果的方法
2015/05/11 Javascript
JavaScript中实现Map的示例代码
2015/09/09 Javascript
关于javascript中dataset的问题小结
2015/11/16 Javascript
JavaScript登录验证基础教程
2017/11/01 Javascript
vue2.0 实现页面导航提示引导的方法
2018/03/13 Javascript
Vue项目中添加锁屏功能实现思路
2018/06/29 Javascript
解决antd日期选择组件,添加value就无法点击下一年和下一月问题
2020/10/29 Javascript
使用Python编写一个在Linux下实现截图分享的脚本的教程
2015/04/24 Python
K-近邻算法的python实现代码分享
2017/12/09 Python
使用Python的package机制如何简化utils包设计详解
2017/12/11 Python
Python使用指定端口进行http请求的例子
2019/07/25 Python
Flask框架钩子函数功能与用法分析
2019/08/02 Python
Python 共享变量加锁、释放详解
2019/08/28 Python
Python要求O(n)复杂度求无序列表中第K的大元素实例
2020/04/02 Python
jupyter notebook插入本地图片的实现
2020/04/13 Python
python如何利用Mitmproxy抓包
2020/10/10 Python
Python3中小括号()、中括号[]、花括号{}的区别详解
2020/11/15 Python
全球最大的跑步用品商店:Road Runner Sports
2016/09/11 全球购物
Artist Guitars新西兰:乐器在线商店
2017/09/17 全球购物
蔻驰法国官网:COACH法国
2018/11/14 全球购物
澳大利亚婴儿、幼儿和儿童在线设计师商店:Smooch Baby
2019/02/16 全球购物
土木工程毕业生推荐信
2013/10/28 职场文书
房屋租赁协议书(标准版)
2014/10/02 职场文书
优秀小学生事迹材料
2014/12/26 职场文书
专家推荐信怎么写
2015/03/25 职场文书
少先队入队仪式主持词
2015/07/04 职场文书
关于践行三严三实的心得体会
2016/01/05 职场文书
SQL SERVER触发器详解
2022/02/24 SQL Server
mysql的单列多值存储实例详解
2022/04/05 MySQL