I am trying to extract links from specific web page like: http://www.directmirror.com/files/0GR7ZPCY
but it doesn't work as the example in bs4's document. Can anyone point out the reason for me? My code is as following:
import urllib2
from bs4 import BeautifulSoup
response = urllib2.urlopen('http://www.directmirror.com/files/0GR7ZPCY')
html = response.read()
sp = BeautifulSoup(html)
ll = sp.find_all('a')
The 'll' variable I got is empty.