Merge pull request #1 from 1x6/master

less goo
This commit is contained in:
igna 2021-08-29 10:14:42 -04:00 committed by GitHub
commit 7301e2e236
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 12 additions and 6 deletions

12
main.py
View File

@ -1,9 +1,15 @@
import requests
import requests, threading
url = input('raw link: ')
sent = 0
amount = input('enter the amount of threads (go for 300): ')
while True:
def trol():
sent = 0
while True:
requests.get(url)
sent += 1
print(f'Views sent: %s' % sent)
for _ in range(int(amount)):
t = threading.Thread(target=trol)
t.start()