Python: How can i send multiple HTTP requests and receive the response?

倖福魔咒の 提交于 2019-12-06 06:09:45

问题


How can I send like 1000 requests the fastest way? I know that you can send multiple request with grequests:

urls = [
    'sample.url/1',
    'sample.url/2',
    ...
]
request = (grequests.get(u) for u in urls)
print grequests.map(request)

But the return is not the content. What I need is to get the json data, so for example something like this:

request = (grequests.get(u) for u in urls)
content = grequests.json(request)

回答1:


The items returned are not the content, but they do include the content. You can fetch all of the content like so:

result = grequests.map(request)
content = '\n'.join(r.content for r in result) # raw content
text = '\n'.join(r.text for r in result)       # decoded content

You can parse the json like this:

result = grequests.map(request)
json = [r.json() for r in result]

Sample program:

import grequests
import pprint

urls = [
    'http://httpbin.org/user-agent',
    'http://httpbin.org/headers',
    'http://httpbin.org/ip',
]

requests = (grequests.get(u) for u in urls)
responses = grequests.map(requests)

json = [response.json() for response in responses]
pprint.pprint(json)

text = '\n'.join(response.text for response in responses)
print(text)


来源:https://stackoverflow.com/questions/32829798/python-how-can-i-send-multiple-http-requests-and-receive-the-response

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!