API в Python

import requests
import json

r = requests.get("URL")
j=r.json()
print(j)
Awesomered989