python获取response的方法

 

很多人会问什么把response参数化,其实就是获取到response的值后,直接调用即可

import json
 
result = response.read()
result.decode('utf-8')
jsonData = json.loads(result)

你可能感兴趣的:(自动化,python)