Python request.post代码将结果限制为200。如何调整代码以获取全部1000多个结果?

时间:2018-07-14 07:00:14

标签: python python-3.x python-requests

我似乎无法弄清楚我们在哪里可以调整request.post语句中的任何数据限制。但是输出中似乎有200个结果限制。编写高级request.post脚本不太舒服,可以在此问题上使用一些帮助。

import requests
r = requests.post('https://cares.myflfamilies.com/PublicSearch/Search?dcfSearchBox=Orange in Counties')
openFile = open('flData', 'wb')
for chunk in r.iter_content(100000):
    openFile.write(chunk)

0 个答案:

没有答案