import poplib,pdb,email,re,time from email import header POP_ADDR = r'pop.126.com' USER = '' PASS = '' CONFIG = '' def getYear(date): rslt = re.search(r'\b2\d{3}\b', date) return int(rslt.group()) def getMonth(date): monthMap = {'Jan':1,'Feb':2,'Mar':3,'Apr':...
www.dbjr.com.cn/article/459...htm 2025-5-29