evaluation_response = requests.get(url, params=params, headers=headers)
if evaluation_response.status_code == 200:
response = evaluation_response.text
断点调试发现,evaluation_response对象下面的text属性为{str}'',空字符串了,导致后面的代码不能执行了?是不是多运行了几次后被服务器屏蔽了IP?
evaluation_response = requests.get(url, params=params, headers=headers)
if evaluation_response.status_code == 200:
response = evaluation_response.text
断点调试发现,evaluation_response对象下面的text属性为{str}'',空字符串了,导致后面的代码不能执行了?是不是多运行了几次后被服务器屏蔽了IP?