This commit is contained in:
2025-11-28 18:27:15 +09:00
parent 2481d44eb8
commit c0d3312bca
52 changed files with 13363 additions and 1444 deletions

10
check_telegram.py Normal file
View File

@@ -0,0 +1,10 @@
import sys
try:
import telegram
print(f"Telegram library found. Version: {telegram.__version__}")
from telegram import Bot
print("Bot class imported successfully.")
except ImportError as e:
print(f"ImportError: {e}")
except Exception as e:
print(f"Error during import: {e}")