# base-tools
**Repository Path**: AuspiciousChan/base-tools
## Basic Information
- **Project Name**: base-tools
- **Description**: No description available
- **Primary Language**: Python
- **License**: MIT
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2024-03-03
- **Last Updated**: 2026-01-05
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
# base-tools
#### 介绍
本库实现了一些基础的工具类,帮助开发者可以简单的通过python实现一些常用的功能,比如:文件操作、字符串操作、时间操作、网络操作等。
#### 软件架构
cjlutils
├── __init__.py
├── AdbUtil.py
├── Base64Util.py
├── DictUtil.py
├── EncodeUtil.py
├── FileUtil.py
├── HttpUtil.py
├── ListUtil.py
├── PyplotUtil.py
├── ScpUtil.py
├── SshUtil.py
├── StringUtil.py
├── TimeUtil.py
#### 安装教程
首先需要安装python环境,要求不低于`3.10`,然后通过`pip`安装依赖库
```shell
pip install base-tools
```
如果需要安装指定版本,如`0.0.1`,可以通过以下命令安装
```shell
pip install base-tools==0.0.1
```
#### 使用说明
1. 通过`import`导入需要的工具类。以文件操作工具类`FileUtil`为例
```python
from cjlutils import FileUtil
```
2. 使用`FileUtil`中的方法
```python
FileUtil.get_file_list('path')
```
#### 参与贡献
1. Fork 本仓库
2. 新建 Feat_xxx 分支
3. 提交代码
4. 新建 Pull Request