mrequests

using multiprocessing and requests to send requests using threads to fasten sending large number of requests


License
MIT
Install
pip install mrequests==0.1.2

Documentation

mrequests

Using multiprocessing and requests to send requests using threads to fasten sending large number of requests.

Usage

from mrequests import PoolRequests
m = PoolRequests(method="GET")
m.headers_update({"Cache-Control": "no-cache"})
m.set_basic_auth("username","password")
urls = ["https://www.google.com","https://www.yahoo.com"]
resp = m.send(urls)
for r in resp:
  print(r.status_code)

Installation

pip install mrequests

Future Work

  • Parameterized requests