利用telethon进行TG签到等操作的青龙脚本

  • 无意中看到某个TG签到的话题,然后看到下面有朋友在寻找青龙面板可以用的脚本。

  • 想到前阵子使用telethon写了一个定时清除TG聊天记录的py脚本,利用telethon发送文本应该不也在话下,遂写了如下Py本子。

  • telethon在青龙面板的痛点在于青龙面板无交互,无法输入获取账号信息,但我们可以曲线救国。

方法:

  1. SSH 进入青龙容器
  • 使用命令:docker exec -it xxxxx bash 进入青龙容器。
  • 然后 cd 到脚本目录,运行 python XXXX.py,此时可以交互输入账号信息与验证码。
  1. 预先生成会话文件
  • 在有交互的 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 的方法也可以通过搜索了解。

效果展示

32 个赞

感谢佬友分享!

1 个赞

感谢大佬分享这个代码

感谢分享大佬厉害啊

好的,这个可以有,有空试试去,感谢佬分享

1 个赞

感谢大佬分享。

2 个赞

感谢分享大佬厉害啊

感谢大佬的分享

大佬 能分享个详细的教程吧 比如使用1penl一键搭建的青龙如何使用

其實可以讓telethon輸出一個硬登入連接(非常危險就是任何人拿那串就能操作)這樣就不用特別登進去操作了

正好需要,这几天也在自己写,感谢大佬喂饭

青龙上完成TG签到一直是我的一个痛点,是这个需求太小众了么?感觉现在都没有 非常成熟的便捷可视化管理方案

现在tg签到可以签什么?

一些机场,一些社工机器人吧

那是的,挺棒的

不错,感谢

大佬牛逼。
我让AI稍微修改了下,增加了通知。

from telethon import TelegramClient



# 引用青龙的通知
try:
    from notify import send
except ImportError:
    print("通知服务加载失败,请检查notify.py是否存在")
    exit(1)



# 替换为你的 API ID 和 API Hash
api_id = 'xxxx'
api_hash = 'xxx'

# 替换为自己的chat_id 和消息文本
chat_messages = [
   (替换为自己的chat_id, "替换为消息文本"),   # 可以继续增加多行
   (替换为自己的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}")
    send("Telegram签到成功",f"Sent '{text}' to chat: {chat_name}")  # 发送通知消息,内容自己改

# 运行主程序
with client:
    client.loop.run_until_complete(main())