-
无意中看到某个TG签到的话题,然后看到下面有朋友在寻找青龙面板可以用的脚本。
-
想到前阵子使用telethon写了一个定时清除TG聊天记录的py脚本,利用telethon发送文本应该不也在话下,遂写了如下Py本子。
-
telethon在青龙面板的痛点在于青龙面板无交互,无法输入获取账号信息,但我们可以曲线救国。
方法:
- SSH 进入青龙容器
- 使用命令:
docker exec -it xxxxx bash
进入青龙容器。 - 然后
cd
到脚本目录,运行python XXXX.py
,此时可以交互输入账号信息与验证码。
- 预先生成会话文件
- 在有交互的 Python 环境中先运行一次脚本,这样同目录下会生成
xxx.session
文件。 - 将
xxx.session
文件移动到青龙面板脚本同目录下,无需输入,直接运行脚本。
from telethon import TelegramClient
# 替换为你的 API ID 和 API Hash
api_id = 'xxxxxxxx'
api_hash = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'
# 定义 chat_id 和消息文本
chat_messages = [
(-10011234567890, "/签到"), # 修改为你需要的聊天 ID 和消息
# (-1001234567890, "Hello World!"), # 可以继续添加更多的 chat_id 和消息
]
# 创建一个 TelegramClient 实例
client = TelegramClient('session', api_id, api_hash)
async def get_chat_ids():
await client.start()
chat_info = {}
async for dialog in client.iter_dialogs():
chat_info[dialog.id] = dialog.name
print(f'Chat ID: {dialog.id}, Name: {dialog.name}')
print("-" * 50+"\n")
return chat_info
async def main():
# 登录
await client.start()
# 获取聊天 ID 和名称
chat_info = await get_chat_ids()
# 遍历每个 chat_messages 并发送对应的文本到相应的 chat_id
for chat_id, message_text in chat_messages:
chat_name = chat_info.get(chat_id, "未知聊天") # 获取聊天名称,如果不存在则为"未知聊天"
await send_text(chat_name, chat_id, message_text)
async def send_text(chat_name, chat_id, text):
# 向指定 chat_id 发送文本消息
await client.send_message(chat_id, text)
print(f"Sent '{text}' to chat: {chat_name}")
# 运行主程序
with client:
client.loop.run_until_complete(main())
注意
- 输入账号的格式为:
+86xxxxxxxxxxxx
。 - Telegram 的 API ID 和 API Hash 获取方式可以通过搜索引擎找到。
- 如何在青龙面板安装依赖 Telethon 的方法也可以通过搜索了解。
效果展示