- python toolbox
子项目 | 说明 | 备注 |
---|---|---|
✅️ csv-parser | excel表格处理工具 | ⭐⭐⭐ |
✅️ discord-bot | discord bot 工具 | ⭐⭐⭐⭐⭐ |
✅️ rsshub | rss 订阅源格式化工具 | ⭐⭐ |
✅️ chain | eth 脚本工具 | ⭐⭐ |
✅️ wordlist | 英语分级词汇清洗工具 | ⭐⭐⭐ |
xxx | xxxxxxxxxxxxxxxxxx | ⭐ |
xxx | xxxxxxxxxxxxxxxxxx | ⭐ |
xxx | xxxxxxxxxxxxxxxxxx | ⭐ |
xxx | xxxxxxxxxxxxxxxxxx | ⭐ |
小工具启动脚本入口:
小工具列表:
- ✅ chain: 链上交易数据查询
# run: task chain:run
- ✅ rsshub: rsshub 配置格式化工具
# run: task rss:run
- ✅ discord-bot discord bot, 群消息管理助手, 已支持非常丰富的功能:
- ✅ group 群元信息查询
- ✅ channel 元信息查询
- ✅ thread 元信息查询
- ✅ channel 消息历史迁移(到 thread or 另外一个 channel).
# run: task discord:run
- bot 帮助菜单, 支持的功能列表:
requirements:
- ✅
Python 3.9.9
: 理论上 python3.5+应该都 ok, 自行判断
╰─>$ python --version Python 3.10.9
setup:
- ✅ pyenv:
# with go-task: task setup # # or do: # # install python3.9: pyenv install 3.9.9 # create for this project: pyenv virtualenv 3.9.9 py39-toolbox # check: pyenv versions # use local: pyenv local py39-toolbox # check: python3
- ✅ install python requirements:
task install
init
.env
from .env.local
- ✅ Taskfile.yml will auto load
.env
file
# init .env file: cp .env.local .env # edit .env file: .env
then run:
# discord bot: task discord:run # rsshub tools: task rss:run # blockchain tools: task chain:run