python通用工具

python-common-tools的Python项目详细描述


一些常用的python工具箱

安装

pip3 install python_common_tools 

使用

importtime# 使得函数使用缓存frompython_common_tools.cacheimportcache_function,cache_daily_function@cache_function('.')deff(self,a,b,c):time.sleep(3)returna+b+c@cache_daily_function('.')deff2(self,a,b,c):time.sleep(3)returna+b+c# 快速设置日志frompython_common_tools.logimportsetup_loggerlogger=setup_logger("test.log")# 搞定异常处理的网络请求frompython_common_tools.networkimportsecure_requests,secure_requests_jsonresp=secure_requests("https://www.gethtml.com/test",retry_times=3,log_err=True)j=secure_requests_json("https://www.getjson.com/test",timeout=10)# linux系统相关的获取命令执行结果  获取最新版本号 打开远程服务器上的文件frompython_common_tools.linuximportget_bash_output,get_latest_commit_id,open_remote_filedirfiles=get_bash_output(["ls","-l"])commit_id=get_latest_commit_id()

欢迎加入QQ群-->: 979659372 Python中文网_新手群

推荐PyPI第三方库


热门话题
JavaSpring重定向请求处理程序   SwingJava:拆分字符串并将其放入文本区域的   Java:标记“”上出现语法错误,此标记后面应为表达式   web服务Java RestService从日志文件写入和读取数据   java如何将ArrayList<String>转换为char数组,然后向后打印每个单词?   java SimpleDataFormat解析返回年终日期   加密Java aes解密bytebuffer,包括填充为空字节   java有没有办法从特定的if语句调用变量?   java从更新返回到渲染   spring GRPC Java登录测试   java为什么下面的代码不工作(StringBuffer.toString!=null)   java是一种可行的模式吗?   使用Spring集成测试的JavaOSGi片段   java jCommander为未知和未使用的值引发异常?   在imageView的editText中输入的java图像URL