我想從一個網址的圖片的href不使用硒得到動態內容蟒蛇
def():
try:
page = urllib2.urlopen('')
except httplib.IncompleteRead, e:
page = e.partial
response = BeautifulSoup(page)
print response
var = response.find("div", {"id":"il_m"}).find('p')
圖片,但我有沒有爲result.What我應該做的,以GE在href?
謝謝你的回答,但我得到這個錯誤'NoneType'對象沒有屬性'__getitem__' –
你是如何得到源和什麼版本的bs4? –
版本4.4.0和你的意思是我得到的源代碼, –