摘要: # -*- coding: utf-8 -*- import traceback from os.path import basename import smtplib from email.header import Header from email.mime.application impor 阅读全文
posted @ 2021-04-07 20:15 stay丶gold 阅读(91) 评论(0) 推荐(0)
摘要: def clock(func): """ 计时装饰器 :param func: :return: """ @functools.wraps(func) def deco(*args, **kwargs): start_time = time.time() result = func(*args, * 阅读全文
posted @ 2021-04-07 20:10 stay丶gold 阅读(130) 评论(0) 推荐(0)