feat: Telegram user monitor bot

This commit is contained in:
mango
2026-02-22 20:59:51 +08:00
commit 96d601196e
10 changed files with 746 additions and 0 deletions

7
gen_session.py Normal file
View File

@@ -0,0 +1,7 @@
from pyrogram import Client
api_id = int(input("API_ID: "))
api_hash = input("API_HASH: ")
with Client("user", api_id=api_id, api_hash=api_hash) as app:
print("Session 生成成功!")