完成bot基础开发
This commit is contained in:
11
checker/scripts/start_bot.sh
Executable file
11
checker/scripts/start_bot.sh
Executable file
@@ -0,0 +1,11 @@
|
||||
#!/bin/bash
|
||||
# 启动 Telegram Bot
|
||||
|
||||
# 检查是否安装了 python-telegram-bot
|
||||
if ! python -c "import telegram" &> /dev/null; then
|
||||
echo "📦 安装 Bot 依赖..."
|
||||
uv pip install "python-telegram-bot>=20.0"
|
||||
fi
|
||||
|
||||
echo "🚀 启动 Checker Bot..."
|
||||
python -m checker.bot.main
|
||||
Reference in New Issue
Block a user