I saw this post about sending asynchronous requests using grequests.
import grequests urls = [ 'http://www.heroku.com', 'http://tablib.org', 'http://httpbin.org', 'http://python-requests.org', 'http://kennethreitz.com' ] rs = (grequests.get(u) for u in urls) grequests.map(rs)
Say, for just one URL, I wanted to send a custom header:
header = {'authorization' : '...'}
How can I send a custom header for a single url using grequests?
source share