Simpan respons permintaan json untuk mengajukan python

import requests
# there is inbuilt json() constructor for requests.get() method
json_data = requests.get("https://api.blinkist.com/v4/books/5420831a63656400089f0000").json()
print(json_data)

# To actually write the data to the file, we just call the dump() function from json library
import json
with open('personal.json', 'w') as json_file:
    json.dump(json_data, json_file)
Doubtful Dotterel