from json import JSONDecoder
from HTMLParser import HTMLParser
from urllib2 import urlopen
u = urlopen("https://api.vk.com/method/wall.get?owner_id=-10639516&offset=3&count=1&filter=all&extended=1")
data = u.read()
#print data
class JSONDecoder:
d.decode(data)
s = data
import json
from urllib2 import urlopen
u = urlopen("https://api.vk.com/method/wall.get?owner_id=-10639516&offset=3&count=1&filter=all&extended=1")
data = u.read()
data = json.loads(data)
print data