Files
docs/开发文档/python/python库用途.md
2026-01-14 11:27:47 +08:00

36 lines
535 B
Markdown
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

## 自动化相关
### 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
```
网络请求库
```