python 小工具合集

测代码执行时间

import time
from functools import wraps
def fn_timer(function):
     @wraps(function)
     def function_timer(*args, **kwargs):
         t0 = time.time()
         result = function(*args, **kwargs)
         t1 = time.time()
         print("Total time running %s: %s seconds" %
             (function.__name__, str(t1-t0))
             )
         return result
     return function_timer

@fn_timer
def my_func():

解压tar包,zip包

def untar(file_name,dirs,id):
    tar = tarfile.open(file_name)
    tar.extractall(dirs)
    tar.close()

def untar(file_name, dirs, id):
    zip_ref = zipfile.ZipFile(file_name)  # 创建zip 对象
    os.mkdir(file_name.replace(".zip", ""))  # 创建同名子文件夹
    zip_ref.extractall(file_name.replace(".zip", ""))  # 解压zip文件内容到子文件夹
    zip_ref.close()

检查文件夹内文件名

def searchDirFile(rootDir, fileType, tar_flag):
    flag = 1
    for dir_or_file in os.listdir(rootDir):
        if dir_or_file == fileType:
            print('find file '+fileType)
            flag = 0
        else:
            continue
    tar_flag += flag
    return tar_flag, flag

停止线程

import inspect
import ctypes
def _async_raise(tid, exctype):
    """raises the exception, performs cleanup if needed"""
    tid = ctypes.c_long(tid)
    if not inspect.isclass(exctype):
        exctype = type(exctype)
    res = ctypes.pythonapi.PyThreadState_SetAsyncExc(tid, ctypes.py_object(exctype))
    if res == 0:
        raise ValueError("invalid thread id")
    elif res != 1:
        # """if it returns a number greater than one, you're in trouble,
        # and you should call it again with exc=NULL to revert the effect"""
        ctypes.pythonapi.PyThreadState_SetAsyncExc(tid, None)
        raise SystemError("PyThreadState_SetAsyncExc failed")
def stop_thread(thread):
    _async_raise(thread.ident, SystemExit)

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

小菜陶打怪之旅

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值