print(urllib.request.urlopen("http://ex.ua").read().decode('utf-8'))
import requests
requests.get('http://ex.ua').text
sudo pip install Cython==0.17.1
In [6]: c = json.loads('{ "name": "Вася", "age": 35, "isAdmin": false, "friends": [0,1,2,3] }')
In [7]: type(c['friends'])
Out[7]: builtins.list
In [8]: type(c['friends'])