Metadata-Version: 2.1
Name: jyhelper
Version: 1.9.6
Summary: 各种实用、常用的小函数、类
Home-page: https://pypi.org/project/jyhelper/
Author: JY
Author-email: your-email@example.com
License: UNKNOWN
Platform: UNKNOWN
Requires-Python: >=3.0
Description-Content-Type: text/markdown

# 一些常用的类、方法

#### 介绍
一些常用的类、方法，不定时更新

#### 软件架构
```commandline
 db 数据库操作模块
 timeHelper 时间相关方法
 file 文件操作相关方法
 common 一些常用的方法
 feishuRobot 飞书机器人发送消息
```


#### 安装教程

```commandline
安装
pip install jyhelper
更新
pip install jyhelper -U
pip install  --upgrade jyhelper -i https://pypi.org/simple
```

#### 使用说明

```python3
from jyhelper import db
from jyhelper import timeHelper
from jyhelper import common
from jyhelper import file
from jyhelper import feishuRobot

dbIns = db(host='',user='root',password='',port=3306,db='')
for row in dbIns.table('table').select():
    print(row)

print(common.explodeList([1,2,3],2))

print(timeHelper.getDate())

file.readTxtFile(filePath='')
```

