レスポンス取得例

response = requests.get(url)

 

レスポンスを文字列で取得

res_str = response.text

 

レスポンスをJSONで取得

res_json = response.json()

タイプはdictになる