This commit is contained in:
igna 2021-08-31 05:50:30 -04:00 committed by GitHub
parent fd2cec914b
commit 045930cc60
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -2,9 +2,10 @@ import requests, threading
url = input('raw link: ')
amount = input('enter the amount of threads (go for 300): ')
sent = 0
def thread():
sent = 0
global sent
while True:
requests.get(url)
sent += 1