Questions tagged [grequests]

GRequests allows you to use Requests with Gevent to make asyncronous HTTP Requests easily.

GRequests allows you to use requests with gevent to make asynchronous HTTP Requests easily.

139 questions
-1
votes
1 answer

How to send multiple HTTP requests using Python

I'm trying to create a script that checks all possible top level domain combinations based on a given root domain name. What I've done is generate a list of all possible TLD combinations and what I want to do is make multiple HTTP requests, analyze…
-1
votes
1 answer

How to send 10000 POST requests fast in python?

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…
test test
  • 77
  • 1
  • 11
-1
votes
1 answer

Scrapy throttling and request scheduling only microservices

I'm currently using python requests to download around 20,000 pages of json. I'm running into some bottlenecking due to rate limiting by the server I'm scraping, and maybe a lack of asynchronous calls/scheduling. I thought scrapy would be a good…
sajattack
  • 803
  • 1
  • 9
  • 23
-2
votes
1 answer

Difference between ZeroMQ asynchronous http requests and Messages?

How is using asynchronous HTTP Requests different from using Messages when it comes to sending data in ZeroMQ?
1 2 3
9
10