Since you're using requests , you should use the response's json method. import requests response = requests.get(...) data = response.json().
確定! 回上一頁