# tools-python3-wlf
**Repository Path**: waisaa/tools-python3-wlf
## Basic Information
- **Project Name**: tools-python3-wlf
- **Description**: pywlf provides a series of imperative functions that help deal with mysql, redis, influxdb and so on.
- **Primary Language**: Unknown
- **License**: MIT
- **Default Branch**: main
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2024-07-04
- **Last Updated**: 2024-11-26
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
# pywlf
*Common utils for python3.*
[](https://pypi.org/project/wlfutil/) [](https://blog.csdn.net/qq_42761569?type=blog) [](https://github.com/waisaa/tools-python3-wlf/tree/main/LICENSE)
pywlf provides a series of imperative functions that help deal with mysql, redis, influxdb and so on.
## Utils
| tool | desc |
|:---------:|:---------:|
| log | 日志操作工具类 |
| file | 文件目录操作方法集合|
| core | 通用操作方法集合|
| date | 日期操作方法集合|
| influxdb | Influxdb操作工具类|
| mysql | Mysql操作工具类|
| ssh | Shell操作工具类|
| minio | Minio操作工具类|
| redis | Redis操作工具类|
| kafka | Kafka操作工具类|
| http | Http操作工具类|
## Installation
```python3
pip3 install pywlf
```
## Quickuse
```python3
# 引入日志工具类
from pywlf.wlflog import Log
log = Log('test.log')
log.info('this is a test!')
```