我的问题如下:我有一个 Ips 列表,我在 nparray (ip_array) 中排序,然后我想对所有这些请求进行多个请求并将输出保存在单个 json 中。(APIKEY其实就是代码中的api key xD)url_auth = 'https://api.ipgeolocation.io/ipgeo?apiKey=APIKEYAPIKEYAPIKEY='for i in np.arange(1,4): r[i] = requests.request(method='get',url=url_auth,params={'ips':ip_array[i]}) #i tested the single request and it works in this way.但是后来,我得到了TypeError: 'Response' object does not support item assignment然后,我尝试用 r = requests.request(method='get',url=url_auth,params={'ips':ip_array[i]})但是,当我这样做时r.json()我只收到最后一个请求(这是显而易见的)。
添加回答
举报
0/150
提交
取消