import random
from colorama import Fore
file = open("valid.txt", "r+")
codes = file.readlines()
def send():
headers = {
"Connection": "Keep-Alive",
"Keep-Alive": "timeout=100, max=1000"
}
params = {
"cv": "4.6.19178.0323",
"mn": "304172829",
"pwd": "492525",
"source": "client",
"uname": "gregory"
}
url = "https://www3.zoom.us/conf/j"
try:
r = requests.post(url, params=params, headers=headers)
print(Fore.GREEN + "Spammed!")
except:
print(Fore.RED + "Nope")
send()
Я пытаюсь сохранить запрос активным, однако каждый раз, когда я пытаюсь сделать это, он выполняется, не оставаясь в живых. Как бы я go об этом?