批量下載RFC文檔(python實現)

來源:互聯網
上載者:User

RFC文檔有很多,有時候在沒有連網的情況下也想翻閱,只能下載一份留存本地了。
看了看地址清單,大概是這個範圍:
http://www.networksorcery.com/enp/rfc/rfc1000.txt
...
http://www.networksorcery.com/enp/rfc/rfc6409.txt

哈哈,很適合批量下載,第一個想到的就是迅雷……
可用的時候發現它只支援三位元的擴充(用的是迅雷7),我想要下的剛好是四位元……
鬱悶之下萌生自己做一個的想法!
這東西很適合用python做,原理很簡單,代碼也很少,先讀為快。
代碼如下:

 1 #! /usr/bin/python
2 '''
3 File : getRFC.py
4 Author : Mike
5 E-Mail : Mike_Zhang@live.com
6 '''
7 import urllib,os,shutil,time
8
9 def downloadHtmlPage(url,tmpf = ''):
10 i = url.rfind('/')
11 fileName = url[i+1:]
12 if tmpf : fileName = tmpf
13 print url,"->",fileName
14 urllib.urlretrieve(url,fileName)
15 print 'Downloaded ',fileName
16 time.sleep(0.2)
17 return fileName
18
19 # http://www.networksorcery.com/enp/rfc/rfc1000.txt
20 # http://www.networksorcery.com/enp/rfc/rfc6409.txt
21 if __name__ == '__main__':
22 addr = 'http://www.networksorcery.com/enp/rfc'
23 dirPath = "RFC"
24 #startIndex = 1000
25 startIndex = int(raw_input('start : '))
26 #endIndex = 6409
27 endIndex = int(raw_input('end : '))
28 if startIndex > endIndex :
29 print 'Input error!'
30 if False == os.path.exists(dirPath):
31 os.makedirs(dirPath)
32 fileDownloadList = []
33 logFile = open("log.txt","w")
34 for i in range(startIndex,endIndex+1):
35 try:
36 t_url = '%s/rfc%d.txt' % (addr,i)
37 fileName = downloadHtmlPage(t_url)
38 oldName = './'+fileName
39 newName = './'+dirPath+'/'+fileName
40 if True == os.path.exists(oldName):
41 shutil.move(oldName,newName)
42 print 'Moved ',oldName,' to ',newName
43 except:
44 msgLog = 'get %s failed!' % (i)
45 print msgLog
46 logFile.write(msgLog+'\n')
47 continue
48 logFile.close()

除了RFC文檔,這個程式稍加修改也可以做其它事情:比如批量下載MP3、電子書等等。

好,就這些了,希望對你有協助。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.