Quick question with grequests since the documentation for it is rather sparse. What is the best way to return xml reponse from the request sent? I'm having trouble finding a way to get a response back other than the status codes. Could someone point me in the right direction? Can grequests even return xml responses? Should I just use requests and do the threading myself? Heres the documentation code
import grequests
urls = [
'http://www.heroku.com',
'http://python-tablib.org',
'http://httpbin.org',
'http://python-requests.org',
'http://kennethreitz.com'
]
rs = (grequests.get(u) for u in urls)
grequests.map(rs)
So my question is how do you go from mapping the request to actually getting xml responses? Thanks in advance.