I work with grequests in 3 pythons. Causes a TypeError error TypeError: 'AsyncRequest' object is not iterable . Code:
import grequests u = 'http://shost-craft.su' params = {'a':'b', 'c':'d'} rs = grequests.post(u, data=params) responses_list = grequests.map(rs) print(responses_list[0].text) print(rs) I do not know why it is, it seems everything is correct. You can post method, get the same thing.