(python2.7.13)
response = requests.get(hoge)
とかして response
に status_code
とか無い場合に response.status_code
とかするとエラーになるので確認
>>> hasattr(response, 'status_code') True
牌語備忘録 -pygo
(python2.7.13)
response = requests.get(hoge)
とかして response
に status_code
とか無い場合に response.status_code
とかするとエラーになるので確認
>>> hasattr(response, 'status_code') True