初始文档

This commit is contained in:
2026-01-14 11:27:47 +08:00
parent 84a58e8daf
commit 564285cf07
62 changed files with 8729 additions and 0 deletions

View File

@@ -0,0 +1,36 @@
## 自动化相关
### PySimpleGUI
```
用途:提供一些弹窗等界面
安装pip install pysimplegui
导入import PySimpleGUI
```
## 日志
### loguru
```
安装pip install loguru
导入from loguru import logger
```
## 数据处理
### pyechart
```
可以做echart图片.得到一个html图表文件
```
### pybi-next
```
安装pip install pybi-next
导入import pybi
```
## 工具
### codon
```
将python代码转为本地机器码,提高运行速度
**https://github.com/exaloop/codon**
```
### httpx
```
网络请求库
```