I can't read html code of this website by using urllib
def tests(url):
response = urllib.urlopen(url)
soup = BeautifulSoup(response.read())
universities=soup.findAll('a',{'class':'pin-link'})
print universities
if __name__ == '__main__':
tests("https://pinshape.com/shop?page=3&is-free=true&type=-streamable")