工具
l402072123
这个作者很懒,什么都没留下…
展开
-
python--工具--ini处理
python–工具–ini处理 # -*- coding: utf-8 -*- """ author:drliu date:2022/3/18 desc: 该文件用于 sample: 获取INI配置文件内容 _config = parse_ini(_path) 使用现有的字典去修改INI modify_ini(_file_path, _config_dict) """ # --------------------------------------------------------------------原创 2022-03-23 11:28:43 · 1216 阅读 · 0 评论 -
工具--装饰器
装饰器 1.函数名 2.函数执行时间 # -*- coding:UTF-8 -*- # auther:drliu # date:2022/2/26 # aim: 装饰器函数名,函数执行时间 import time from print_log import print_log def function_info(original_fuction): """ 1.记录函数名 2.函数执行时间 :return: """ def decorator_fucti原创 2022-02-28 14:45:11 · 79 阅读 · 0 评论 -
工具--入参处理
入参处理 接受入参,并将入参处理为字典形式 # -*- coding: utf-8 -*- """ author:drliu date:2022/2/16 desc: 获取代码的入参,并处理成字典类型返回 """ import os import sys import argparse import json from print_log import print_log __all__ = ['get_args'] def args_set(): """ :return: 返回所原创 2022-02-28 14:26:29 · 146 阅读 · 0 评论 -
工具--日志功能
日志功能 DEBUG模式 日志分割 下面展示一些 内联代码片。 # -*- coding: utf-8 -*- """ author:drliu date:2022/2/16 desc: sample: """ import os import time import traceback import logging __all__ = ['print_log'] cur_file = os.path.abspath(__file__) cur_path = os.path.dirname(cu原创 2022-02-25 11:45:36 · 96 阅读 · 0 评论