Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

how to read a json resposnse from a link in python

import urllib, json

url = "put url here"
response = urllib.request.urlopen(url)
data = json.loads(response.read())
print (data)
 
PREVIOUS NEXT
Tagged: #read #json #resposnse #link #python
ADD COMMENT
Topic
Name
5+4 =