Metadata-Version: 2.1
Name: python_common_tools
Version: 1.0.3
Summary: python common tools
Home-page: https://github.com/CheungChan/python_common_tools
Author: chenzhang
Author-email: 1377699408@qq.com
License: UNKNOWN
Description: ## 一些常用的python工具箱
        
        #### 安装
        ```bash
        pip3 install python_common_tools 
        ```
        
        #### 使用
        ```python
        
        # 使得函数使用缓存
        from python_common_tools.cache import cache_function
        
        # 快速设置日志
        from python_common_tools.log import setup_logger
        
        # 搞定异常处理的网络请求
        from python_common_tools.network import secure_requests, secure_requests_json
        
        # linux系统相关的获取命令执行结果  获取最新版本号 打开远程服务器上的文件
        from python_common_tools.linux import get_bash_output, get_latest_commit_id, open_remote_file
        
        
        
        ```
Platform: UNKNOWN
Description-Content-Type: text/markdown
