python抓取
阿新 • • 發佈:2017-06-12
info 奧巴馬 www word ref str source div term
我要抓取奧巴馬每周的演講內容http://www.putclub.com/html/radio/VOA/presidentspeech/index.html
如果手動提取,就需要一個個點進去,再復制保存,非常麻煩。
那有沒有一步到位的方法呢,用python這種強大的語言就能快速實現。
首先我們看看這網頁的源碼
可以發現,我們要的信息就在這樣一小條url中。
更具體點說,就是我們要遍歷每個類似http://www.putclub.com/html/radio/VOA/presidentspeech/2014/0928/91326.html這樣的網址,而這網址需要從上面的網頁中提取。
好,開始寫代碼
首先打開這個目錄頁,保存在content
[python] view plain copy
- import sys,urllib
- url="http://www.putclub.com/html/radio/VOA/presidentspeech/index.html"
- wp = urllib.urlopen(url)
- print "start download..."
- content = wp.read()
下面要提取出每一篇演講的內容
具體思路是搜索“center_box”之後,每個“href=”和“target”之間的內容。為什麽是這兩個之間,請看網頁源碼。
得到的就是每一篇的url,再在前面加上www.putclub.com就是每一篇文章的網址啦
[html] view plain copy
- print content.count("center_box")
- index = content.find("center_box")
- content=content[content.find("center_box")+1:]
- content=content[content.find("href=")+7:content.find("target")-2]
- filename = content
- url ="http://www.putclub.com/"+content
- print content
- print url
- wp = urllib.urlopen(url)
- print "start download..."
- content = wp.read()
有了文章內容的url後,同樣的方法篩選內容。
[python] view plain copy
- #print content
- print content.count("<div class=\"content\"")
- #content = content[content.find("<div class=\"content\""):]
- content = content[content.find("<!--info end------->"):]
- content = content[:content.find("<div class=\"dede_pages\"")-1]
- filename = filename[filename.find("presidentspeech")+len("presidentspeech/"):]
最後再保存並打印
[python] view plain copy
- filename = filename.replace(‘/‘,"-",filename.count("/"))
- fp = open(filename,"w+")
- fp.write(content)
- fp.close()
- print content
OK,大功告成!保存成.pyw文件,以後只需雙擊就直接保存下了obama每周演講內容~
python抓取