From fd2cec914b90ac06ca8ccf6fc6243814f0be8c95 Mon Sep 17 00:00:00 2001 From: igna Date: Sun, 29 Aug 2021 14:27:06 +0000 Subject: [PATCH] uhhh, idk --- main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.py b/main.py index b3c4c6e..51c2a1d 100644 --- a/main.py +++ b/main.py @@ -3,7 +3,7 @@ import requests, threading url = input('raw link: ') amount = input('enter the amount of threads (go for 300): ') -def trol(): +def thread(): sent = 0 while True: requests.get(url) @@ -11,5 +11,5 @@ def trol(): print(f'Views sent: %s' % sent) for _ in range(int(amount)): - t = threading.Thread(target=trol) + t = threading.Thread(target=thread) t.start()