Hello!我有這個腳本:從python網頁獲取鏈接
URL = "http://www.hitmeister.de/"
page = urllib2.urlopen(URL).read()
soup = BeautifulSoup(page)
links = soup.findAll('a')
for link in links:
print link['href']
這應該得到的網頁鏈接,但它不,可能是什麼問題?我也嘗試使用User-Agent標題,但沒有結果,但此腳本適用於其他網頁。
可能要看一看在這個頁面的腳本:http://stackoverflow.com/questions/1080411/retrieve-links-from-web-page-using-python-and -beautiful-soup – 2012-05-07 11:57:52
嘗試過你的腳本,它在添加相關導入('from bs4 import BeautifulSoup'和'import urllib2')後適用於我。你正在使用哪個版本的BS? –
我使用BeautifulSoup 3.2.0-2build1,試過安裝bs4並沒有工作 – user873286