Python Json linkten Url’den Data Çekmek

import urllib.request, json 
with urllib.request.urlopen("http://ip.jsontest.com/") as url:
    data = json.load(url)
    print(data)
import urllib.request, json 
with urllib.request.urlopen("http://echo.jsontest.com/key/value/one/two") as url:
    data = json.load(url)
    print(data)
    print(data["one"])