我似乎无法弄清楚我们在哪里可以调整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)