-1
import requests

for i in range(100):
    data = ("test=test")
    header = {"header":"dasdasddasd"}
    x = requests.post("http://example.com", data=data, headers=header)
    print(x)

I want send 10000 requests in 10 min or more, but not more than 60 min!

I already try grequests but i can't get response content!

Azat Ibrakov
  • 9,998
  • 9
  • 38
  • 50
test test
  • 77
  • 1
  • 11

1 Answers1

1

I suppose, Google has enough means of protecting against such DDOS attacks, like you are trying to perform. And I believe you are likely to get banned on google.com for some period or at least would fall into human checking. I hope, you are not using corporate IP address :)

Usually when someone provides online services, you should get a special subscription and use subscription token to get better QOS. Noone would just serve thousands of requests from noname endpoint.

grapes
  • 8,185
  • 1
  • 19
  • 31