简体   繁体   中英

How to map grequests response with request?

I wrote a python code to send async requests using grequests, how to check which request's response is this ? are responses are in same order as they are sent ?

Here is my code :

import grequests
import time

start_time = time.time()

q_values = [1,2,3,4,5,6,7,8,9,10]

headers = {"User-Agent": "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:63.0) Gecko/20100101 Firefox/63.0", "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8", "Accept-Language": "en-US,en;q=0.5", "Accept-Encoding": "gzip, deflate", "Connection": "close", "Upgrade-Insecure-Requests": "1"}
rs = (grequests.get("https://www.google.com?query="+str(u) , headers=headers) for u in q_values)


rs = grequests.map(rs,size=10)

for r in rs:
 print r

I need output like this :

q_value 1 response code is <Response [200]>
q_value 2 response code is <Response [200]>
q_value 3 response code is <Response [200]>
q_value 4 response code is <Response [200]>

Ok i did it with grequests hooks, here is my answer :

import grequests
import time

start_time = time.time()

q_values = [1,2,3,4,5,6,7,8,9,10]

def do_something(response, *args, **kwargs):
    url = response.url
    print (url+ " : " +str(response))


headers = {"User-Agent": "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:63.0) Gecko/20100101 Firefox/63.0", "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8", "Accept-Language": "en-US,en;q=0.5", "Accept-Encoding": "gzip, deflate", "Connection": "close", "Upgrade-Insecure-Requests": "1"}
rs = (grequests.get("https://www.google.com?query="+str(u) , headers=headers, hooks = {'response' : do_something}) for u in q_values)


rs = grequests.map(rs,size=10)

any expert can confirm is it correct ?

In the response object, it also store the request object according the response

rs = grequests.map(rs,size=10)

for r in rs:
   print r.request

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM