Neceisto un script de python que envie 1000 peticiones http al mismo tiempo. He provado usando threads pero no parece funcionar...
Tengo esto:
Código
import requests import json from threading import Thread from random import randint def http_request(aux): print "http_req" + str(aux) i = randint(0,10000000) #Se usa en la peticion http url = 'https://...' threads = [] for x in range(0, 1000): threads.append(Thread(target = http_request(x))) threads[x].start() for x in range(0, 1000): threads[x].join()