-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrequirements.txt
More file actions
31 lines (26 loc) · 982 Bytes
/
Copy pathrequirements.txt
File metadata and controls
31 lines (26 loc) · 982 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
if tool_api and hasattr(tool_api, 'set_output'):
tool_api.set_output(output)
# البقاء قيد التشغيل
print("\n🔄 SYSTEM IDLE - PRESS CTRL+C TO TERMINATE")
try:
while True:
time.sleep(60) # حفظ الطاقة
except KeyboardInterrupt:
print("\n\n👋 SYSTEM TERMINATED")
# ============================================
# نقطة الدخول - لا شيء سوى التشغيل
# ============================================
def run(argument="", tool_api_ref=None):
"""
نقطة الدخول الرئيسية - للاستدعاء من Chaquopy
"""
auto_launch(tool_api_ref)
return "اكتمل التنفيذ"
if name == "main":
print("=" * 60)
print("🤖 TELEGRAM IMAGE DESTROYER v3.1")
print("⚡ AUTO MODE: ZERO INPUT REQUIRED")
print("⚡ SAFE IMAGE HANDLING: ENABLED")
print("=" * 60)
# تشغيل تلقائي بدون أي شروط
auto_launch()